Loading in the data:

# To download the data
# if you would prefer devtools installation
if (!requireNamespace('devtools', quietly = TRUE)){
  install.packages('devtools')
}
# Alternatively, using the devtools package:
devtools::install_github(repo = "saiemgilani/wehoop")
## Skipping install of 'wehoop' from a github remote, the SHA1 (7e7fd9bd) has not changed since last install.
##   Use `force = TRUE` to force installation
library(wehoop)
library(tidyverse)
## Warning: package 'tidyverse' was built under R version 4.0.2
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ──
## ✓ ggplot2 3.3.3     ✓ purrr   0.3.4
## ✓ tibble  3.1.2     ✓ dplyr   1.0.6
## ✓ tidyr   1.1.3     ✓ stringr 1.4.0
## ✓ readr   1.4.0     ✓ forcats 0.5.1
## Warning: package 'ggplot2' was built under R version 4.0.2
## Warning: package 'tibble' was built under R version 4.0.2
## Warning: package 'tidyr' was built under R version 4.0.2
## Warning: package 'readr' was built under R version 4.0.2
## Warning: package 'purrr' was built under R version 4.0.2
## Warning: package 'dplyr' was built under R version 4.0.2
## Warning: package 'forcats' was built under R version 4.0.2
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## x dplyr::filter() masks stats::filter()
## x dplyr::lag()    masks stats::lag()
wnba_pbp_data <- load_wnba_pbp(2021)

wnba_pbp_data
##      shooting_play sequence_number period_display_value period_number
## 1            FALSE               3          1st Quarter             1
## 2             TRUE               6          1st Quarter             1
## 3            FALSE               7          1st Quarter             1
## 4             TRUE               9          1st Quarter             1
## 5            FALSE              10          1st Quarter             1
## 6            FALSE              11          1st Quarter             1
## 7             TRUE              13          1st Quarter             1
## 8             TRUE              15          1st Quarter             1
## 9            FALSE              16          1st Quarter             1
## 10            TRUE              17          1st Quarter             1
## 11           FALSE              18          1st Quarter             1
## 12            TRUE              20          1st Quarter             1
## 13            TRUE              21          1st Quarter             1
## 14           FALSE              22          1st Quarter             1
## 15           FALSE              23          1st Quarter             1
## 16            TRUE              25          1st Quarter             1
## 17            TRUE              27          1st Quarter             1
## 18            TRUE              29          1st Quarter             1
## 19           FALSE              30          1st Quarter             1
## 20            TRUE              32          1st Quarter             1
## 21            TRUE              33          1st Quarter             1
## 22            TRUE              34          1st Quarter             1
## 23           FALSE              35          1st Quarter             1
## 24            TRUE              36          1st Quarter             1
## 25            TRUE              37          1st Quarter             1
## 26           FALSE              38          1st Quarter             1
## 27            TRUE              39          1st Quarter             1
## 28           FALSE              40          1st Quarter             1
## 29            TRUE              42          1st Quarter             1
## 30            TRUE              43          1st Quarter             1
## 31           FALSE              44          1st Quarter             1
## 32            TRUE              45          1st Quarter             1
## 33            TRUE              47          1st Quarter             1
## 34            TRUE              49          1st Quarter             1
## 35           FALSE              50          1st Quarter             1
## 36            TRUE              51          1st Quarter             1
## 37            TRUE              53          1st Quarter             1
## 38           FALSE              54          1st Quarter             1
## 39            TRUE              55          1st Quarter             1
## 40           FALSE              56          1st Quarter             1
## 41            TRUE              57          1st Quarter             1
## 42           FALSE              58          1st Quarter             1
## 43           FALSE              59          1st Quarter             1
## 44           FALSE              61          1st Quarter             1
## 45           FALSE              62          1st Quarter             1
## 46           FALSE              63          1st Quarter             1
## 47           FALSE              64          1st Quarter             1
## 48           FALSE              65          1st Quarter             1
## 49           FALSE              66          1st Quarter             1
## 50            TRUE              72          1st Quarter             1
## 51            TRUE              74          1st Quarter             1
## 52           FALSE              75          1st Quarter             1
## 53           FALSE              76          1st Quarter             1
## 54            TRUE              78          1st Quarter             1
## 55            TRUE              79          1st Quarter             1
## 56            TRUE              80          1st Quarter             1
## 57           FALSE              81          1st Quarter             1
## 58            TRUE              82          1st Quarter             1
## 59           FALSE              83          1st Quarter             1
## 60            TRUE             161          1st Quarter             1
## 61           FALSE             163          1st Quarter             1
## 62            TRUE              84          1st Quarter             1
## 63           FALSE              85          1st Quarter             1
## 64            TRUE              86          1st Quarter             1
## 65            TRUE              88          1st Quarter             1
## 66           FALSE              89          1st Quarter             1
## 67           FALSE              90          1st Quarter             1
## 68            TRUE              92          1st Quarter             1
## 69            TRUE              94          1st Quarter             1
## 70           FALSE              95          1st Quarter             1
## 71            TRUE              96          1st Quarter             1
## 72           FALSE              97          1st Quarter             1
## 73           FALSE              98          1st Quarter             1
## 74            TRUE             100          1st Quarter             1
## 75            TRUE             101          1st Quarter             1
## 76           FALSE             103          1st Quarter             1
## 77           FALSE             104          1st Quarter             1
## 78           FALSE             145          1st Quarter             1
## 79           FALSE             102          1st Quarter             1
## 80           FALSE             110          1st Quarter             1
## 81           FALSE             111          1st Quarter             1
## 82            TRUE             113          1st Quarter             1
## 83            TRUE             114          1st Quarter             1
## 84            TRUE             116          1st Quarter             1
## 85           FALSE             129          1st Quarter             1
## 86            TRUE             203          1st Quarter             1
## 87           FALSE             204          1st Quarter             1
## 88            TRUE             118          1st Quarter             1
## 89            TRUE             119          1st Quarter             1
## 90           FALSE             120          1st Quarter             1
## 91            TRUE             121          1st Quarter             1
## 92           FALSE             123          1st Quarter             1
## 93           FALSE             124          1st Quarter             1
## 94           FALSE             126          1st Quarter             1
## 95           FALSE             280          1st Quarter             1
## 96           FALSE             128          1st Quarter             1
## 97           FALSE             130          2nd Quarter             2
## 98           FALSE             131          2nd Quarter             2
## 99           FALSE             135          2nd Quarter             2
## 100          FALSE             137          2nd Quarter             2
## 101           TRUE             138          2nd Quarter             2
## 102          FALSE             140          2nd Quarter             2
## 103          FALSE             141          2nd Quarter             2
## 104          FALSE             143          2nd Quarter             2
## 105           TRUE             146          2nd Quarter             2
## 106          FALSE             147          2nd Quarter             2
## 107          FALSE             148          2nd Quarter             2
## 108           TRUE             150          2nd Quarter             2
## 109          FALSE             151          2nd Quarter             2
## 110           TRUE             152          2nd Quarter             2
## 111          FALSE             153          2nd Quarter             2
## 112          FALSE             155          2nd Quarter             2
## 113          FALSE             156          2nd Quarter             2
## 114          FALSE             157          2nd Quarter             2
## 115           TRUE             164          2nd Quarter             2
## 116          FALSE             166          2nd Quarter             2
## 117          FALSE             168          2nd Quarter             2
## 118           TRUE             169          2nd Quarter             2
## 119          FALSE             170          2nd Quarter             2
## 120           TRUE             171          2nd Quarter             2
## 121          FALSE             173          2nd Quarter             2
## 122           TRUE             175          2nd Quarter             2
## 123           TRUE             176          2nd Quarter             2
## 124           TRUE             177          2nd Quarter             2
## 125          FALSE             178          2nd Quarter             2
## 126           TRUE             179          2nd Quarter             2
## 127           TRUE             181          2nd Quarter             2
## 128          FALSE             182          2nd Quarter             2
## 129           TRUE             183          2nd Quarter             2
## 130          FALSE             184          2nd Quarter             2
## 131           TRUE             185          2nd Quarter             2
## 132          FALSE             186          2nd Quarter             2
## 133          FALSE             188          2nd Quarter             2
## 134          FALSE             189          2nd Quarter             2
## 135          FALSE             190          2nd Quarter             2
## 136          FALSE             191          2nd Quarter             2
## 137          FALSE             192          2nd Quarter             2
## 138           TRUE             198          2nd Quarter             2
## 139           TRUE             200          2nd Quarter             2
## 140           TRUE             201          2nd Quarter             2
## 141          FALSE             202          2nd Quarter             2
## 142           TRUE             205          2nd Quarter             2
## 143          FALSE             206          2nd Quarter             2
## 144           TRUE             207          2nd Quarter             2
## 145          FALSE             208          2nd Quarter             2
## 146           TRUE             209          2nd Quarter             2
## 147          FALSE             210          2nd Quarter             2
## 148           TRUE             211          2nd Quarter             2
## 149           TRUE             212          2nd Quarter             2
## 150          FALSE             213          2nd Quarter             2
## 151           TRUE             214          2nd Quarter             2
## 152          FALSE             215          2nd Quarter             2
## 153          FALSE             216          2nd Quarter             2
## 154          FALSE             218          2nd Quarter             2
## 155           TRUE             219          2nd Quarter             2
## 156          FALSE             221          2nd Quarter             2
## 157          FALSE             223          2nd Quarter             2
## 158          FALSE             224          2nd Quarter             2
## 159          FALSE             226          2nd Quarter             2
## 160           TRUE             228          2nd Quarter             2
## 161          FALSE             229          2nd Quarter             2
## 162           TRUE             230          2nd Quarter             2
## 163           TRUE             232          2nd Quarter             2
## 164          FALSE             233          2nd Quarter             2
## 165           TRUE             234          2nd Quarter             2
## 166          FALSE             235          2nd Quarter             2
## 167           TRUE             236          2nd Quarter             2
## 168           TRUE             238          2nd Quarter             2
## 169           TRUE             240          2nd Quarter             2
## 170           TRUE             242          2nd Quarter             2
## 171           TRUE             243          2nd Quarter             2
## 172          FALSE             244          2nd Quarter             2
## 173          FALSE             245          2nd Quarter             2
## 174          FALSE             247          2nd Quarter             2
## 175           TRUE             248          2nd Quarter             2
## 176           TRUE             249          2nd Quarter             2
## 177           TRUE             250          2nd Quarter             2
## 178           TRUE             252          2nd Quarter             2
## 179          FALSE             253          2nd Quarter             2
## 180          FALSE             254          2nd Quarter             2
## 181           TRUE             256          2nd Quarter             2
## 182          FALSE             258          2nd Quarter             2
## 183          FALSE             259          2nd Quarter             2
## 184           TRUE             261          2nd Quarter             2
## 185           TRUE             262          2nd Quarter             2
## 186          FALSE             263          2nd Quarter             2
## 187           TRUE             264          2nd Quarter             2
## 188          FALSE             266          2nd Quarter             2
## 189           TRUE             268          2nd Quarter             2
## 190           TRUE             269          2nd Quarter             2
## 191          FALSE             270          2nd Quarter             2
## 192           TRUE             272          2nd Quarter             2
## 193          FALSE             273          2nd Quarter             2
## 194           TRUE             275          2nd Quarter             2
## 195           TRUE             276          2nd Quarter             2
## 196          FALSE             278          2nd Quarter             2
## 197          FALSE             279          2nd Quarter             2
## 198          FALSE             281          3rd Quarter             3
## 199          FALSE             282          3rd Quarter             3
## 200           TRUE             286          3rd Quarter             3
## 201          FALSE             287          3rd Quarter             3
## 202           TRUE             288          3rd Quarter             3
## 203           TRUE             289          3rd Quarter             3
## 204          FALSE             290          3rd Quarter             3
## 205           TRUE             291          3rd Quarter             3
## 206           TRUE             293          3rd Quarter             3
## 207          FALSE             294          3rd Quarter             3
## 208           TRUE             295          3rd Quarter             3
## 209          FALSE             296          3rd Quarter             3
## 210           TRUE             297          3rd Quarter             3
## 211           TRUE             298          3rd Quarter             3
## 212          FALSE             299          3rd Quarter             3
## 213          FALSE             300          3rd Quarter             3
## 214           TRUE             302          3rd Quarter             3
## 215          FALSE             303          3rd Quarter             3
## 216           TRUE             304          3rd Quarter             3
## 217          FALSE             305          3rd Quarter             3
## 218           TRUE             306          3rd Quarter             3
## 219           TRUE             308          3rd Quarter             3
## 220          FALSE             310          3rd Quarter             3
## 221           TRUE             312          3rd Quarter             3
## 222          FALSE             315          3rd Quarter             3
## 223           TRUE             317          3rd Quarter             3
## 224          FALSE             318          3rd Quarter             3
## 225           TRUE             319          3rd Quarter             3
## 226          FALSE             320          3rd Quarter             3
## 227           TRUE             321          3rd Quarter             3
## 228          FALSE             322          3rd Quarter             3
## 229           TRUE             323          3rd Quarter             3
## 230          FALSE             324          3rd Quarter             3
## 231           TRUE             325          3rd Quarter             3
## 232          FALSE             326          3rd Quarter             3
## 233          FALSE             327          3rd Quarter             3
## 234           TRUE             328          3rd Quarter             3
## 235           TRUE             330          3rd Quarter             3
## 236           TRUE             332          3rd Quarter             3
## 237          FALSE             333          3rd Quarter             3
## 238           TRUE             335          3rd Quarter             3
## 239           TRUE             336          3rd Quarter             3
## 240           TRUE             338          3rd Quarter             3
## 241          FALSE             339          3rd Quarter             3
## 242           TRUE             340          3rd Quarter             3
## 243          FALSE             342          3rd Quarter             3
## 244          FALSE             344          3rd Quarter             3
## 245           TRUE             346          3rd Quarter             3
## 246           TRUE             347          3rd Quarter             3
## 247          FALSE             348          3rd Quarter             3
## 248          FALSE             349          3rd Quarter             3
## 249           TRUE             350          3rd Quarter             3
## 250          FALSE             351          3rd Quarter             3
## 251           TRUE             352          3rd Quarter             3
## 252          FALSE             353          3rd Quarter             3
## 253           TRUE             354          3rd Quarter             3
## 254           TRUE             356          3rd Quarter             3
## 255          FALSE             357          3rd Quarter             3
## 256           TRUE             358          3rd Quarter             3
## 257          FALSE             359          3rd Quarter             3
## 258           TRUE             360          3rd Quarter             3
## 259          FALSE             361          3rd Quarter             3
## 260          FALSE             362          3rd Quarter             3
## 261          FALSE             364          3rd Quarter             3
## 262          FALSE             365          3rd Quarter             3
## 263           TRUE             368          3rd Quarter             3
## 264          FALSE             369          3rd Quarter             3
## 265          FALSE             370          3rd Quarter             3
## 266          FALSE             373          3rd Quarter             3
## 267          FALSE             375          3rd Quarter             3
## 268           TRUE             376          3rd Quarter             3
## 269           TRUE             377          3rd Quarter             3
## 270          FALSE             378          3rd Quarter             3
## 271           TRUE             379          3rd Quarter             3
## 272          FALSE             380          3rd Quarter             3
## 273          FALSE             382          3rd Quarter             3
## 274           TRUE             384          3rd Quarter             3
## 275          FALSE             385          3rd Quarter             3
## 276           TRUE             386          3rd Quarter             3
## 277           TRUE             389          3rd Quarter             3
## 278          FALSE             390          3rd Quarter             3
## 279          FALSE             391          3rd Quarter             3
## 280           TRUE             393          3rd Quarter             3
## 281          FALSE             394          3rd Quarter             3
## 282          FALSE             395          3rd Quarter             3
## 283           TRUE             397          3rd Quarter             3
## 284           TRUE             398          3rd Quarter             3
## 285          FALSE             399          3rd Quarter             3
## 286          FALSE             400          3rd Quarter             3
## 287          FALSE             402          3rd Quarter             3
## 288           TRUE             403          3rd Quarter             3
## 289          FALSE             404          3rd Quarter             3
## 290          FALSE             406          3rd Quarter             3
## 291          FALSE             408          4th Quarter             4
## 292           TRUE             409          4th Quarter             4
## 293           TRUE             410          4th Quarter             4
## 294          FALSE             411          4th Quarter             4
## 295          FALSE             412          4th Quarter             4
## 296          FALSE             414          4th Quarter             4
## 297           TRUE             415          4th Quarter             4
## 298          FALSE             416          4th Quarter             4
## 299           TRUE             417          4th Quarter             4
## 300          FALSE             418          4th Quarter             4
## 301          FALSE             419          4th Quarter             4
## 302          FALSE             421          4th Quarter             4
## 303          FALSE             423          4th Quarter             4
## 304           TRUE             424          4th Quarter             4
## 305          FALSE             425          4th Quarter             4
## 306           TRUE             426          4th Quarter             4
## 307          FALSE             428          4th Quarter             4
## 308           TRUE             430          4th Quarter             4
## 309          FALSE             431          4th Quarter             4
## 310          FALSE             432          4th Quarter             4
## 311          FALSE             433          4th Quarter             4
## 312           TRUE             436          4th Quarter             4
## 313           TRUE             437          4th Quarter             4
## 314          FALSE             439          4th Quarter             4
## 315          FALSE             441          4th Quarter             4
## 316          FALSE             443          4th Quarter             4
## 317           TRUE             444          4th Quarter             4
## 318          FALSE             445          4th Quarter             4
## 319          FALSE             446          4th Quarter             4
## 320           TRUE             448          4th Quarter             4
## 321          FALSE             449          4th Quarter             4
## 322          FALSE             451          4th Quarter             4
## 323           TRUE             453          4th Quarter             4
## 324          FALSE             454          4th Quarter             4
## 325           TRUE             456          4th Quarter             4
## 326          FALSE             457          4th Quarter             4
## 327           TRUE             458          4th Quarter             4
## 328          FALSE             459          4th Quarter             4
## 329          FALSE             460          4th Quarter             4
## 330           TRUE             462          4th Quarter             4
## 331          FALSE             464          4th Quarter             4
## 332          FALSE             467          4th Quarter             4
## 333          FALSE             468          4th Quarter             4
## 334          FALSE             470          4th Quarter             4
## 335           TRUE             472          4th Quarter             4
## 336          FALSE             473          4th Quarter             4
## 337           TRUE             474          4th Quarter             4
## 338          FALSE             475          4th Quarter             4
## 339           TRUE             477          4th Quarter             4
## 340          FALSE             478          4th Quarter             4
## 341          FALSE             480          4th Quarter             4
## 342          FALSE             481          4th Quarter             4
## 343          FALSE             482          4th Quarter             4
## 344           TRUE             485          4th Quarter             4
## 345          FALSE             486          4th Quarter             4
## 346           TRUE             488          4th Quarter             4
## 347           TRUE             489          4th Quarter             4
## 348          FALSE             490          4th Quarter             4
## 349           TRUE             492          4th Quarter             4
## 350           TRUE             493          4th Quarter             4
## 351          FALSE             494          4th Quarter             4
## 352           TRUE             495          4th Quarter             4
## 353          FALSE             496          4th Quarter             4
## 354           TRUE             498          4th Quarter             4
## 355           TRUE             499          4th Quarter             4
## 356          FALSE             500          4th Quarter             4
## 357           TRUE             501          4th Quarter             4
## 358           TRUE             502          4th Quarter             4
## 359          FALSE             503          4th Quarter             4
## 360          FALSE             504          4th Quarter             4
## 361          FALSE             506          4th Quarter             4
## 362          FALSE             508          4th Quarter             4
## 363          FALSE             510          4th Quarter             4
## 364           TRUE             512          4th Quarter             4
## 365          FALSE             513          4th Quarter             4
## 366           TRUE             514          4th Quarter             4
## 367          FALSE             515          4th Quarter             4
## 368           TRUE             517          4th Quarter             4
## 369          FALSE             518          4th Quarter             4
## 370           TRUE             519          4th Quarter             4
## 371           TRUE             520          4th Quarter             4
## 372          FALSE             522          4th Quarter             4
## 373           TRUE             524          4th Quarter             4
## 374          FALSE             525          4th Quarter             4
## 375           TRUE             526          4th Quarter             4
## 376           TRUE             527          4th Quarter             4
## 377          FALSE             528          4th Quarter             4
## 378           TRUE             529          4th Quarter             4
## 379          FALSE             530          4th Quarter             4
## 380          FALSE             531          4th Quarter             4
## 381           TRUE             533          4th Quarter             4
## 382          FALSE             534          4th Quarter             4
## 383          FALSE             535          4th Quarter             4
## 384           TRUE             537          4th Quarter             4
## 385           TRUE             538          4th Quarter             4
## 386          FALSE             539          4th Quarter             4
## 387          FALSE             541          4th Quarter             4
## 388           TRUE             542          4th Quarter             4
## 389          FALSE             543          4th Quarter             4
## 390           TRUE             545          4th Quarter             4
## 391           TRUE             546          4th Quarter             4
## 392          FALSE             547          4th Quarter             4
## 393           TRUE             549          4th Quarter             4
## 394          FALSE             550          4th Quarter             4
## 395           TRUE             551          4th Quarter             4
## 396          FALSE             552          4th Quarter             4
## 397           TRUE             554          4th Quarter             4
## 398           TRUE             555          4th Quarter             4
## 399          FALSE             556          4th Quarter             4
## 400          FALSE             558          4th Quarter             4
## 401          FALSE             559          4th Quarter             4
## 402          FALSE             562          4th Quarter             4
## 403          FALSE             563          4th Quarter             4
## 404          FALSE             564          4th Quarter             4
## 405          FALSE             565          4th Quarter             4
## 406          FALSE             566          4th Quarter             4
## 407           TRUE             570          4th Quarter             4
## 408          FALSE             572          4th Quarter             4
## 409          FALSE             573          4th Quarter             4
## 410          FALSE             574          4th Quarter             4
## 411          FALSE             578          4th Quarter             4
## 412          FALSE             580          4th Quarter             4
## 413          FALSE               4          1st Quarter             1
## 414          FALSE               7          1st Quarter             1
## 415           TRUE               8          1st Quarter             1
## 416          FALSE               9          1st Quarter             1
## 417          FALSE              10          1st Quarter             1
## 418           TRUE              12          1st Quarter             1
## 419          FALSE              13          1st Quarter             1
## 420           TRUE              14          1st Quarter             1
## 421           TRUE              16          1st Quarter             1
## 422          FALSE              17          1st Quarter             1
## 423           TRUE              18          1st Quarter             1
## 424          FALSE              19          1st Quarter             1
## 425           TRUE              20          1st Quarter             1
## 426          FALSE              21          1st Quarter             1
## 427           TRUE              22          1st Quarter             1
## 428          FALSE              23          1st Quarter             1
## 429           TRUE              25          1st Quarter             1
## 430           TRUE              26          1st Quarter             1
## 431          FALSE              27          1st Quarter             1
## 432          FALSE              29          1st Quarter             1
## 433           TRUE              31          1st Quarter             1
## 434          FALSE              33          1st Quarter             1
## 435           TRUE              35          1st Quarter             1
## 436          FALSE              36          1st Quarter             1
## 437           TRUE              38          1st Quarter             1
## 438          FALSE              39          1st Quarter             1
## 439           TRUE              40          1st Quarter             1
## 440          FALSE              42          1st Quarter             1
## 441          FALSE              44          1st Quarter             1
## 442          FALSE              45          1st Quarter             1
## 443          FALSE              48          1st Quarter             1
## 444          FALSE              50          1st Quarter             1
## 445           TRUE              52          1st Quarter             1
## 446          FALSE              54          1st Quarter             1
## 447           TRUE              56          1st Quarter             1
## 448           TRUE              57          1st Quarter             1
## 449           TRUE              58          1st Quarter             1
## 450          FALSE              60          1st Quarter             1
## 451           TRUE              62          1st Quarter             1
## 452          FALSE              63          1st Quarter             1
## 453          FALSE              64          1st Quarter             1
## 454           TRUE              67          1st Quarter             1
## 455           TRUE              68          1st Quarter             1
## 456          FALSE              69          1st Quarter             1
## 457           TRUE              70          1st Quarter             1
## 458           TRUE              72          1st Quarter             1
## 459          FALSE              73          1st Quarter             1
## 460           TRUE              74          1st Quarter             1
## 461          FALSE              75          1st Quarter             1
## 462          FALSE              77          1st Quarter             1
## 463           TRUE              78          1st Quarter             1
## 464          FALSE              79          1st Quarter             1
## 465          FALSE              80          1st Quarter             1
## 466           TRUE              82          1st Quarter             1
## 467          FALSE              84          1st Quarter             1
## 468          FALSE              85          1st Quarter             1
## 469           TRUE              87          1st Quarter             1
## 470           TRUE              88          1st Quarter             1
## 471          FALSE              89          1st Quarter             1
## 472           TRUE              91          1st Quarter             1
## 473          FALSE              92          1st Quarter             1
## 474           TRUE              93          1st Quarter             1
## 475          FALSE              94          1st Quarter             1
## 476           TRUE              95          1st Quarter             1
## 477          FALSE              97          1st Quarter             1
## 478           TRUE              99          1st Quarter             1
## 479           TRUE             100          1st Quarter             1
## 480           TRUE             101          1st Quarter             1
## 481          FALSE             102          1st Quarter             1
## 482          FALSE             103          1st Quarter             1
## 483          FALSE             105          1st Quarter             1
## 484           TRUE             106          1st Quarter             1
## 485           TRUE             108          1st Quarter             1
## 486          FALSE             109          1st Quarter             1
## 487           TRUE             110          1st Quarter             1
## 488          FALSE             112          1st Quarter             1
## 489          FALSE             113          1st Quarter             1
## 490          FALSE             114          1st Quarter             1
## 491          FALSE             115          1st Quarter             1
## 492          FALSE             116          1st Quarter             1
## 493          FALSE             121          1st Quarter             1
## 494          FALSE             123          1st Quarter             1
## 495           TRUE             125          1st Quarter             1
## 496          FALSE             126          1st Quarter             1
## 497           TRUE             127          1st Quarter             1
## 498          FALSE             128          1st Quarter             1
## 499          FALSE             129          1st Quarter             1
## 500           TRUE             131          1st Quarter             1
## 501          FALSE             132          1st Quarter             1
## 502          FALSE             133          1st Quarter             1
## 503          FALSE             134          1st Quarter             1
## 504           TRUE             137          1st Quarter             1
## 505           TRUE             138          1st Quarter             1
## 506           TRUE             140          1st Quarter             1
## 507          FALSE             141          1st Quarter             1
## 508           TRUE             142          1st Quarter             1
## 509          FALSE             143          1st Quarter             1
## 510           TRUE             144          1st Quarter             1
## 511          FALSE             145          1st Quarter             1
## 512           TRUE             147          1st Quarter             1
## 513          FALSE             148          1st Quarter             1
## 514          FALSE             149          1st Quarter             1
## 515          FALSE             150          2nd Quarter             2
## 516          FALSE             151          2nd Quarter             2
## 517          FALSE             156          2nd Quarter             2
## 518           TRUE             158          2nd Quarter             2
## 519           TRUE             159          2nd Quarter             2
## 520           TRUE             160          2nd Quarter             2
## 521          FALSE             161          2nd Quarter             2
## 522           TRUE             162          2nd Quarter             2
## 523          FALSE             163          2nd Quarter             2
## 524          FALSE             164          2nd Quarter             2
## 525           TRUE             166          2nd Quarter             2
## 526          FALSE             168          2nd Quarter             2
## 527           TRUE             170          2nd Quarter             2
## 528          FALSE             171          2nd Quarter             2
## 529           TRUE             172          2nd Quarter             2
## 530          FALSE             174          2nd Quarter             2
## 531          FALSE             175          2nd Quarter             2
## 532          FALSE             176          2nd Quarter             2
## 533          FALSE             179          2nd Quarter             2
## 534           TRUE             181          2nd Quarter             2
## 535           TRUE             182          2nd Quarter             2
## 536          FALSE             183          2nd Quarter             2
## 537          FALSE             184          2nd Quarter             2
## 538           TRUE             186          2nd Quarter             2
## 539           TRUE             187          2nd Quarter             2
## 540          FALSE             188          2nd Quarter             2
## 541           TRUE             189          2nd Quarter             2
## 542          FALSE             190          2nd Quarter             2
## 543           TRUE             191          2nd Quarter             2
## 544           TRUE             192          2nd Quarter             2
## 545           TRUE             193          2nd Quarter             2
## 546          FALSE             194          2nd Quarter             2
## 547           TRUE             195          2nd Quarter             2
## 548           TRUE             197          2nd Quarter             2
## 549           TRUE             199          2nd Quarter             2
## 550          FALSE             200          2nd Quarter             2
## 551          FALSE             201          2nd Quarter             2
## 552          FALSE             202          2nd Quarter             2
## 553          FALSE             203          2nd Quarter             2
## 554          FALSE             204          2nd Quarter             2
## 555           TRUE             208          2nd Quarter             2
## 556           TRUE             210          2nd Quarter             2
## 557           TRUE             212          2nd Quarter             2
## 558           TRUE             214          2nd Quarter             2
## 559          FALSE             215          2nd Quarter             2
## 560           TRUE             216          2nd Quarter             2
## 561          FALSE             218          2nd Quarter             2
## 562           TRUE             219          2nd Quarter             2
## 563          FALSE             220          2nd Quarter             2
## 564           TRUE             221          2nd Quarter             2
## 565           TRUE             223          2nd Quarter             2
## 566          FALSE             224          2nd Quarter             2
## 567          FALSE             225          2nd Quarter             2
## 568          FALSE             227          2nd Quarter             2
## 569          FALSE             229          2nd Quarter             2
## 570          FALSE             233          2nd Quarter             2
## 571          FALSE             234          2nd Quarter             2
## 572           TRUE             236          2nd Quarter             2
## 573          FALSE             237          2nd Quarter             2
## 574           TRUE             238          2nd Quarter             2
## 575          FALSE             239          2nd Quarter             2
## 576          FALSE             240          2nd Quarter             2
## 577          FALSE             242          2nd Quarter             2
## 578           TRUE             244          2nd Quarter             2
## 579          FALSE             246          2nd Quarter             2
## 580           TRUE             247          2nd Quarter             2
## 581           TRUE             248          2nd Quarter             2
## 582          FALSE             249          2nd Quarter             2
## 583           TRUE             250          2nd Quarter             2
## 584          FALSE             251          2nd Quarter             2
## 585          FALSE             252          2nd Quarter             2
## 586          FALSE             253          2nd Quarter             2
## 587          FALSE             255          2nd Quarter             2
## 588          FALSE             257          2nd Quarter             2
## 589           TRUE             259          2nd Quarter             2
## 590           TRUE             261          2nd Quarter             2
## 591          FALSE             262          2nd Quarter             2
## 592          FALSE             263          2nd Quarter             2
## 593           TRUE             265          2nd Quarter             2
## 594          FALSE             266          2nd Quarter             2
## 595           TRUE             267          2nd Quarter             2
## 596          FALSE             268          2nd Quarter             2
## 597           TRUE             269          2nd Quarter             2
## 598          FALSE             271          2nd Quarter             2
## 599          FALSE             272          2nd Quarter             2
## 600          FALSE             274          2nd Quarter             2
## 601           TRUE             276          2nd Quarter             2
## 602          FALSE             277          2nd Quarter             2
## 603          FALSE             279          2nd Quarter             2
## 604           TRUE             281          2nd Quarter             2
## 605          FALSE             283          2nd Quarter             2
## 606          FALSE             285          2nd Quarter             2
## 607           TRUE             287          2nd Quarter             2
## 608           TRUE             288          2nd Quarter             2
## 609          FALSE             289          2nd Quarter             2
## 610          FALSE             290          3rd Quarter             3
## 611          FALSE             291          3rd Quarter             3
## 612          FALSE             292          3rd Quarter             3
## 613          FALSE             313          3rd Quarter             3
## 614           TRUE             319          3rd Quarter             3
## 615          FALSE             320          3rd Quarter             3
## 616           TRUE             326          3rd Quarter             3
## 617          FALSE             327          3rd Quarter             3
## 618           TRUE             329          3rd Quarter             3
## 619          FALSE             331          3rd Quarter             3
## 620          FALSE             297          3rd Quarter             3
## 621           TRUE             298          3rd Quarter             3
## 622          FALSE             299          3rd Quarter             3
## 623           TRUE             300          3rd Quarter             3
## 624          FALSE             301          3rd Quarter             3
## 625           TRUE             302          3rd Quarter             3
## 626           TRUE             303          3rd Quarter             3
## 627          FALSE             304          3rd Quarter             3
## 628           TRUE             306          3rd Quarter             3
## 629          FALSE             307          3rd Quarter             3
## 630           TRUE             308          3rd Quarter             3
## 631           TRUE             309          3rd Quarter             3
## 632           TRUE             310          3rd Quarter             3
## 633          FALSE             312          3rd Quarter             3
## 634          FALSE             315          3rd Quarter             3
## 635           TRUE             317          3rd Quarter             3
## 636          FALSE             318          3rd Quarter             3
## 637           TRUE             321          3rd Quarter             3
## 638          FALSE             322          3rd Quarter             3
## 639           TRUE             324          3rd Quarter             3
## 640          FALSE             325          3rd Quarter             3
## 641          FALSE             328          3rd Quarter             3
## 642           TRUE             332          3rd Quarter             3
## 643          FALSE             333          3rd Quarter             3
## 644          FALSE             334          3rd Quarter             3
## 645          FALSE             336          3rd Quarter             3
## 646           TRUE             337          3rd Quarter             3
## 647          FALSE             339          3rd Quarter             3
## 648          FALSE             341          3rd Quarter             3
## 649           TRUE             342          3rd Quarter             3
## 650          FALSE             343          3rd Quarter             3
## 651           TRUE             344          3rd Quarter             3
## 652          FALSE             345          3rd Quarter             3
## 653           TRUE             346          3rd Quarter             3
## 654          FALSE             347          3rd Quarter             3
## 655           TRUE             348          3rd Quarter             3
## 656          FALSE             351          3rd Quarter             3
## 657           TRUE             352          3rd Quarter             3
## 658          FALSE             353          3rd Quarter             3
## 659           TRUE             354          3rd Quarter             3
## 660          FALSE             355          3rd Quarter             3
## 661          FALSE             356          3rd Quarter             3
## 662          FALSE             357          3rd Quarter             3
## 663          FALSE             358          3rd Quarter             3
## 664          FALSE             359          3rd Quarter             3
## 665           TRUE             363          3rd Quarter             3
## 666          FALSE             364          3rd Quarter             3
## 667           TRUE             365          3rd Quarter             3
## 668           TRUE             366          3rd Quarter             3
## 669          FALSE             367          3rd Quarter             3
## 670           TRUE             368          3rd Quarter             3
## 671          FALSE             369          3rd Quarter             3
## 672           TRUE             370          3rd Quarter             3
## 673          FALSE             371          3rd Quarter             3
## 674           TRUE             373          3rd Quarter             3
## 675          FALSE             374          3rd Quarter             3
## 676           TRUE             375          3rd Quarter             3
## 677          FALSE             377          3rd Quarter             3
## 678           TRUE             378          3rd Quarter             3
## 679           TRUE             379          3rd Quarter             3
## 680          FALSE             380          3rd Quarter             3
## 681           TRUE             382          3rd Quarter             3
## 682           TRUE             383          3rd Quarter             3
## 683          FALSE             385          3rd Quarter             3
## 684           TRUE             386          3rd Quarter             3
## 685          FALSE             387          3rd Quarter             3
## 686          FALSE             389          3rd Quarter             3
## 687           TRUE             391          3rd Quarter             3
## 688          FALSE             392          3rd Quarter             3
## 689          FALSE             393          3rd Quarter             3
## 690          FALSE             394          3rd Quarter             3
## 691           TRUE             398          3rd Quarter             3
## 692           TRUE             399          3rd Quarter             3
## 693          FALSE             401          3rd Quarter             3
## 694           TRUE             403          3rd Quarter             3
## 695          FALSE             404          3rd Quarter             3
## 696           TRUE             405          3rd Quarter             3
## 697           TRUE             406          3rd Quarter             3
## 698           TRUE             408          3rd Quarter             3
## 699          FALSE             409          3rd Quarter             3
## 700          FALSE             410          3rd Quarter             3
## 701           TRUE             412          4th Quarter             4
## 702          FALSE             413          4th Quarter             4
## 703           TRUE             414          4th Quarter             4
## 704          FALSE             415          4th Quarter             4
## 705          FALSE             416          4th Quarter             4
## 706           TRUE             418          4th Quarter             4
## 707          FALSE             419          4th Quarter             4
## 708           TRUE             420          4th Quarter             4
## 709          FALSE             421          4th Quarter             4
## 710           TRUE             422          4th Quarter             4
## 711          FALSE             423          4th Quarter             4
## 712           TRUE             425          4th Quarter             4
## 713           TRUE             426          4th Quarter             4
## 714          FALSE             427          4th Quarter             4
## 715          FALSE             429          4th Quarter             4
## 716           TRUE             431          4th Quarter             4
## 717          FALSE             432          4th Quarter             4
## 718           TRUE             433          4th Quarter             4
## 719           TRUE             435          4th Quarter             4
## 720          FALSE             436          4th Quarter             4
## 721           TRUE             437          4th Quarter             4
## 722          FALSE             439          4th Quarter             4
## 723          FALSE             441          4th Quarter             4
## 724          FALSE             442          4th Quarter             4
## 725          FALSE             445          4th Quarter             4
## 726           TRUE             447          4th Quarter             4
## 727           TRUE             449          4th Quarter             4
## 728          FALSE             450          4th Quarter             4
## 729           TRUE             451          4th Quarter             4
## 730          FALSE             452          4th Quarter             4
## 731           TRUE             453          4th Quarter             4
## 732          FALSE             454          4th Quarter             4
## 733          FALSE             456          4th Quarter             4
## 734          FALSE             458          4th Quarter             4
## 735           TRUE             460          4th Quarter             4
## 736          FALSE             461          4th Quarter             4
## 737          FALSE             462          4th Quarter             4
## 738           TRUE             464          4th Quarter             4
## 739           TRUE             465          4th Quarter             4
## 740           TRUE             466          4th Quarter             4
## 741          FALSE             468          4th Quarter             4
## 742          FALSE             470          4th Quarter             4
## 743          FALSE             472          4th Quarter             4
## 744          FALSE             473          4th Quarter             4
## 745          FALSE             474          4th Quarter             4
## 746          FALSE             478          4th Quarter             4
## 747           TRUE             480          4th Quarter             4
## 748           TRUE             482          4th Quarter             4
## 749          FALSE             483          4th Quarter             4
## 750           TRUE             484          4th Quarter             4
## 751          FALSE             486          4th Quarter             4
## 752          FALSE             487          4th Quarter             4
## 753          FALSE             524          4th Quarter             4
## 754           TRUE             492          4th Quarter             4
## 755          FALSE             493          4th Quarter             4
## 756          FALSE             494          4th Quarter             4
## 757           TRUE             495          4th Quarter             4
## 758          FALSE             496          4th Quarter             4
## 759           TRUE             497          4th Quarter             4
## 760          FALSE             499          4th Quarter             4
## 761           TRUE             500          4th Quarter             4
## 762          FALSE             502          4th Quarter             4
## 763          FALSE             503          4th Quarter             4
## 764           TRUE             505          4th Quarter             4
## 765          FALSE             506          4th Quarter             4
## 766           TRUE             507          4th Quarter             4
## 767          FALSE             509          4th Quarter             4
## 768          FALSE             511          4th Quarter             4
## 769           TRUE             513          4th Quarter             4
## 770           TRUE             514          4th Quarter             4
## 771          FALSE             515          4th Quarter             4
## 772          FALSE             516          4th Quarter             4
## 773          FALSE             517          4th Quarter             4
## 774           TRUE             519          4th Quarter             4
## 775           TRUE             520          4th Quarter             4
## 776           TRUE             522          4th Quarter             4
## 777           TRUE             526          4th Quarter             4
## 778          FALSE             527          4th Quarter             4
## 779          FALSE             528          4th Quarter             4
## 780           TRUE             530          4th Quarter             4
## 781          FALSE             531          4th Quarter             4
## 782          FALSE             532          4th Quarter             4
## 783          FALSE             533          4th Quarter             4
## 784          FALSE             534          4th Quarter             4
## 785           TRUE             539          4th Quarter             4
## 786          FALSE             543          4th Quarter             4
## 787          FALSE             545          4th Quarter             4
## 788          FALSE             546          4th Quarter             4
## 789           TRUE             548          4th Quarter             4
## 790           TRUE             549          4th Quarter             4
## 791          FALSE             550          4th Quarter             4
## 792           TRUE             551          4th Quarter             4
## 793          FALSE             553          4th Quarter             4
## 794          FALSE             554          4th Quarter             4
## 795           TRUE             556          4th Quarter             4
## 796           TRUE             557          4th Quarter             4
## 797          FALSE             558          4th Quarter             4
## 798          FALSE             559          4th Quarter             4
## 799          FALSE             560          4th Quarter             4
## 800          FALSE               4          1st Quarter             1
## 801           TRUE               7          1st Quarter             1
## 802          FALSE               9          1st Quarter             1
## 803           TRUE              11          1st Quarter             1
## 804           TRUE              12          1st Quarter             1
## 805          FALSE              13          1st Quarter             1
## 806           TRUE              14          1st Quarter             1
## 807          FALSE              16          1st Quarter             1
## 808           TRUE              18          1st Quarter             1
## 809          FALSE              19          1st Quarter             1
## 810           TRUE              20          1st Quarter             1
## 811          FALSE              22          1st Quarter             1
## 812           TRUE              23          1st Quarter             1
## 813          FALSE              24          1st Quarter             1
## 814           TRUE              25          1st Quarter             1
## 815          FALSE              26          1st Quarter             1
## 816           TRUE              27          1st Quarter             1
## 817          FALSE              28          1st Quarter             1
## 818           TRUE              29          1st Quarter             1
## 819          FALSE              30          1st Quarter             1
## 820           TRUE              31          1st Quarter             1
## 821           TRUE              33          1st Quarter             1
## 822          FALSE              35          1st Quarter             1
## 823           TRUE              37          1st Quarter             1
## 824          FALSE              38          1st Quarter             1
## 825          FALSE              39          1st Quarter             1
## 826           TRUE              41          1st Quarter             1
## 827          FALSE              42          1st Quarter             1
## 828          FALSE              43          1st Quarter             1
## 829           TRUE              46          1st Quarter             1
## 830          FALSE              47          1st Quarter             1
## 831           TRUE              49          1st Quarter             1
## 832          FALSE              50          1st Quarter             1
## 833           TRUE              52          1st Quarter             1
## 834          FALSE              53          1st Quarter             1
## 835          FALSE              54          1st Quarter             1
## 836           TRUE              56          1st Quarter             1
## 837           TRUE              58          1st Quarter             1
## 838          FALSE              59          1st Quarter             1
## 839           TRUE              60          1st Quarter             1
## 840           TRUE              61          1st Quarter             1
## 841          FALSE              62          1st Quarter             1
## 842           TRUE              63          1st Quarter             1
## 843          FALSE              64          1st Quarter             1
## 844          FALSE              67          1st Quarter             1
## 845          FALSE              68          1st Quarter             1
## 846          FALSE              69          1st Quarter             1
## 847          FALSE              70          1st Quarter             1
## 848           TRUE              74          1st Quarter             1
## 849          FALSE              75          1st Quarter             1
## 850           TRUE              76          1st Quarter             1
## 851          FALSE              77          1st Quarter             1
## 852           TRUE              79          1st Quarter             1
## 853          FALSE              80          1st Quarter             1
## 854           TRUE              81          1st Quarter             1
## 855          FALSE              82          1st Quarter             1
## 856           TRUE              84          1st Quarter             1
## 857          FALSE              85          1st Quarter             1
## 858           TRUE              86          1st Quarter             1
## 859          FALSE              88          1st Quarter             1
## 860          FALSE              90          1st Quarter             1
## 861          FALSE              91          1st Quarter             1
## 862          FALSE              92          1st Quarter             1
## 863           TRUE              95          1st Quarter             1
## 864          FALSE              96          1st Quarter             1
## 865           TRUE              97          1st Quarter             1
## 866           TRUE              98          1st Quarter             1
## 867          FALSE              99          1st Quarter             1
## 868           TRUE             100          1st Quarter             1
## 869          FALSE             101          1st Quarter             1
## 870           TRUE             102          1st Quarter             1
## 871          FALSE             104          1st Quarter             1
## 872          FALSE             106          1st Quarter             1
## 873          FALSE             107          1st Quarter             1
## 874          FALSE             108          1st Quarter             1
## 875           TRUE             111          1st Quarter             1
## 876          FALSE             112          1st Quarter             1
## 877          FALSE             113          1st Quarter             1
## 878           TRUE             115          1st Quarter             1
## 879          FALSE             116          1st Quarter             1
## 880           TRUE             117          1st Quarter             1
## 881          FALSE             118          1st Quarter             1
## 882          FALSE             119          1st Quarter             1
## 883          FALSE             121          1st Quarter             1
## 884          FALSE             123          1st Quarter             1
## 885          FALSE             124          1st Quarter             1
## 886          FALSE             125          1st Quarter             1
## 887           TRUE             127          1st Quarter             1
## 888          FALSE             128          1st Quarter             1
## 889          FALSE             129          1st Quarter             1
## 890           TRUE             131          1st Quarter             1
## 891          FALSE             132          1st Quarter             1
## 892          FALSE             134          1st Quarter             1
## 893           TRUE             136          1st Quarter             1
## 894           TRUE             137          1st Quarter             1
## 895          FALSE             138          1st Quarter             1
## 896           TRUE             139          1st Quarter             1
## 897          FALSE             140          1st Quarter             1
## 898           TRUE             141          1st Quarter             1
## 899          FALSE             142          1st Quarter             1
## 900           TRUE             144          1st Quarter             1
## 901           TRUE             146          1st Quarter             1
## 902          FALSE             147          1st Quarter             1
## 903          FALSE             148          1st Quarter             1
## 904          FALSE             149          2nd Quarter             2
## 905          FALSE             150          2nd Quarter             2
## 906          FALSE             151          2nd Quarter             2
## 907           TRUE             156          2nd Quarter             2
## 908          FALSE             157          2nd Quarter             2
## 909           TRUE             159          2nd Quarter             2
## 910          FALSE             161          2nd Quarter             2
## 911           TRUE             163          2nd Quarter             2
## 912          FALSE             165          2nd Quarter             2
## 913          FALSE             166          2nd Quarter             2
## 914           TRUE             168          2nd Quarter             2
## 915          FALSE             169          2nd Quarter             2
## 916          FALSE             170          2nd Quarter             2
## 917           TRUE             172          2nd Quarter             2
## 918           TRUE             174          2nd Quarter             2
## 919           TRUE             175          2nd Quarter             2
## 920          FALSE             176          2nd Quarter             2
## 921           TRUE             177          2nd Quarter             2
## 922          FALSE             178          2nd Quarter             2
## 923           TRUE             179          2nd Quarter             2
## 924          FALSE             180          2nd Quarter             2
## 925           TRUE             181          2nd Quarter             2
## 926          FALSE             182          2nd Quarter             2
## 927          FALSE             184          2nd Quarter             2
## 928          FALSE             185          2nd Quarter             2
## 929           TRUE             188          2nd Quarter             2
## 930           TRUE             190          2nd Quarter             2
## 931          FALSE             191          2nd Quarter             2
## 932          FALSE             192          2nd Quarter             2
## 933           TRUE             194          2nd Quarter             2
## 934          FALSE             195          2nd Quarter             2
## 935           TRUE             197          2nd Quarter             2
## 936          FALSE             198          2nd Quarter             2
## 937          FALSE             200          2nd Quarter             2
## 938          FALSE             202          2nd Quarter             2
## 939           TRUE             204          2nd Quarter             2
## 940          FALSE             205          2nd Quarter             2
## 941          FALSE             206          2nd Quarter             2
## 942           TRUE             208          2nd Quarter             2
## 943           TRUE             210          2nd Quarter             2
## 944          FALSE             211          2nd Quarter             2
## 945           TRUE             212          2nd Quarter             2
## 946           TRUE             213          2nd Quarter             2
## 947           TRUE             214          2nd Quarter             2
## 948           TRUE             216          2nd Quarter             2
## 949          FALSE             217          2nd Quarter             2
## 950           TRUE             218          2nd Quarter             2
## 951          FALSE             219          2nd Quarter             2
## 952          FALSE             220          2nd Quarter             2
## 953           TRUE             222          2nd Quarter             2
## 954          FALSE             224          2nd Quarter             2
## 955          FALSE             226          2nd Quarter             2
## 956           TRUE             227          2nd Quarter             2
## 957          FALSE             228          2nd Quarter             2
## 958          FALSE             229          2nd Quarter             2
## 959           TRUE             231          2nd Quarter             2
## 960          FALSE             232          2nd Quarter             2
## 961           TRUE             233          2nd Quarter             2
## 962          FALSE             234          2nd Quarter             2
## 963           TRUE             236          2nd Quarter             2
## 964          FALSE             237          2nd Quarter             2
## 965           TRUE             238          2nd Quarter             2
## 966          FALSE             239          2nd Quarter             2
## 967           TRUE             240          2nd Quarter             2
## 968          FALSE             242          2nd Quarter             2
## 969          FALSE             243          2nd Quarter             2
## 970           TRUE             245          2nd Quarter             2
## 971          FALSE             247          2nd Quarter             2
## 972           TRUE             248          2nd Quarter             2
## 973          FALSE             250          2nd Quarter             2
## 974           TRUE             251          2nd Quarter             2
## 975          FALSE             252          2nd Quarter             2
## 976           TRUE             253          2nd Quarter             2
## 977          FALSE             254          2nd Quarter             2
## 978          FALSE             255          2nd Quarter             2
## 979           TRUE             257          2nd Quarter             2
## 980           TRUE             259          2nd Quarter             2
## 981          FALSE             260          2nd Quarter             2
## 982           TRUE             261          2nd Quarter             2
## 983          FALSE             262          2nd Quarter             2
## 984          FALSE             263          2nd Quarter             2
## 985           TRUE             264          2nd Quarter             2
## 986          FALSE             265          2nd Quarter             2
## 987           TRUE             266          2nd Quarter             2
## 988          FALSE             267          2nd Quarter             2
## 989           TRUE             268          2nd Quarter             2
## 990          FALSE             270          2nd Quarter             2
## 991          FALSE             271          3rd Quarter             3
## 992          FALSE             272          3rd Quarter             3
## 993           TRUE             277          3rd Quarter             3
## 994           TRUE             279          3rd Quarter             3
## 995           TRUE             281          3rd Quarter             3
## 996          FALSE             282          3rd Quarter             3
## 997          FALSE             283          3rd Quarter             3
## 998           TRUE             284          3rd Quarter             3
## 999          FALSE             285          3rd Quarter             3
## 1000          TRUE             287          3rd Quarter             3
## 1001          TRUE             288          3rd Quarter             3
## 1002          TRUE             289          3rd Quarter             3
## 1003         FALSE             290          3rd Quarter             3
## 1004          TRUE             291          3rd Quarter             3
## 1005          TRUE             293          3rd Quarter             3
## 1006         FALSE             294          3rd Quarter             3
## 1007          TRUE             295          3rd Quarter             3
## 1008         FALSE             297          3rd Quarter             3
## 1009         FALSE             298          3rd Quarter             3
## 1010          TRUE             300          3rd Quarter             3
## 1011          TRUE             301          3rd Quarter             3
## 1012          TRUE             302          3rd Quarter             3
## 1013         FALSE             303          3rd Quarter             3
## 1014          TRUE             304          3rd Quarter             3
## 1015         FALSE             306          3rd Quarter             3
## 1016         FALSE             307          3rd Quarter             3
## 1017         FALSE             309          3rd Quarter             3
## 1018          TRUE             310          3rd Quarter             3
## 1019         FALSE             311          3rd Quarter             3
## 1020          TRUE             312          3rd Quarter             3
## 1021         FALSE             314          3rd Quarter             3
## 1022          TRUE             316          3rd Quarter             3
## 1023         FALSE             317          3rd Quarter             3
## 1024          TRUE             318          3rd Quarter             3
## 1025          TRUE             319          3rd Quarter             3
## 1026         FALSE             320          3rd Quarter             3
## 1027         FALSE             322          3rd Quarter             3
## 1028         FALSE             323          3rd Quarter             3
## 1029         FALSE             325          3rd Quarter             3
## 1030          TRUE             327          3rd Quarter             3
## 1031          TRUE             328          3rd Quarter             3
## 1032         FALSE             329          3rd Quarter             3
## 1033          TRUE             330          3rd Quarter             3
## 1034          TRUE             331          3rd Quarter             3
## 1035         FALSE             332          3rd Quarter             3
## 1036          TRUE             334          3rd Quarter             3
## 1037          TRUE             335          3rd Quarter             3
## 1038          TRUE             336          3rd Quarter             3
## 1039         FALSE             337          3rd Quarter             3
## 1040         FALSE             339          3rd Quarter             3
## 1041         FALSE             340          3rd Quarter             3
## 1042         FALSE             341          3rd Quarter             3
## 1043          TRUE             345          3rd Quarter             3
## 1044         FALSE             347          3rd Quarter             3
## 1045          TRUE             349          3rd Quarter             3
## 1046         FALSE             350          3rd Quarter             3
## 1047          TRUE             351          3rd Quarter             3
## 1048         FALSE             353          3rd Quarter             3
## 1049          TRUE             355          3rd Quarter             3
## 1050          TRUE             357          3rd Quarter             3
## 1051         FALSE             358          3rd Quarter             3
## 1052         FALSE             359          3rd Quarter             3
## 1053          TRUE             361          3rd Quarter             3
## 1054         FALSE             362          3rd Quarter             3
## 1055         FALSE             363          3rd Quarter             3
## 1056          TRUE             365          3rd Quarter             3
## 1057         FALSE             366          3rd Quarter             3
## 1058         FALSE             367          3rd Quarter             3
## 1059         FALSE             368          3rd Quarter             3
## 1060          TRUE             371          3rd Quarter             3
## 1061          TRUE             372          3rd Quarter             3
## 1062          TRUE             374          3rd Quarter             3
## 1063         FALSE             375          3rd Quarter             3
## 1064          TRUE             376          3rd Quarter             3
## 1065         FALSE             377          3rd Quarter             3
## 1066         FALSE             379          3rd Quarter             3
## 1067         FALSE             380          3rd Quarter             3
## 1068         FALSE             381          3rd Quarter             3
## 1069          TRUE             385          3rd Quarter             3
## 1070         FALSE             386          3rd Quarter             3
## 1071         FALSE             387          3rd Quarter             3
## 1072          TRUE             389          3rd Quarter             3
## 1073          TRUE             390          3rd Quarter             3
## 1074          TRUE             391          3rd Quarter             3
## 1075          TRUE             393          3rd Quarter             3
## 1076         FALSE             394          3rd Quarter             3
## 1077         FALSE             395          3rd Quarter             3
## 1078          TRUE             397          3rd Quarter             3
## 1079         FALSE             398          3rd Quarter             3
## 1080          TRUE             400          3rd Quarter             3
## 1081         FALSE             401          3rd Quarter             3
## 1082         FALSE             402          3rd Quarter             3
## 1083         FALSE             404          3rd Quarter             3
## 1084          TRUE             405          3rd Quarter             3
## 1085          TRUE             407          3rd Quarter             3
## 1086          TRUE             409          3rd Quarter             3
## 1087         FALSE             410          3rd Quarter             3
## 1088         FALSE             411          3rd Quarter             3
## 1089         FALSE             412          4th Quarter             4
## 1090         FALSE             413          4th Quarter             4
## 1091         FALSE             417          4th Quarter             4
## 1092          TRUE             419          4th Quarter             4
## 1093         FALSE             420          4th Quarter             4
## 1094          TRUE             445          4th Quarter             4
## 1095         FALSE             447          4th Quarter             4
## 1096          TRUE             422          4th Quarter             4
## 1097         FALSE             424          4th Quarter             4
## 1098         FALSE             427          4th Quarter             4
## 1099          TRUE             428          4th Quarter             4
## 1100         FALSE             431          4th Quarter             4
## 1101         FALSE             433          4th Quarter             4
## 1102          TRUE             435          4th Quarter             4
## 1103          TRUE             436          4th Quarter             4
## 1104         FALSE             437          4th Quarter             4
## 1105          TRUE             439          4th Quarter             4
## 1106         FALSE             440          4th Quarter             4
## 1107          TRUE             442          4th Quarter             4
## 1108         FALSE             444          4th Quarter             4
## 1109         FALSE             448          4th Quarter             4
## 1110          TRUE             451          4th Quarter             4
## 1111         FALSE             453          4th Quarter             4
## 1112          TRUE             454          4th Quarter             4
## 1113         FALSE             456          4th Quarter             4
## 1114          TRUE             458          4th Quarter             4
## 1115         FALSE             459          4th Quarter             4
## 1116          TRUE             460          4th Quarter             4
## 1117         FALSE             461          4th Quarter             4
## 1118          TRUE             462          4th Quarter             4
## 1119         FALSE             463          4th Quarter             4
## 1120          TRUE             465          4th Quarter             4
## 1121         FALSE             467          4th Quarter             4
## 1122          TRUE             469          4th Quarter             4
## 1123         FALSE             471          4th Quarter             4
## 1124          TRUE             473          4th Quarter             4
## 1125         FALSE             474          4th Quarter             4
## 1126          TRUE             475          4th Quarter             4
## 1127         FALSE             477          4th Quarter             4
## 1128          TRUE             478          4th Quarter             4
## 1129         FALSE             480          4th Quarter             4
## 1130         FALSE             482          4th Quarter             4
## 1131          TRUE             484          4th Quarter             4
## 1132         FALSE             486          4th Quarter             4
## 1133          TRUE             488          4th Quarter             4
## 1134          TRUE             490          4th Quarter             4
## 1135         FALSE             492          4th Quarter             4
## 1136          TRUE             494          4th Quarter             4
## 1137         FALSE             495          4th Quarter             4
## 1138          TRUE             496          4th Quarter             4
## 1139         FALSE             497          4th Quarter             4
## 1140         FALSE             499          4th Quarter             4
## 1141          TRUE             501          4th Quarter             4
## 1142          TRUE             502          4th Quarter             4
## 1143          TRUE             503          4th Quarter             4
## 1144         FALSE             504          4th Quarter             4
## 1145         FALSE             505          4th Quarter             4
## 1146         FALSE             507          4th Quarter             4
## 1147          TRUE             508          4th Quarter             4
## 1148         FALSE             509          4th Quarter             4
## 1149          TRUE             510          4th Quarter             4
## 1150         FALSE             511          4th Quarter             4
## 1151          TRUE             512          4th Quarter             4
## 1152          TRUE             514          4th Quarter             4
## 1153         FALSE             515          4th Quarter             4
## 1154          TRUE             517          4th Quarter             4
## 1155         FALSE             518          4th Quarter             4
## 1156          TRUE             520          4th Quarter             4
## 1157         FALSE             521          4th Quarter             4
## 1158          TRUE             522          4th Quarter             4
## 1159         FALSE             524          4th Quarter             4
## 1160          TRUE             525          4th Quarter             4
## 1161         FALSE             526          4th Quarter             4
## 1162          TRUE             527          4th Quarter             4
## 1163          TRUE             528          4th Quarter             4
## 1164         FALSE             529          4th Quarter             4
## 1165          TRUE             530          4th Quarter             4
## 1166         FALSE             531          4th Quarter             4
## 1167          TRUE             532          4th Quarter             4
## 1168         FALSE             534          4th Quarter             4
## 1169         FALSE             536          4th Quarter             4
## 1170         FALSE             537          4th Quarter             4
## 1171          TRUE             539          4th Quarter             4
## 1172         FALSE             540          4th Quarter             4
## 1173          TRUE             541          4th Quarter             4
## 1174          TRUE             542          4th Quarter             4
## 1175         FALSE             543          4th Quarter             4
## 1176          TRUE             544          4th Quarter             4
## 1177         FALSE             545          4th Quarter             4
## 1178         FALSE             546          4th Quarter             4
## 1179          TRUE             548          4th Quarter             4
## 1180          TRUE             549          4th Quarter             4
## 1181          TRUE             550          4th Quarter             4
## 1182         FALSE             552          4th Quarter             4
## 1183          TRUE             553          4th Quarter             4
## 1184         FALSE             554          4th Quarter             4
## 1185          TRUE             555          4th Quarter             4
## 1186         FALSE             556          4th Quarter             4
## 1187         FALSE             557          4th Quarter             4
## 1188          TRUE             559          4th Quarter             4
## 1189         FALSE             560          4th Quarter             4
## 1190          TRUE             561          4th Quarter             4
## 1191         FALSE             562          4th Quarter             4
## 1192         FALSE             563          4th Quarter             4
## 1193          TRUE             565          4th Quarter             4
## 1194         FALSE             567          4th Quarter             4
## 1195         FALSE             568          4th Quarter             4
## 1196         FALSE             569          4th Quarter             4
## 1197         FALSE               4          1st Quarter             1
## 1198          TRUE               7          1st Quarter             1
## 1199         FALSE               9          1st Quarter             1
## 1200          TRUE              10          1st Quarter             1
## 1201         FALSE              11          1st Quarter             1
## 1202          TRUE              13          1st Quarter             1
## 1203         FALSE              14          1st Quarter             1
## 1204          TRUE              15          1st Quarter             1
## 1205         FALSE              16          1st Quarter             1
## 1206         FALSE              17          1st Quarter             1
## 1207          TRUE              18          1st Quarter             1
## 1208         FALSE              19          1st Quarter             1
## 1209          TRUE              21          1st Quarter             1
## 1210         FALSE              22          1st Quarter             1
## 1211          TRUE              23          1st Quarter             1
## 1212          TRUE              25          1st Quarter             1
## 1213          TRUE              26          1st Quarter             1
## 1214          TRUE              28          1st Quarter             1
## 1215          TRUE              30          1st Quarter             1
## 1216         FALSE              31          1st Quarter             1
## 1217          TRUE              32          1st Quarter             1
## 1218         FALSE              33          1st Quarter             1
## 1219         FALSE              34          1st Quarter             1
## 1220         FALSE              36          1st Quarter             1
## 1221          TRUE              38          1st Quarter             1
## 1222         FALSE              39          1st Quarter             1
## 1223         FALSE              40          1st Quarter             1
## 1224         FALSE              42          1st Quarter             1
## 1225         FALSE              43          1st Quarter             1
## 1226         FALSE              44          1st Quarter             1
## 1227         FALSE              47          1st Quarter             1
## 1228         FALSE              48          1st Quarter             1
## 1229          TRUE              51          1st Quarter             1
## 1230         FALSE              52          1st Quarter             1
## 1231         FALSE              55          1st Quarter             1
## 1232          TRUE              56          1st Quarter             1
## 1233         FALSE              57          1st Quarter             1
## 1234          TRUE              59          1st Quarter             1
## 1235         FALSE              61          1st Quarter             1
## 1236          TRUE              63          1st Quarter             1
## 1237         FALSE              64          1st Quarter             1
## 1238          TRUE              65          1st Quarter             1
## 1239         FALSE              66          1st Quarter             1
## 1240          TRUE              68          1st Quarter             1
## 1241         FALSE              72          1st Quarter             1
## 1242         FALSE              74          1st Quarter             1
## 1243         FALSE              75          1st Quarter             1
## 1244         FALSE              81          1st Quarter             1
## 1245         FALSE              82          1st Quarter             1
## 1246         FALSE              77          1st Quarter             1
## 1247         FALSE              79          1st Quarter             1
## 1248         FALSE              85          1st Quarter             1
## 1249          TRUE              91          1st Quarter             1
## 1250         FALSE              92          1st Quarter             1
## 1251         FALSE              93          1st Quarter             1
## 1252          TRUE              94          1st Quarter             1
## 1253          TRUE              96          1st Quarter             1
## 1254          TRUE              98          1st Quarter             1
## 1255          TRUE             100          1st Quarter             1
## 1256         FALSE             101          1st Quarter             1
## 1257         FALSE             102          1st Quarter             1
## 1258          TRUE             104          1st Quarter             1
## 1259         FALSE             105          1st Quarter             1
## 1260          TRUE             106          1st Quarter             1
## 1261         FALSE             107          1st Quarter             1
## 1262         FALSE             109          1st Quarter             1
## 1263          TRUE             111          1st Quarter             1
## 1264          TRUE             112          1st Quarter             1
## 1265         FALSE             113          1st Quarter             1
## 1266          TRUE             114          1st Quarter             1
## 1267          TRUE             115          1st Quarter             1
## 1268         FALSE             116          1st Quarter             1
## 1269         FALSE             118          1st Quarter             1
## 1270          TRUE             120          1st Quarter             1
## 1271         FALSE             121          1st Quarter             1
## 1272          TRUE             122          1st Quarter             1
## 1273         FALSE             124          1st Quarter             1
## 1274          TRUE             125          1st Quarter             1
## 1275         FALSE             127          1st Quarter             1
## 1276         FALSE             129          1st Quarter             1
## 1277         FALSE             131          1st Quarter             1
## 1278          TRUE             132          1st Quarter             1
## 1279         FALSE             133          1st Quarter             1
## 1280          TRUE             135          1st Quarter             1
## 1281         FALSE             136          1st Quarter             1
## 1282          TRUE             138          1st Quarter             1
## 1283         FALSE             139          1st Quarter             1
## 1284          TRUE             141          1st Quarter             1
## 1285         FALSE             142          1st Quarter             1
## 1286          TRUE             143          1st Quarter             1
## 1287          TRUE             144          1st Quarter             1
## 1288         FALSE             145          1st Quarter             1
## 1289         FALSE             146          1st Quarter             1
## 1290         FALSE             148          2nd Quarter             2
## 1291         FALSE             149          2nd Quarter             2
## 1292         FALSE             150          2nd Quarter             2
## 1293         FALSE             203          2nd Quarter             2
## 1294          TRUE             158          2nd Quarter             2
## 1295          TRUE             165          2nd Quarter             2
## 1296         FALSE             169          2nd Quarter             2
## 1297         FALSE             208          2nd Quarter             2
## 1298         FALSE             325          2nd Quarter             2
## 1299         FALSE             159          2nd Quarter             2
## 1300         FALSE             277          2nd Quarter             2
## 1301          TRUE             279          2nd Quarter             2
## 1302          TRUE             280          2nd Quarter             2
## 1303          TRUE             161          2nd Quarter             2
## 1304         FALSE             162          2nd Quarter             2
## 1305         FALSE             163          2nd Quarter             2
## 1306          TRUE             166          2nd Quarter             2
## 1307          TRUE             167          2nd Quarter             2
## 1308          TRUE             168          2nd Quarter             2
## 1309         FALSE             171          2nd Quarter             2
## 1310         FALSE             172          2nd Quarter             2
## 1311          TRUE             175          2nd Quarter             2
## 1312         FALSE             176          2nd Quarter             2
## 1313          TRUE             177          2nd Quarter             2
## 1314         FALSE             178          2nd Quarter             2
## 1315          TRUE             180          2nd Quarter             2
## 1316          TRUE             181          2nd Quarter             2
## 1317          TRUE             183          2nd Quarter             2
## 1318         FALSE             185          2nd Quarter             2
## 1319         FALSE             187          2nd Quarter             2
## 1320         FALSE             190          2nd Quarter             2
## 1321         FALSE             324          2nd Quarter             2
## 1322          TRUE             193          2nd Quarter             2
## 1323         FALSE             194          2nd Quarter             2
## 1324          TRUE             195          2nd Quarter             2
## 1325         FALSE             196          2nd Quarter             2
## 1326         FALSE             198          2nd Quarter             2
## 1327          TRUE             200          2nd Quarter             2
## 1328         FALSE             201          2nd Quarter             2
## 1329         FALSE             202          2nd Quarter             2
## 1330         FALSE             205          2nd Quarter             2
## 1331         FALSE             206          2nd Quarter             2
## 1332          TRUE             210          2nd Quarter             2
## 1333         FALSE             212          2nd Quarter             2
## 1334         FALSE             215          2nd Quarter             2
## 1335          TRUE             216          2nd Quarter             2
## 1336         FALSE             217          2nd Quarter             2
## 1337          TRUE             219          2nd Quarter             2
## 1338         FALSE             220          2nd Quarter             2
## 1339          TRUE             221          2nd Quarter             2
## 1340         FALSE             222          2nd Quarter             2
## 1341          TRUE             224          2nd Quarter             2
## 1342         FALSE             225          2nd Quarter             2
## 1343         FALSE             226          2nd Quarter             2
## 1344          TRUE             229          2nd Quarter             2
## 1345          TRUE             230          2nd Quarter             2
## 1346         FALSE             231          2nd Quarter             2
## 1347         FALSE             232          2nd Quarter             2
## 1348          TRUE             234          2nd Quarter             2
## 1349         FALSE             237          2nd Quarter             2
## 1350         FALSE             238          2nd Quarter             2
## 1351         FALSE             239          2nd Quarter             2
## 1352          TRUE             241          2nd Quarter             2
## 1353         FALSE             242          2nd Quarter             2
## 1354          TRUE             243          2nd Quarter             2
## 1355         FALSE             244          2nd Quarter             2
## 1356          TRUE             245          2nd Quarter             2
## 1357          TRUE             246          2nd Quarter             2
## 1358          TRUE             247          2nd Quarter             2
## 1359         FALSE             248          2nd Quarter             2
## 1360         FALSE             249          2nd Quarter             2
## 1361         FALSE             251          2nd Quarter             2
## 1362         FALSE             252          2nd Quarter             2
## 1363          TRUE             254          2nd Quarter             2
## 1364         FALSE             256          2nd Quarter             2
## 1365         FALSE             257          2nd Quarter             2
## 1366         FALSE             259          2nd Quarter             2
## 1367         FALSE             260          2nd Quarter             2
## 1368         FALSE             262          2nd Quarter             2
## 1369          TRUE             264          2nd Quarter             2
## 1370         FALSE             265          2nd Quarter             2
## 1371          TRUE             266          2nd Quarter             2
## 1372         FALSE             268          2nd Quarter             2
## 1373          TRUE             270          2nd Quarter             2
## 1374         FALSE             271          2nd Quarter             2
## 1375          TRUE             272          2nd Quarter             2
## 1376          TRUE             273          2nd Quarter             2
## 1377         FALSE             274          2nd Quarter             2
## 1378         FALSE             275          2nd Quarter             2
## 1379         FALSE             276          2nd Quarter             2
## 1380          TRUE             281          2nd Quarter             2
## 1381         FALSE             282          2nd Quarter             2
## 1382          TRUE             283          2nd Quarter             2
## 1383          TRUE             284          2nd Quarter             2
## 1384         FALSE             285          2nd Quarter             2
## 1385          TRUE             287          2nd Quarter             2
## 1386         FALSE             288          2nd Quarter             2
## 1387          TRUE             289          2nd Quarter             2
## 1388         FALSE             291          2nd Quarter             2
## 1389          TRUE             293          2nd Quarter             2
## 1390         FALSE             294          2nd Quarter             2
## 1391         FALSE             295          2nd Quarter             2
## 1392         FALSE             296          2nd Quarter             2
## 1393         FALSE             297          2nd Quarter             2
## 1394          TRUE             302          2nd Quarter             2
## 1395         FALSE             303          2nd Quarter             2
## 1396         FALSE             305          2nd Quarter             2
## 1397          TRUE             307          2nd Quarter             2
## 1398         FALSE             308          2nd Quarter             2
## 1399         FALSE             309          2nd Quarter             2
## 1400          TRUE             311          2nd Quarter             2
## 1401         FALSE             312          2nd Quarter             2
## 1402         FALSE             313          2nd Quarter             2
## 1403          TRUE             315          2nd Quarter             2
## 1404          TRUE             317          2nd Quarter             2
## 1405          TRUE             318          2nd Quarter             2
## 1406         FALSE             319          2nd Quarter             2
## 1407         FALSE             320          2nd Quarter             2
## 1408          TRUE             321          2nd Quarter             2
## 1409         FALSE             322          2nd Quarter             2
## 1410         FALSE             323          2nd Quarter             2
## 1411         FALSE             327          3rd Quarter             3
## 1412         FALSE             328          3rd Quarter             3
## 1413         FALSE             329          3rd Quarter             3
## 1414         FALSE             330          3rd Quarter             3
## 1415         FALSE             331          3rd Quarter             3
## 1416         FALSE             338          3rd Quarter             3
## 1417          TRUE             340          3rd Quarter             3
## 1418         FALSE             341          3rd Quarter             3
## 1419          TRUE             342          3rd Quarter             3
## 1420         FALSE             343          3rd Quarter             3
## 1421          TRUE             344          3rd Quarter             3
## 1422         FALSE             346          3rd Quarter             3
## 1423          TRUE             347          3rd Quarter             3
## 1424         FALSE             348          3rd Quarter             3
## 1425          TRUE             349          3rd Quarter             3
## 1426         FALSE             350          3rd Quarter             3
## 1427          TRUE             352          3rd Quarter             3
## 1428          TRUE             353          3rd Quarter             3
## 1429         FALSE             354          3rd Quarter             3
## 1430         FALSE             355          3rd Quarter             3
## 1431          TRUE             356          3rd Quarter             3
## 1432          TRUE             357          3rd Quarter             3
## 1433         FALSE             358          3rd Quarter             3
## 1434          TRUE             359          3rd Quarter             3
## 1435         FALSE             360          3rd Quarter             3
## 1436          TRUE             362          3rd Quarter             3
## 1437          TRUE             363          3rd Quarter             3
## 1438         FALSE             364          3rd Quarter             3
## 1439          TRUE             365          3rd Quarter             3
## 1440         FALSE             366          3rd Quarter             3
## 1441         FALSE             368          3rd Quarter             3
## 1442          TRUE             370          3rd Quarter             3
## 1443         FALSE             371          3rd Quarter             3
## 1444         FALSE             372          3rd Quarter             3
## 1445         FALSE             373          3rd Quarter             3
## 1446          TRUE             376          3rd Quarter             3
## 1447          TRUE             377          3rd Quarter             3
## 1448          TRUE             378          3rd Quarter             3
## 1449          TRUE             380          3rd Quarter             3
## 1450         FALSE             381          3rd Quarter             3
## 1451          TRUE             383          3rd Quarter             3
## 1452         FALSE             385          3rd Quarter             3
## 1453         FALSE             386          3rd Quarter             3
## 1454         FALSE             387          3rd Quarter             3
## 1455          TRUE             390          3rd Quarter             3
## 1456         FALSE             391          3rd Quarter             3
## 1457         FALSE             392          3rd Quarter             3
## 1458         FALSE             394          3rd Quarter             3
## 1459         FALSE             395          3rd Quarter             3
## 1460         FALSE             397          3rd Quarter             3
## 1461         FALSE             398          3rd Quarter             3
## 1462          TRUE             400          3rd Quarter             3
## 1463         FALSE             401          3rd Quarter             3
## 1464          TRUE             403          3rd Quarter             3
## 1465         FALSE             404          3rd Quarter             3
## 1466          TRUE             406          3rd Quarter             3
## 1467          TRUE             408          3rd Quarter             3
## 1468         FALSE             409          3rd Quarter             3
## 1469         FALSE             410          3rd Quarter             3
## 1470         FALSE             412          3rd Quarter             3
## 1471          TRUE             413          3rd Quarter             3
## 1472         FALSE             414          3rd Quarter             3
## 1473          TRUE             415          3rd Quarter             3
## 1474         FALSE             416          3rd Quarter             3
## 1475         FALSE             417          3rd Quarter             3
## 1476          TRUE             419          3rd Quarter             3
## 1477         FALSE             420          3rd Quarter             3
## 1478         FALSE             421          3rd Quarter             3
## 1479          TRUE             423          3rd Quarter             3
## 1480          TRUE             424          3rd Quarter             3
## 1481         FALSE             426          3rd Quarter             3
## 1482          TRUE             429          3rd Quarter             3
## 1483         FALSE             431          3rd Quarter             3
## 1484         FALSE             432          3rd Quarter             3
## 1485         FALSE             433          3rd Quarter             3
## 1486          TRUE             436          3rd Quarter             3
## 1487         FALSE             437          3rd Quarter             3
## 1488          TRUE             438          3rd Quarter             3
## 1489          TRUE             440          3rd Quarter             3
## 1490          TRUE             442          3rd Quarter             3
## 1491         FALSE             443          3rd Quarter             3
## 1492         FALSE             444          3rd Quarter             3
## 1493         FALSE             446          3rd Quarter             3
## 1494          TRUE             447          3rd Quarter             3
## 1495          TRUE             449          3rd Quarter             3
## 1496         FALSE             451          3rd Quarter             3
## 1497         FALSE             452          3rd Quarter             3
## 1498          TRUE             454          3rd Quarter             3
## 1499         FALSE             455          3rd Quarter             3
## 1500          TRUE             456          3rd Quarter             3
## 1501          TRUE             457          3rd Quarter             3
## 1502         FALSE             458          3rd Quarter             3
## 1503         FALSE             459          3rd Quarter             3
## 1504          TRUE             461          3rd Quarter             3
## 1505         FALSE             462          3rd Quarter             3
## 1506          TRUE             464          3rd Quarter             3
## 1507          TRUE             465          3rd Quarter             3
## 1508         FALSE             466          3rd Quarter             3
## 1509         FALSE             467          3rd Quarter             3
## 1510         FALSE             468          4th Quarter             4
## 1511         FALSE             469          4th Quarter             4
## 1512         FALSE             470          4th Quarter             4
## 1513          TRUE             475          4th Quarter             4
## 1514          TRUE             476          4th Quarter             4
## 1515         FALSE             477          4th Quarter             4
## 1516         FALSE             480          4th Quarter             4
## 1517         FALSE             484          4th Quarter             4
## 1518          TRUE             483          4th Quarter             4
## 1519         FALSE             485          4th Quarter             4
## 1520          TRUE             486          4th Quarter             4
## 1521         FALSE             487          4th Quarter             4
## 1522          TRUE             488          4th Quarter             4
## 1523          TRUE             490          4th Quarter             4
## 1524         FALSE             491          4th Quarter             4
## 1525          TRUE             492          4th Quarter             4
## 1526         FALSE             493          4th Quarter             4
## 1527          TRUE             494          4th Quarter             4
## 1528          TRUE             496          4th Quarter             4
## 1529         FALSE             497          4th Quarter             4
## 1530          TRUE             498          4th Quarter             4
## 1531         FALSE             499          4th Quarter             4
## 1532         FALSE             501          4th Quarter             4
## 1533         FALSE             502          4th Quarter             4
## 1534         FALSE             503          4th Quarter             4
## 1535          TRUE             507          4th Quarter             4
## 1536         FALSE             508          4th Quarter             4
## 1537          TRUE             509          4th Quarter             4
## 1538          TRUE             510          4th Quarter             4
## 1539         FALSE             511          4th Quarter             4
## 1540         FALSE             512          4th Quarter             4
## 1541         FALSE             513          4th Quarter             4
## 1542         FALSE             515          4th Quarter             4
## 1543          TRUE             516          4th Quarter             4
## 1544         FALSE             517          4th Quarter             4
## 1545         FALSE             518          4th Quarter             4
## 1546          TRUE             520          4th Quarter             4
## 1547          TRUE             522          4th Quarter             4
## 1548         FALSE             523          4th Quarter             4
## 1549          TRUE             524          4th Quarter             4
## 1550         FALSE             526          4th Quarter             4
## 1551          TRUE             527          4th Quarter             4
## 1552         FALSE             528          4th Quarter             4
## 1553         FALSE             530          4th Quarter             4
## 1554         FALSE             533          4th Quarter             4
## 1555          TRUE             534          4th Quarter             4
## 1556         FALSE             535          4th Quarter             4
## 1557          TRUE             536          4th Quarter             4
## 1558          TRUE             538          4th Quarter             4
## 1559         FALSE             539          4th Quarter             4
## 1560          TRUE             540          4th Quarter             4
## 1561         FALSE             541          4th Quarter             4
## 1562          TRUE             542          4th Quarter             4
## 1563         FALSE             543          4th Quarter             4
## 1564          TRUE             544          4th Quarter             4
## 1565         FALSE             545          4th Quarter             4
## 1566         FALSE             546          4th Quarter             4
## 1567         FALSE             547          4th Quarter             4
## 1568         FALSE             548          4th Quarter             4
## 1569         FALSE             549          4th Quarter             4
## 1570         FALSE             553          4th Quarter             4
## 1571         FALSE             556          4th Quarter             4
## 1572          TRUE             558          4th Quarter             4
## 1573          TRUE             559          4th Quarter             4
## 1574         FALSE             560          4th Quarter             4
## 1575          TRUE             561          4th Quarter             4
## 1576         FALSE             562          4th Quarter             4
## 1577          TRUE             563          4th Quarter             4
## 1578         FALSE             565          4th Quarter             4
## 1579          TRUE             567          4th Quarter             4
## 1580         FALSE             568          4th Quarter             4
## 1581          TRUE             570          4th Quarter             4
## 1582         FALSE             571          4th Quarter             4
## 1583         FALSE             573          4th Quarter             4
## 1584         FALSE             574          4th Quarter             4
## 1585          TRUE             576          4th Quarter             4
## 1586         FALSE             577          4th Quarter             4
## 1587          TRUE             578          4th Quarter             4
## 1588          TRUE             579          4th Quarter             4
## 1589         FALSE             580          4th Quarter             4
## 1590          TRUE             582          4th Quarter             4
## 1591         FALSE             583          4th Quarter             4
## 1592         FALSE             584          4th Quarter             4
## 1593         FALSE             586          4th Quarter             4
## 1594          TRUE             588          4th Quarter             4
## 1595         FALSE             589          4th Quarter             4
## 1596          TRUE             590          4th Quarter             4
## 1597          TRUE             591          4th Quarter             4
## 1598         FALSE             592          4th Quarter             4
## 1599          TRUE             593          4th Quarter             4
## 1600         FALSE             594          4th Quarter             4
## 1601         FALSE             595          4th Quarter             4
## 1602         FALSE             596          4th Quarter             4
## 1603         FALSE             597          4th Quarter             4
## 1604          TRUE             601          4th Quarter             4
## 1605         FALSE             602          4th Quarter             4
## 1606          TRUE             603          4th Quarter             4
## 1607         FALSE             604          4th Quarter             4
## 1608          TRUE             605          4th Quarter             4
## 1609          TRUE             606          4th Quarter             4
## 1610         FALSE             607          4th Quarter             4
## 1611          TRUE             608          4th Quarter             4
## 1612         FALSE             610          4th Quarter             4
## 1613         FALSE             611          4th Quarter             4
## 1614          TRUE             613          4th Quarter             4
## 1615         FALSE             614          4th Quarter             4
## 1616          TRUE             616          4th Quarter             4
## 1617          TRUE             617          4th Quarter             4
## 1618         FALSE             619          4th Quarter             4
## 1619          TRUE             620          4th Quarter             4
## 1620         FALSE             621          4th Quarter             4
## 1621          TRUE             622          4th Quarter             4
## 1622          TRUE             624          4th Quarter             4
## 1623         FALSE             625          4th Quarter             4
## 1624         FALSE             626          4th Quarter             4
## 1625         FALSE             627          4th Quarter             4
## 1626         FALSE               4          1st Quarter             1
## 1627         FALSE               7          1st Quarter             1
## 1628          TRUE               9          1st Quarter             1
## 1629          TRUE              11          1st Quarter             1
## 1630         FALSE              13          1st Quarter             1
## 1631          TRUE              15          1st Quarter             1
## 1632         FALSE              16          1st Quarter             1
## 1633          TRUE              17          1st Quarter             1
## 1634          TRUE              19          1st Quarter             1
## 1635          TRUE              21          1st Quarter             1
## 1636         FALSE              24          1st Quarter             1
## 1637          TRUE              25          1st Quarter             1
## 1638         FALSE              26          1st Quarter             1
## 1639         FALSE              28          1st Quarter             1
## 1640          TRUE              29          1st Quarter             1
## 1641         FALSE              32          1st Quarter             1
## 1642          TRUE              34          1st Quarter             1
## 1643         FALSE              36          1st Quarter             1
## 1644          TRUE              38          1st Quarter             1
## 1645         FALSE              39          1st Quarter             1
## 1646          TRUE              40          1st Quarter             1
## 1647         FALSE              41          1st Quarter             1
## 1648          TRUE              42          1st Quarter             1
## 1649         FALSE              43          1st Quarter             1
## 1650          TRUE              44          1st Quarter             1
## 1651         FALSE              45          1st Quarter             1
## 1652          TRUE              46          1st Quarter             1
## 1653         FALSE              48          1st Quarter             1
## 1654          TRUE              50          1st Quarter             1
## 1655         FALSE              51          1st Quarter             1
## 1656          TRUE              53          1st Quarter             1
## 1657         FALSE              54          1st Quarter             1
## 1658          TRUE              55          1st Quarter             1
## 1659          TRUE              57          1st Quarter             1
## 1660         FALSE              58          1st Quarter             1
## 1661         FALSE              59          1st Quarter             1
## 1662         FALSE              61          1st Quarter             1
## 1663         FALSE              63          1st Quarter             1
## 1664         FALSE              64          1st Quarter             1
## 1665         FALSE              65          1st Quarter             1
## 1666         FALSE              66          1st Quarter             1
## 1667         FALSE              67          1st Quarter             1
## 1668         FALSE              68          1st Quarter             1
## 1669          TRUE              74          1st Quarter             1
## 1670          TRUE              75          1st Quarter             1
## 1671         FALSE              76          1st Quarter             1
## 1672          TRUE              77          1st Quarter             1
## 1673         FALSE              78          1st Quarter             1
## 1674          TRUE              79          1st Quarter             1
## 1675         FALSE              80          1st Quarter             1
## 1676          TRUE              81          1st Quarter             1
## 1677         FALSE              82          1st Quarter             1
## 1678         FALSE              83          1st Quarter             1
## 1679          TRUE              85          1st Quarter             1
## 1680         FALSE              86          1st Quarter             1
## 1681         FALSE              87          1st Quarter             1
## 1682         FALSE              88          1st Quarter             1
## 1683         FALSE              89          1st Quarter             1
## 1684          TRUE              93          1st Quarter             1
## 1685          TRUE              95          1st Quarter             1
## 1686          TRUE              97          1st Quarter             1
## 1687          TRUE              99          1st Quarter             1
## 1688          TRUE             101          1st Quarter             1
## 1689         FALSE             102          1st Quarter             1
## 1690         FALSE             103          1st Quarter             1
## 1691         FALSE             105          1st Quarter             1
## 1692         FALSE             106          1st Quarter             1
## 1693         FALSE             109          1st Quarter             1
## 1694          TRUE             111          1st Quarter             1
## 1695         FALSE             112          1st Quarter             1
## 1696          TRUE             114          1st Quarter             1
## 1697         FALSE             115          1st Quarter             1
## 1698          TRUE             116          1st Quarter             1
## 1699          TRUE             118          1st Quarter             1
## 1700         FALSE             119          1st Quarter             1
## 1701          TRUE             120          1st Quarter             1
## 1702         FALSE             121          1st Quarter             1
## 1703         FALSE             122          1st Quarter             1
## 1704         FALSE             123          2nd Quarter             2
## 1705         FALSE             124          2nd Quarter             2
## 1706         FALSE             128          2nd Quarter             2
## 1707          TRUE             130          2nd Quarter             2
## 1708         FALSE             131          2nd Quarter             2
## 1709         FALSE             132          2nd Quarter             2
## 1710          TRUE             134          2nd Quarter             2
## 1711          TRUE             135          2nd Quarter             2
## 1712          TRUE             136          2nd Quarter             2
## 1713         FALSE             137          2nd Quarter             2
## 1714          TRUE             138          2nd Quarter             2
## 1715          TRUE             140          2nd Quarter             2
## 1716         FALSE             141          2nd Quarter             2
## 1717          TRUE             142          2nd Quarter             2
## 1718         FALSE             144          2nd Quarter             2
## 1719         FALSE             146          2nd Quarter             2
## 1720         FALSE             147          2nd Quarter             2
## 1721         FALSE             150          2nd Quarter             2
## 1722          TRUE             152          2nd Quarter             2
## 1723         FALSE             153          2nd Quarter             2
## 1724          TRUE             154          2nd Quarter             2
## 1725         FALSE             155          2nd Quarter             2
## 1726         FALSE             157          2nd Quarter             2
## 1727          TRUE             159          2nd Quarter             2
## 1728          TRUE             161          2nd Quarter             2
## 1729         FALSE             162          2nd Quarter             2
## 1730          TRUE             163          2nd Quarter             2
## 1731         FALSE             164          2nd Quarter             2
## 1732          TRUE             165          2nd Quarter             2
## 1733         FALSE             166          2nd Quarter             2
## 1734          TRUE             167          2nd Quarter             2
## 1735         FALSE             168          2nd Quarter             2
## 1736          TRUE             169          2nd Quarter             2
## 1737         FALSE             170          2nd Quarter             2
## 1738          TRUE             171          2nd Quarter             2
## 1739         FALSE             172          2nd Quarter             2
## 1740          TRUE             173          2nd Quarter             2
## 1741         FALSE             174          2nd Quarter             2
## 1742         FALSE             176          2nd Quarter             2
## 1743         FALSE             177          2nd Quarter             2
## 1744          TRUE             180          2nd Quarter             2
## 1745         FALSE             181          2nd Quarter             2
## 1746          TRUE             183          2nd Quarter             2
## 1747          TRUE             184          2nd Quarter             2
## 1748         FALSE             185          2nd Quarter             2
## 1749         FALSE             187          2nd Quarter             2
## 1750          TRUE             189          2nd Quarter             2
## 1751         FALSE             190          2nd Quarter             2
## 1752          TRUE             192          2nd Quarter             2
## 1753          TRUE             193          2nd Quarter             2
## 1754         FALSE             194          2nd Quarter             2
## 1755         FALSE             195          2nd Quarter             2
## 1756         FALSE             197          2nd Quarter             2
## 1757          TRUE             199          2nd Quarter             2
## 1758         FALSE             200          2nd Quarter             2
## 1759          TRUE             201          2nd Quarter             2
## 1760         FALSE             202          2nd Quarter             2
## 1761          TRUE             203          2nd Quarter             2
## 1762         FALSE             204          2nd Quarter             2
## 1763         FALSE             205          2nd Quarter             2
## 1764          TRUE             207          2nd Quarter             2
## 1765          TRUE             208          2nd Quarter             2
## 1766          TRUE             209          2nd Quarter             2
## 1767         FALSE             211          2nd Quarter             2
## 1768          TRUE             212          2nd Quarter             2
## 1769          TRUE             214          2nd Quarter             2
## 1770         FALSE             215          2nd Quarter             2
## 1771          TRUE             216          2nd Quarter             2
## 1772         FALSE             218          2nd Quarter             2
## 1773          TRUE             219          2nd Quarter             2
## 1774         FALSE             220          2nd Quarter             2
## 1775         FALSE             221          2nd Quarter             2
## 1776         FALSE             223          2nd Quarter             2
## 1777         FALSE             224          2nd Quarter             2
## 1778          TRUE             226          2nd Quarter             2
## 1779         FALSE             228          2nd Quarter             2
## 1780          TRUE             230          2nd Quarter             2
## 1781         FALSE             231          2nd Quarter             2
## 1782          TRUE             233          2nd Quarter             2
## 1783         FALSE             234          2nd Quarter             2
## 1784         FALSE             236          2nd Quarter             2
## 1785         FALSE             238          2nd Quarter             2
## 1786          TRUE             240          2nd Quarter             2
## 1787          TRUE             241          2nd Quarter             2
## 1788         FALSE             242          2nd Quarter             2
## 1789          TRUE             244          2nd Quarter             2
## 1790         FALSE             245          2nd Quarter             2
## 1791         FALSE             246          2nd Quarter             2
## 1792         FALSE             248          2nd Quarter             2
## 1793          TRUE             250          2nd Quarter             2
## 1794         FALSE             251          2nd Quarter             2
## 1795          TRUE             253          2nd Quarter             2
## 1796          TRUE             254          2nd Quarter             2
## 1797         FALSE             255          2nd Quarter             2
## 1798          TRUE             256          2nd Quarter             2
## 1799         FALSE             257          2nd Quarter             2
## 1800          TRUE             258          2nd Quarter             2
## 1801         FALSE             259          2nd Quarter             2
## 1802         FALSE             261          2nd Quarter             2
## 1803          TRUE             263          2nd Quarter             2
## 1804         FALSE             264          2nd Quarter             2
## 1805          TRUE             265          2nd Quarter             2
## 1806         FALSE             266          2nd Quarter             2
## 1807          TRUE             267          2nd Quarter             2
## 1808         FALSE             268          2nd Quarter             2
## 1809          TRUE             269          2nd Quarter             2
## 1810         FALSE             270          2nd Quarter             2
## 1811         FALSE             271          2nd Quarter             2
## 1812          TRUE             273          2nd Quarter             2
## 1813         FALSE             274          2nd Quarter             2
## 1814         FALSE             275          2nd Quarter             2
## 1815          TRUE             277          2nd Quarter             2
## 1816          TRUE             278          2nd Quarter             2
## 1817         FALSE             279          2nd Quarter             2
## 1818         FALSE             280          2nd Quarter             2
## 1819          TRUE             282          2nd Quarter             2
## 1820         FALSE             283          2nd Quarter             2
## 1821          TRUE             284          2nd Quarter             2
## 1822         FALSE             285          2nd Quarter             2
## 1823          TRUE             286          2nd Quarter             2
## 1824         FALSE             288          2nd Quarter             2
## 1825         FALSE             290          2nd Quarter             2
## 1826         FALSE             292          2nd Quarter             2
## 1827          TRUE             294          2nd Quarter             2
## 1828         FALSE             295          2nd Quarter             2
## 1829         FALSE             296          2nd Quarter             2
## 1830         FALSE             297          2nd Quarter             2
## 1831         FALSE             300          2nd Quarter             2
## 1832          TRUE             302          2nd Quarter             2
## 1833          TRUE             303          2nd Quarter             2
## 1834          TRUE             304          2nd Quarter             2
## 1835         FALSE             305          2nd Quarter             2
## 1836         FALSE             306          2nd Quarter             2
## 1837         FALSE             307          3rd Quarter             3
## 1838         FALSE             308          3rd Quarter             3
## 1839         FALSE             309          3rd Quarter             3
## 1840          TRUE             314          3rd Quarter             3
## 1841         FALSE             316          3rd Quarter             3
## 1842          TRUE             318          3rd Quarter             3
## 1843         FALSE             319          3rd Quarter             3
## 1844          TRUE             320          3rd Quarter             3
## 1845         FALSE             321          3rd Quarter             3
## 1846          TRUE             322          3rd Quarter             3
## 1847         FALSE             323          3rd Quarter             3
## 1848          TRUE             324          3rd Quarter             3
## 1849          TRUE             325          3rd Quarter             3
## 1850         FALSE             326          3rd Quarter             3
## 1851          TRUE             328          3rd Quarter             3
## 1852         FALSE             329          3rd Quarter             3
## 1853         FALSE             330          3rd Quarter             3
## 1854         FALSE             332          3rd Quarter             3
## 1855          TRUE             334          3rd Quarter             3
## 1856         FALSE             335          3rd Quarter             3
## 1857         FALSE             336          3rd Quarter             3
## 1858          TRUE             338          3rd Quarter             3
## 1859         FALSE             339          3rd Quarter             3
## 1860          TRUE             340          3rd Quarter             3
## 1861          TRUE             341          3rd Quarter             3
## 1862         FALSE             342          3rd Quarter             3
## 1863         FALSE             343          3rd Quarter             3
## 1864         FALSE             345          3rd Quarter             3
## 1865         FALSE             346          3rd Quarter             3
## 1866          TRUE             349          3rd Quarter             3
## 1867         FALSE             351          3rd Quarter             3
## 1868          TRUE             352          3rd Quarter             3
## 1869         FALSE             353          3rd Quarter             3
## 1870         FALSE             355          3rd Quarter             3
## 1871          TRUE             357          3rd Quarter             3
## 1872         FALSE             359          3rd Quarter             3
## 1873          TRUE             360          3rd Quarter             3
## 1874         FALSE             361          3rd Quarter             3
## 1875         FALSE             362          3rd Quarter             3
## 1876         FALSE             364          3rd Quarter             3
## 1877         FALSE             365          3rd Quarter             3
## 1878         FALSE             367          3rd Quarter             3
## 1879          TRUE             369          3rd Quarter             3
## 1880         FALSE             370          3rd Quarter             3
## 1881         FALSE             371          3rd Quarter             3
## 1882         FALSE             373          3rd Quarter             3
## 1883          TRUE             375          3rd Quarter             3
## 1884         FALSE             376          3rd Quarter             3
## 1885          TRUE             377          3rd Quarter             3
## 1886         FALSE             378          3rd Quarter             3
## 1887         FALSE             379          3rd Quarter             3
## 1888          TRUE             381          3rd Quarter             3
## 1889         FALSE             382          3rd Quarter             3
## 1890          TRUE             384          3rd Quarter             3
## 1891          TRUE             385          3rd Quarter             3
## 1892         FALSE             386          3rd Quarter             3
## 1893          TRUE             387          3rd Quarter             3
## 1894         FALSE             389          3rd Quarter             3
## 1895         FALSE             390          3rd Quarter             3
## 1896          TRUE             392          3rd Quarter             3
## 1897          TRUE             393          3rd Quarter             3
## 1898          TRUE             394          3rd Quarter             3
## 1899         FALSE             395          3rd Quarter             3
## 1900         FALSE             396          3rd Quarter             3
## 1901         FALSE             398          3rd Quarter             3
## 1902         FALSE             551          3rd Quarter             3
## 1903         FALSE             404          3rd Quarter             3
## 1904          TRUE             406          3rd Quarter             3
## 1905          TRUE             408          3rd Quarter             3
## 1906         FALSE             409          3rd Quarter             3
## 1907         FALSE             410          3rd Quarter             3
## 1908         FALSE             412          3rd Quarter             3
## 1909         FALSE             413          3rd Quarter             3
## 1910          TRUE             414          3rd Quarter             3
## 1911         FALSE             415          3rd Quarter             3
## 1912         FALSE             416          3rd Quarter             3
## 1913         FALSE             418          3rd Quarter             3
## 1914          TRUE             419          3rd Quarter             3
## 1915         FALSE             420          3rd Quarter             3
## 1916          TRUE             421          3rd Quarter             3
## 1917         FALSE             422          3rd Quarter             3
## 1918          TRUE             423          3rd Quarter             3
## 1919          TRUE             425          3rd Quarter             3
## 1920          TRUE             427          3rd Quarter             3
## 1921         FALSE             428          3rd Quarter             3
## 1922          TRUE             429          3rd Quarter             3
## 1923          TRUE             431          3rd Quarter             3
## 1924         FALSE             432          3rd Quarter             3
## 1925          TRUE             433          3rd Quarter             3
## 1926         FALSE             434          3rd Quarter             3
## 1927          TRUE             435          3rd Quarter             3
## 1928         FALSE             436          3rd Quarter             3
## 1929          TRUE             437          3rd Quarter             3
## 1930         FALSE             438          3rd Quarter             3
## 1931         FALSE             439          3rd Quarter             3
## 1932         FALSE             440          4th Quarter             4
## 1933         FALSE             441          4th Quarter             4
## 1934         FALSE             442          4th Quarter             4
## 1935         FALSE             443          4th Quarter             4
## 1936         FALSE             444          4th Quarter             4
## 1937         FALSE             445          4th Quarter             4
## 1938         FALSE             446          4th Quarter             4
## 1939          TRUE             455          4th Quarter             4
## 1940         FALSE             457          4th Quarter             4
## 1941          TRUE             459          4th Quarter             4
## 1942         FALSE             460          4th Quarter             4
## 1943         FALSE             461          4th Quarter             4
## 1944          TRUE             463          4th Quarter             4
## 1945         FALSE             465          4th Quarter             4
## 1946          TRUE             467          4th Quarter             4
## 1947          TRUE             469          4th Quarter             4
## 1948         FALSE             470          4th Quarter             4
## 1949          TRUE             471          4th Quarter             4
## 1950         FALSE             472          4th Quarter             4
## 1951         FALSE             473          4th Quarter             4
## 1952          TRUE             475          4th Quarter             4
## 1953         FALSE             476          4th Quarter             4
## 1954          TRUE             477          4th Quarter             4
## 1955          TRUE             478          4th Quarter             4
## 1956         FALSE             479          4th Quarter             4
## 1957         FALSE             480          4th Quarter             4
## 1958          TRUE             482          4th Quarter             4
## 1959          TRUE             484          4th Quarter             4
## 1960          TRUE             486          4th Quarter             4
## 1961         FALSE             487          4th Quarter             4
## 1962         FALSE             489          4th Quarter             4
## 1963         FALSE             490          4th Quarter             4
## 1964         FALSE             491          4th Quarter             4
## 1965          TRUE             495          4th Quarter             4
## 1966         FALSE             496          4th Quarter             4
## 1967          TRUE             498          4th Quarter             4
## 1968         FALSE             499          4th Quarter             4
## 1969          TRUE             500          4th Quarter             4
## 1970         FALSE             501          4th Quarter             4
## 1971         FALSE             502          4th Quarter             4
## 1972         FALSE             504          4th Quarter             4
## 1973         FALSE             509          4th Quarter             4
## 1974         FALSE             510          4th Quarter             4
## 1975         FALSE             511          4th Quarter             4
## 1976          TRUE             515          4th Quarter             4
## 1977          TRUE             516          4th Quarter             4
## 1978          TRUE             517          4th Quarter             4
## 1979         FALSE             518          4th Quarter             4
## 1980         FALSE             519          4th Quarter             4
## 1981          TRUE             521          4th Quarter             4
## 1982         FALSE             522          4th Quarter             4
## 1983         FALSE             523          4th Quarter             4
## 1984          TRUE             525          4th Quarter             4
## 1985         FALSE             526          4th Quarter             4
## 1986         FALSE             527          4th Quarter             4
## 1987          TRUE             530          4th Quarter             4
## 1988          TRUE             531          4th Quarter             4
## 1989         FALSE             533          4th Quarter             4
## 1990          TRUE             535          4th Quarter             4
## 1991          TRUE             536          4th Quarter             4
## 1992         FALSE             537          4th Quarter             4
## 1993         FALSE             538          4th Quarter             4
## 1994         FALSE             540          4th Quarter             4
## 1995         FALSE             542          4th Quarter             4
## 1996         FALSE             543          4th Quarter             4
## 1997          TRUE             545          4th Quarter             4
## 1998          TRUE             547          4th Quarter             4
## 1999         FALSE             548          4th Quarter             4
## 2000         FALSE             550          4th Quarter             4
## 2001         FALSE             553          4th Quarter             4
## 2002          TRUE             555          4th Quarter             4
## 2003         FALSE             556          4th Quarter             4
## 2004          TRUE             557          4th Quarter             4
## 2005         FALSE             558          4th Quarter             4
## 2006         FALSE             559          4th Quarter             4
## 2007          TRUE             561          4th Quarter             4
## 2008         FALSE             562          4th Quarter             4
## 2009         FALSE             563          4th Quarter             4
## 2010         FALSE             564          4th Quarter             4
## 2011         FALSE             565          4th Quarter             4
## 2012          TRUE             569          4th Quarter             4
## 2013          TRUE             570          4th Quarter             4
## 2014          TRUE             571          4th Quarter             4
## 2015         FALSE             572          4th Quarter             4
## 2016         FALSE             573          4th Quarter             4
## 2017          TRUE             575          4th Quarter             4
## 2018          TRUE             576          4th Quarter             4
## 2019          TRUE             577          4th Quarter             4
## 2020         FALSE             578          4th Quarter             4
## 2021          TRUE             579          4th Quarter             4
## 2022         FALSE             580          4th Quarter             4
## 2023         FALSE             582          4th Quarter             4
## 2024         FALSE             585          4th Quarter             4
## 2025          TRUE             587          4th Quarter             4
## 2026         FALSE             588          4th Quarter             4
## 2027          TRUE             589          4th Quarter             4
## 2028         FALSE             590          4th Quarter             4
## 2029          TRUE             591          4th Quarter             4
## 2030         FALSE             592          4th Quarter             4
## 2031          TRUE             593          4th Quarter             4
## 2032         FALSE             594          4th Quarter             4
## 2033         FALSE             595          4th Quarter             4
## 2034          TRUE             597          4th Quarter             4
## 2035         FALSE             598          4th Quarter             4
## 2036          TRUE             599          4th Quarter             4
## 2037         FALSE             600          4th Quarter             4
## 2038         FALSE             601          4th Quarter             4
## 2039         FALSE               4          1st Quarter             1
## 2040          TRUE               7          1st Quarter             1
## 2041         FALSE               8          1st Quarter             1
## 2042         FALSE               9          1st Quarter             1
## 2043          TRUE              11          1st Quarter             1
## 2044          TRUE              12          1st Quarter             1
## 2045          TRUE              13          1st Quarter             1
## 2046         FALSE              14          1st Quarter             1
## 2047          TRUE              15          1st Quarter             1
## 2048         FALSE              16          1st Quarter             1
## 2049         FALSE              17          1st Quarter             1
## 2050          TRUE              20          1st Quarter             1
## 2051          TRUE              22          1st Quarter             1
## 2052         FALSE              23          1st Quarter             1
## 2053          TRUE              24          1st Quarter             1
## 2054          TRUE              26          1st Quarter             1
## 2055          TRUE              28          1st Quarter             1
## 2056         FALSE              29          1st Quarter             1
## 2057          TRUE              30          1st Quarter             1
## 2058         FALSE              31          1st Quarter             1
## 2059          TRUE              32          1st Quarter             1
## 2060         FALSE              34          1st Quarter             1
## 2061          TRUE              35          1st Quarter             1
## 2062          TRUE              36          1st Quarter             1
## 2063         FALSE              37          1st Quarter             1
## 2064          TRUE              38          1st Quarter             1
## 2065         FALSE              39          1st Quarter             1
## 2066          TRUE              40          1st Quarter             1
## 2067         FALSE              41          1st Quarter             1
## 2068          TRUE              43          1st Quarter             1
## 2069         FALSE              44          1st Quarter             1
## 2070          TRUE              46          1st Quarter             1
## 2071          TRUE              47          1st Quarter             1
## 2072          TRUE              49          1st Quarter             1
## 2073         FALSE              50          1st Quarter             1
## 2074          TRUE              51          1st Quarter             1
## 2075         FALSE              52          1st Quarter             1
## 2076          TRUE              53          1st Quarter             1
## 2077         FALSE              54          1st Quarter             1
## 2078          TRUE              55          1st Quarter             1
## 2079         FALSE              56          1st Quarter             1
## 2080          TRUE              57          1st Quarter             1
## 2081          TRUE              59          1st Quarter             1
## 2082         FALSE              60          1st Quarter             1
## 2083         FALSE              61          1st Quarter             1
## 2084          TRUE              63          1st Quarter             1
## 2085          TRUE              64          1st Quarter             1
## 2086          TRUE              66          1st Quarter             1
## 2087          TRUE              67          1st Quarter             1
## 2088         FALSE              68          1st Quarter             1
## 2089          TRUE              69          1st Quarter             1
## 2090          TRUE              71          1st Quarter             1
## 2091          TRUE              72          1st Quarter             1
## 2092          TRUE              73          1st Quarter             1
## 2093         FALSE              74          1st Quarter             1
## 2094          TRUE              75          1st Quarter             1
## 2095         FALSE              76          1st Quarter             1
## 2096         FALSE              78          1st Quarter             1
## 2097         FALSE              79          1st Quarter             1
## 2098         FALSE              80          1st Quarter             1
## 2099         FALSE              81          1st Quarter             1
## 2100         FALSE              82          1st Quarter             1
## 2101         FALSE              83          1st Quarter             1
## 2102          TRUE              89          1st Quarter             1
## 2103          TRUE              90          1st Quarter             1
## 2104          TRUE              91          1st Quarter             1
## 2105         FALSE              92          1st Quarter             1
## 2106          TRUE              93          1st Quarter             1
## 2107         FALSE              96          1st Quarter             1
## 2108          TRUE              98          1st Quarter             1
## 2109          TRUE             100          1st Quarter             1
## 2110         FALSE             102          1st Quarter             1
## 2111         FALSE             103          1st Quarter             1
## 2112          TRUE             105          1st Quarter             1
## 2113          TRUE             106          1st Quarter             1
## 2114         FALSE             107          1st Quarter             1
## 2115          TRUE             108          1st Quarter             1
## 2116         FALSE             109          1st Quarter             1
## 2117         FALSE             110          1st Quarter             1
## 2118          TRUE             112          1st Quarter             1
## 2119          TRUE             114          1st Quarter             1
## 2120          TRUE             115          1st Quarter             1
## 2121         FALSE             117          1st Quarter             1
## 2122         FALSE             119          2nd Quarter             2
## 2123          TRUE             120          2nd Quarter             2
## 2124         FALSE             121          2nd Quarter             2
## 2125          TRUE             122          2nd Quarter             2
## 2126          TRUE             124          2nd Quarter             2
## 2127         FALSE             126          2nd Quarter             2
## 2128         FALSE             127          2nd Quarter             2
## 2129          TRUE             129          2nd Quarter             2
## 2130         FALSE             130          2nd Quarter             2
## 2131          TRUE             131          2nd Quarter             2
## 2132          TRUE             132          2nd Quarter             2
## 2133         FALSE             133          2nd Quarter             2
## 2134         FALSE             135          2nd Quarter             2
## 2135          TRUE             137          2nd Quarter             2
## 2136          TRUE             138          2nd Quarter             2
## 2137         FALSE             139          2nd Quarter             2
## 2138          TRUE             140          2nd Quarter             2
## 2139         FALSE             141          2nd Quarter             2
## 2140          TRUE             142          2nd Quarter             2
## 2141         FALSE             143          2nd Quarter             2
## 2142          TRUE             238          2nd Quarter             2
## 2143         FALSE             239          2nd Quarter             2
## 2144         FALSE             144          2nd Quarter             2
## 2145          TRUE             146          2nd Quarter             2
## 2146         FALSE             147          2nd Quarter             2
## 2147         FALSE             148          2nd Quarter             2
## 2148         FALSE             149          2nd Quarter             2
## 2149         FALSE             150          2nd Quarter             2
## 2150          TRUE             154          2nd Quarter             2
## 2151          TRUE             155          2nd Quarter             2
## 2152         FALSE             156          2nd Quarter             2
## 2153          TRUE             157          2nd Quarter             2
## 2154         FALSE             158          2nd Quarter             2
## 2155          TRUE             159          2nd Quarter             2
## 2156         FALSE             160          2nd Quarter             2
## 2157         FALSE             161          2nd Quarter             2
## 2158          TRUE             163          2nd Quarter             2
## 2159          TRUE             165          2nd Quarter             2
## 2160          TRUE             166          2nd Quarter             2
## 2161         FALSE             167          2nd Quarter             2
## 2162          TRUE             168          2nd Quarter             2
## 2163         FALSE             170          2nd Quarter             2
## 2164         FALSE             172          2nd Quarter             2
## 2165         FALSE             173          2nd Quarter             2
## 2166         FALSE             174          2nd Quarter             2
## 2167          TRUE             177          2nd Quarter             2
## 2168          TRUE             178          2nd Quarter             2
## 2169          TRUE             179          2nd Quarter             2
## 2170         FALSE             180          2nd Quarter             2
## 2171         FALSE             181          2nd Quarter             2
## 2172          TRUE             182          2nd Quarter             2
## 2173         FALSE             184          2nd Quarter             2
## 2174          TRUE             185          2nd Quarter             2
## 2175         FALSE             186          2nd Quarter             2
## 2176          TRUE             187          2nd Quarter             2
## 2177         FALSE             188          2nd Quarter             2
## 2178         FALSE             189          2nd Quarter             2
## 2179         FALSE             191          2nd Quarter             2
## 2180         FALSE             192          2nd Quarter             2
## 2181         FALSE             195          2nd Quarter             2
## 2182         FALSE             197          2nd Quarter             2
## 2183          TRUE             199          2nd Quarter             2
## 2184         FALSE             200          2nd Quarter             2
## 2185          TRUE             201          2nd Quarter             2
## 2186          TRUE             202          2nd Quarter             2
## 2187         FALSE             203          2nd Quarter             2
## 2188         FALSE             204          2nd Quarter             2
## 2189         FALSE             205          2nd Quarter             2
## 2190          TRUE             207          2nd Quarter             2
## 2191         FALSE             208          2nd Quarter             2
## 2192          TRUE             209          2nd Quarter             2
## 2193          TRUE             211          2nd Quarter             2
## 2194         FALSE             212          2nd Quarter             2
## 2195          TRUE             213          2nd Quarter             2
## 2196         FALSE             216          2nd Quarter             2
## 2197         FALSE             217          2nd Quarter             2
## 2198         FALSE             247          2nd Quarter             2
## 2199          TRUE             219          2nd Quarter             2
## 2200         FALSE             221          2nd Quarter             2
## 2201          TRUE             223          2nd Quarter             2
## 2202         FALSE             224          2nd Quarter             2
## 2203         FALSE             225          2nd Quarter             2
## 2204          TRUE             227          2nd Quarter             2
## 2205          TRUE             229          2nd Quarter             2
## 2206         FALSE             230          2nd Quarter             2
## 2207          TRUE             231          2nd Quarter             2
## 2208          TRUE             232          2nd Quarter             2
## 2209         FALSE             234          2nd Quarter             2
## 2210          TRUE             235          2nd Quarter             2
## 2211         FALSE             236          2nd Quarter             2
## 2212          TRUE             237          2nd Quarter             2
## 2213         FALSE             240          2nd Quarter             2
## 2214          TRUE             241          2nd Quarter             2
## 2215         FALSE             242          2nd Quarter             2
## 2216         FALSE             243          2nd Quarter             2
## 2217          TRUE             245          2nd Quarter             2
## 2218         FALSE             246          2nd Quarter             2
## 2219         FALSE             249          2nd Quarter             2
## 2220         FALSE             251          2nd Quarter             2
## 2221          TRUE             252          2nd Quarter             2
## 2222         FALSE             253          2nd Quarter             2
## 2223          TRUE             254          2nd Quarter             2
## 2224         FALSE             256          2nd Quarter             2
## 2225         FALSE             258          2nd Quarter             2
## 2226          TRUE             260          3rd Quarter             3
## 2227          TRUE             262          3rd Quarter             3
## 2228         FALSE             263          3rd Quarter             3
## 2229          TRUE             264          3rd Quarter             3
## 2230         FALSE             265          3rd Quarter             3
## 2231          TRUE             266          3rd Quarter             3
## 2232         FALSE             267          3rd Quarter             3
## 2233          TRUE             268          3rd Quarter             3
## 2234         FALSE             269          3rd Quarter             3
## 2235         FALSE             272          3rd Quarter             3
## 2236          TRUE             274          3rd Quarter             3
## 2237          TRUE             276          3rd Quarter             3
## 2238         FALSE             277          3rd Quarter             3
## 2239          TRUE             278          3rd Quarter             3
## 2240         FALSE             279          3rd Quarter             3
## 2241         FALSE             281          3rd Quarter             3
## 2242          TRUE             282          3rd Quarter             3
## 2243         FALSE             283          3rd Quarter             3
## 2244          TRUE             284          3rd Quarter             3
## 2245         FALSE             285          3rd Quarter             3
## 2246          TRUE             286          3rd Quarter             3
## 2247         FALSE             288          3rd Quarter             3
## 2248          TRUE             289          3rd Quarter             3
## 2249         FALSE             290          3rd Quarter             3
## 2250         FALSE             291          3rd Quarter             3
## 2251          TRUE             293          3rd Quarter             3
## 2252          TRUE             295          3rd Quarter             3
## 2253         FALSE             297          3rd Quarter             3
## 2254         FALSE             299          3rd Quarter             3
## 2255         FALSE             300          3rd Quarter             3
## 2256         FALSE             303          3rd Quarter             3
## 2257          TRUE             305          3rd Quarter             3
## 2258         FALSE             307          3rd Quarter             3
## 2259         FALSE             308          3rd Quarter             3
## 2260          TRUE             309          3rd Quarter             3
## 2261         FALSE             311          3rd Quarter             3
## 2262          TRUE             313          3rd Quarter             3
## 2263         FALSE             314          3rd Quarter             3
## 2264          TRUE             315          3rd Quarter             3
## 2265          TRUE             316          3rd Quarter             3
## 2266         FALSE             317          3rd Quarter             3
## 2267         FALSE             318          3rd Quarter             3
## 2268          TRUE             320          3rd Quarter             3
## 2269         FALSE             321          3rd Quarter             3
## 2270          TRUE             323          3rd Quarter             3
## 2271         FALSE             324          3rd Quarter             3
## 2272          TRUE             326          3rd Quarter             3
## 2273         FALSE             327          3rd Quarter             3
## 2274         FALSE             329          3rd Quarter             3
## 2275          TRUE             331          3rd Quarter             3
## 2276          TRUE             332          3rd Quarter             3
## 2277          TRUE             333          3rd Quarter             3
## 2278         FALSE             335          3rd Quarter             3
## 2279         FALSE             336          3rd Quarter             3
## 2280         FALSE             337          3rd Quarter             3
## 2281          TRUE             340          3rd Quarter             3
## 2282          TRUE             343          3rd Quarter             3
## 2283          TRUE             345          3rd Quarter             3
## 2284         FALSE             346          3rd Quarter             3
## 2285         FALSE             347          3rd Quarter             3
## 2286          TRUE             349          3rd Quarter             3
## 2287         FALSE             350          3rd Quarter             3
## 2288          TRUE             351          3rd Quarter             3
## 2289          TRUE             353          3rd Quarter             3
## 2290         FALSE             354          3rd Quarter             3
## 2291         FALSE             355          3rd Quarter             3
## 2292          TRUE             357          3rd Quarter             3
## 2293          TRUE             358          3rd Quarter             3
## 2294          TRUE             359          3rd Quarter             3
## 2295         FALSE             360          3rd Quarter             3
## 2296          TRUE             361          3rd Quarter             3
## 2297         FALSE             362          3rd Quarter             3
## 2298          TRUE             363          3rd Quarter             3
## 2299         FALSE             364          3rd Quarter             3
## 2300          TRUE             365          3rd Quarter             3
## 2301         FALSE             366          3rd Quarter             3
## 2302          TRUE             367          3rd Quarter             3
## 2303          TRUE             369          3rd Quarter             3
## 2304         FALSE             370          3rd Quarter             3
## 2305          TRUE             371          3rd Quarter             3
## 2306         FALSE             375          3rd Quarter             3
## 2307          TRUE             378          3rd Quarter             3
## 2308         FALSE             379          3rd Quarter             3
## 2309         FALSE             380          3rd Quarter             3
## 2310          TRUE             382          3rd Quarter             3
## 2311         FALSE             383          3rd Quarter             3
## 2312         FALSE             374          3rd Quarter             3
## 2313         FALSE             385          3rd Quarter             3
## 2314         FALSE             386          4th Quarter             4
## 2315          TRUE             389          4th Quarter             4
## 2316          TRUE             391          4th Quarter             4
## 2317         FALSE             393          4th Quarter             4
## 2318         FALSE             394          4th Quarter             4
## 2319          TRUE             396          4th Quarter             4
## 2320         FALSE             397          4th Quarter             4
## 2321          TRUE             399          4th Quarter             4
## 2322          TRUE             400          4th Quarter             4
## 2323          TRUE             402          4th Quarter             4
## 2324         FALSE             403          4th Quarter             4
## 2325          TRUE             404          4th Quarter             4
## 2326          TRUE             407          4th Quarter             4
## 2327         FALSE             408          4th Quarter             4
## 2328          TRUE             409          4th Quarter             4
## 2329         FALSE             410          4th Quarter             4
## 2330         FALSE             411          4th Quarter             4
## 2331          TRUE             413          4th Quarter             4
## 2332         FALSE             414          4th Quarter             4
## 2333          TRUE             416          4th Quarter             4
## 2334          TRUE             417          4th Quarter             4
## 2335         FALSE             418          4th Quarter             4
## 2336          TRUE             419          4th Quarter             4
## 2337         FALSE             420          4th Quarter             4
## 2338          TRUE             421          4th Quarter             4
## 2339          TRUE             423          4th Quarter             4
## 2340         FALSE             425          4th Quarter             4
## 2341          TRUE             427          4th Quarter             4
## 2342          TRUE             428          4th Quarter             4
## 2343          TRUE             430          4th Quarter             4
## 2344         FALSE             431          4th Quarter             4
## 2345         FALSE             433          4th Quarter             4
## 2346         FALSE             434          4th Quarter             4
## 2347         FALSE             435          4th Quarter             4
## 2348         FALSE             436          4th Quarter             4
## 2349          TRUE             441          4th Quarter             4
## 2350         FALSE             443          4th Quarter             4
## 2351          TRUE             445          4th Quarter             4
## 2352         FALSE             446          4th Quarter             4
## 2353          TRUE             448          4th Quarter             4
## 2354         FALSE             449          4th Quarter             4
## 2355          TRUE             450          4th Quarter             4
## 2356         FALSE             451          4th Quarter             4
## 2357          TRUE             452          4th Quarter             4
## 2358         FALSE             453          4th Quarter             4
## 2359         FALSE             455          4th Quarter             4
## 2360          TRUE             456          4th Quarter             4
## 2361         FALSE             457          4th Quarter             4
## 2362          TRUE             458          4th Quarter             4
## 2363          TRUE             460          4th Quarter             4
## 2364          TRUE             463          4th Quarter             4
## 2365          TRUE             465          4th Quarter             4
## 2366         FALSE             466          4th Quarter             4
## 2367         FALSE             467          4th Quarter             4
## 2368         FALSE             469          4th Quarter             4
## 2369         FALSE             470          4th Quarter             4
## 2370          TRUE             472          4th Quarter             4
## 2371          TRUE             473          4th Quarter             4
## 2372         FALSE             474          4th Quarter             4
## 2373          TRUE             475          4th Quarter             4
## 2374         FALSE             476          4th Quarter             4
## 2375          TRUE             477          4th Quarter             4
## 2376         FALSE             479          4th Quarter             4
## 2377          TRUE             480          4th Quarter             4
## 2378          TRUE             482          4th Quarter             4
## 2379          TRUE             484          4th Quarter             4
## 2380         FALSE             485          4th Quarter             4
##      home_score coordinate_x coordinate_y scoring_play clock_display_value
## 1             0   -214748340   -214748365        FALSE               10:00
## 2             0           27            2        FALSE                9:37
## 3             0           27            2        FALSE                9:36
## 4             0           37           13        FALSE                9:16
## 5             0           37           13        FALSE                9:15
## 6             0           18            7        FALSE                9:04
## 7             3           41           20         TRUE                8:47
## 8             3           35            2        FALSE                8:23
## 9             3           35            2        FALSE                8:21
## 10            3           27           25        FALSE                8:18
## 11            3           27           25        FALSE                8:18
## 12            6           10           22         TRUE                8:05
## 13            6            2            8        FALSE                7:51
## 14            6            2            8        FALSE                7:47
## 15            6           14           23        FALSE                7:36
## 16            6           23            3         TRUE                7:31
## 17            8           13           13         TRUE                7:12
## 18            8           22           17         TRUE                6:58
## 19            8           14           13        FALSE                6:36
## 20            9   -214748340   -214748365         TRUE                6:36
## 21           10   -214748340   -214748365         TRUE                6:36
## 22           10           27           16        FALSE                6:26
## 23           10           27           16        FALSE                6:23
## 24           10           25            4         TRUE                6:22
## 25           10           31           19        FALSE                6:08
## 26           10           31           19        FALSE                6:05
## 27           10           16            9         TRUE                6:02
## 28           10           26            9        FALSE                5:47
## 29           10           24            2         TRUE                5:42
## 30           10           39           21        FALSE                5:28
## 31           10           39           21        FALSE                5:26
## 32           10           25            3         TRUE                5:18
## 33           13            6           16         TRUE                5:04
## 34           13           25            7        FALSE                4:38
## 35           13           25            7        FALSE                4:35
## 36           15           26            3         TRUE                4:30
## 37           15           24            3        FALSE                4:12
## 38           15           24            3        FALSE                4:09
## 39           15           29           20        FALSE                4:00
## 40           15           29           20        FALSE                3:57
## 41           15           41           18        FALSE                3:51
## 42           15           41           18        FALSE                3:47
## 43           15           34           25        FALSE                3:46
## 44           15   -214748340   -214748365        FALSE                3:46
## 45           15   -214748340   -214748365        FALSE                3:46
## 46           15   -214748340   -214748365        FALSE                3:46
## 47           15   -214748340   -214748365        FALSE                3:46
## 48           15   -214748340   -214748365        FALSE                3:46
## 49           15   -214748340   -214748365        FALSE                3:46
## 50           18           37           23         TRUE                3:41
## 51           18           18           19        FALSE                3:26
## 52           18           18           19        FALSE                3:22
## 53           18           26            3        FALSE                3:19
## 54           19   -214748340   -214748365         TRUE                3:19
## 55           20   -214748340   -214748365         TRUE                3:19
## 56           20           47            8        FALSE                3:06
## 57           20           47            8        FALSE                3:04
## 58           20           25            3        FALSE                3:04
## 59           20           25            3        FALSE                3:03
## 60           20           26            2        FALSE                3:03
## 61           20           26            2        FALSE                3:02
## 62           20           35           23        FALSE                2:56
## 63           20           35           23        FALSE                2:53
## 64           23            8           18         TRUE                2:49
## 65           23           12           22        FALSE                2:33
## 66           23           12           22        FALSE                2:32
## 67           23           24            7        FALSE                2:32
## 68           23           25            3         TRUE                2:27
## 69           23           36           18        FALSE                2:17
## 70           23           36           18        FALSE                2:13
## 71           23           26            3        FALSE                2:03
## 72           23           26            3        FALSE                2:03
## 73           23           26            5        FALSE                2:03
## 74           23   -214748340   -214748365         TRUE                2:03
## 75           23   -214748340   -214748365         TRUE                2:03
## 76           23   -214748340   -214748365        FALSE                2:03
## 77           23   -214748340   -214748365        FALSE                2:03
## 78           23   -214748340   -214748365        FALSE                2:03
## 79           23           30           14        FALSE                1:55
## 80           23           30           14        FALSE                1:55
## 81           23           28           18        FALSE                1:48
## 82           23           37           22         TRUE                1:42
## 83           26           29           25         TRUE                1:30
## 84           26           23            3        FALSE                1:14
## 85           26           23            3        FALSE                1:14
## 86           26           36           23        FALSE                1:07
## 87           26           36           23        FALSE                1:04
## 88           26           18            5         TRUE                53.8
## 89           26           34           23        FALSE                39.8
## 90           26           34           23        FALSE                37.3
## 91           26           30           19        FALSE                30.4
## 92           26           30           19        FALSE                29.1
## 93           26           25           10        FALSE                17.3
## 94           26           28            9        FALSE                 4.1
## 95           26   -214748340   -214748365        FALSE                 0.0
## 96           26   -214748340   -214748365        FALSE                 0.0
## 97           26   -214748340   -214748365        FALSE               10:00
## 98           26   -214748340   -214748365        FALSE               10:00
## 99           26           28            6        FALSE                9:47
## 100          26           16           23        FALSE                9:40
## 101          26           15           22         TRUE                9:27
## 102          26           26            5        FALSE                9:15
## 103          26   -214748340   -214748365        FALSE                9:15
## 104          26           18            9        FALSE                9:03
## 105          26           14           16        FALSE                8:57
## 106          26           14           16        FALSE                8:52
## 107          26           25            6        FALSE                8:51
## 108          26           37           23        FALSE                8:38
## 109          26           37           23        FALSE                8:34
## 110          26           23            3         TRUE                8:27
## 111          26           23            3        FALSE                8:27
## 112          26   -214748340   -214748365        FALSE                8:27
## 113          26   -214748340   -214748365        FALSE                8:27
## 114          26   -214748340   -214748365        FALSE                8:27
## 115          26   -214748340   -214748365         TRUE                8:27
## 116          26           24            6        FALSE                8:19
## 117          26           24            6        FALSE                8:19
## 118          26           23            4        FALSE                8:02
## 119          26           23            4        FALSE                8:00
## 120          26           25            3         TRUE                7:58
## 121          26           28            6        FALSE                7:46
## 122          27   -214748340   -214748365         TRUE                7:46
## 123          28   -214748340   -214748365         TRUE                7:46
## 124          28           23            4        FALSE                7:22
## 125          28           23            4        FALSE                7:19
## 126          30           24            4         TRUE                7:07
## 127          30           38           20        FALSE                6:55
## 128          30           38           20        FALSE                6:51
## 129          30           28           16        FALSE                6:46
## 130          30           28           16        FALSE                6:43
## 131          30           26            3        FALSE                6:39
## 132          30           26            3        FALSE                6:37
## 133          30   -214748340   -214748365        FALSE                6:37
## 134          30   -214748340   -214748365        FALSE                6:37
## 135          30   -214748340   -214748365        FALSE                6:37
## 136          30   -214748340   -214748365        FALSE                6:37
## 137          30   -214748340   -214748365        FALSE                6:37
## 138          33           14           22         TRUE                6:30
## 139          33           36           13         TRUE                6:17
## 140          33           34           25        FALSE                6:06
## 141          33           34           25        FALSE                6:02
## 142          33           23            5        FALSE                5:52
## 143          33           23            5        FALSE                5:49
## 144          33           19            9        FALSE                5:33
## 145          33           19            9        FALSE                5:31
## 146          33           24            5        FALSE                5:29
## 147          33           24            5        FALSE                5:27
## 148          33           16           15         TRUE                5:19
## 149          33           27           10        FALSE                5:03
## 150          33           27           10        FALSE                5:00
## 151          33            2            4        FALSE                4:52
## 152          33            2            4        FALSE                4:49
## 153          33           29            8        FALSE                4:46
## 154          33   -214748340   -214748365        FALSE                4:46
## 155          36            2            8         TRUE                4:35
## 156          36           25            9        FALSE                4:17
## 157          36           25            9        FALSE                4:17
## 158          36           22           10        FALSE                4:06
## 159          36   -214748340   -214748365        FALSE                4:06
## 160          36           13           13        FALSE                3:59
## 161          36           13           13        FALSE                3:55
## 162          36           44           15         TRUE                3:50
## 163          36           12            9        FALSE                3:38
## 164          36           12            9        FALSE                3:35
## 165          36           18           18        FALSE                3:31
## 166          36           18           18        FALSE                3:27
## 167          38           24            3         TRUE                3:22
## 168          38           26            3         TRUE                3:02
## 169          40           24            4         TRUE                2:45
## 170          40           30            4         TRUE                2:29
## 171          40           35           23        FALSE                2:14
## 172          40           35           23        FALSE                2:12
## 173          40           26            3        FALSE                2:03
## 174          40   -214748340   -214748365        FALSE                2:03
## 175          40   -214748340   -214748365         TRUE                2:03
## 176          40   -214748340   -214748365         TRUE                2:03
## 177          43            3            8         TRUE                1:50
## 178          43           13           21        FALSE                1:35
## 179          43           13           21        FALSE                1:34
## 180          43           25            4        FALSE                1:34
## 181          43           23            3         TRUE                1:30
## 182          43           22            4        FALSE                1:12
## 183          43           27            5        FALSE                1:02
## 184          43   -214748340   -214748365         TRUE                1:02
## 185          43   -214748340   -214748365        FALSE                1:02
## 186          43   -214748340   -214748365        FALSE                1:00
## 187          43           47            8        FALSE                50.1
## 188          43           47            8        FALSE                48.5
## 189          45           36           15         TRUE                42.2
## 190          45           26            2         TRUE                31.2
## 191          45           20            3        FALSE                19.0
## 192          46   -214748340   -214748365         TRUE                19.0
## 193          46   -214748340   -214748365        FALSE                19.0
## 194          47   -214748340   -214748365         TRUE                19.0
## 195          47           25            5        FALSE                 1.5
## 196          47           25            5        FALSE                 0.1
## 197          47   -214748340   -214748365        FALSE                 0.0
## 198          47   -214748340   -214748365        FALSE               10:00
## 199          47   -214748340   -214748365        FALSE               10:00
## 200          47           17           21        FALSE                9:44
## 201          47           17           21        FALSE                9:41
## 202          50           14           22         TRUE                9:37
## 203          50           13           22        FALSE                9:18
## 204          50           13           22        FALSE                9:17
## 205          52           26            2         TRUE                9:11
## 206          52           27            7        FALSE                8:55
## 207          52           27            7        FALSE                8:53
## 208          52           25            3        FALSE                8:52
## 209          52           25            3        FALSE                8:50
## 210          52           24            4         TRUE                8:49
## 211          52           21            5        FALSE                8:41
## 212          52           21            5        FALSE                8:38
## 213          52           10           38        FALSE                8:36
## 214          52           32            4        FALSE                8:26
## 215          52           32            4        FALSE                8:22
## 216          52           29            4        FALSE                8:02
## 217          52           29            4        FALSE                7:59
## 218          54           29            5         TRUE                7:52
## 219          54           27            3         TRUE                7:29
## 220          54           24            4        FALSE                7:22
## 221          56           24            3         TRUE                7:14
## 222          56   -214748340   -214748365        FALSE                7:11
## 223          56           29           25        FALSE                6:58
## 224          56           29           25        FALSE                6:54
## 225          56           21            7        FALSE                6:52
## 226          56           21            7        FALSE                6:52
## 227          56           25            4         TRUE                6:50
## 228          56   -214748340   -214748365        FALSE                6:50
## 229          56           19            7        FALSE                6:39
## 230          56           19            7        FALSE                6:36
## 231          56           36           14        FALSE                6:19
## 232          56           36           14        FALSE                6:15
## 233          56           25            4        FALSE                6:15
## 234          59            4           10         TRUE                6:00
## 235          59           40           13         TRUE                5:42
## 236          61           25            3         TRUE                5:26
## 237          61           25            3        FALSE                5:26
## 238          62   -214748340   -214748365         TRUE                5:26
## 239          62           25            8         TRUE                5:11
## 240          62           23            2        FALSE                4:48
## 241          62           23            2        FALSE                4:47
## 242          62           26            4         TRUE                4:43
## 243          62           26            4        FALSE                4:43
## 244          62   -214748340   -214748365        FALSE                4:43
## 245          62   -214748340   -214748365         TRUE                4:43
## 246          62           23            3        FALSE                4:28
## 247          62           23            3        FALSE                4:24
## 248          62           42            2        FALSE                4:22
## 249          62            9           19        FALSE                4:06
## 250          62            9           19        FALSE                4:05
## 251          62           15           17        FALSE                3:53
## 252          62           15           17        FALSE                3:51
## 253          62           24            3         TRUE                3:48
## 254          62           24           10        FALSE                3:34
## 255          62           24           10        FALSE                3:31
## 256          62           26            3        FALSE                3:25
## 257          62           26            3        FALSE                3:23
## 258          62           24            3        FALSE                3:20
## 259          62           24            3        FALSE                3:18
## 260          62           32           33        FALSE                3:13
## 261          62   -214748340   -214748365        FALSE                3:13
## 262          62   -214748340   -214748365        FALSE                3:13
## 263          62           35           22        FALSE                3:03
## 264          62           35           22        FALSE                3:01
## 265          62           25            4        FALSE                3:01
## 266          62   -214748340   -214748365        FALSE                2:49
## 267          62           36           10        FALSE                2:42
## 268          64           16            4         TRUE                2:30
## 269          64           37           23        FALSE                2:20
## 270          64           37           23        FALSE                2:19
## 271          64           18            7        FALSE                2:14
## 272          64           18            7        FALSE                2:09
## 273          64   -214748340   -214748365        FALSE                2:09
## 274          64           21            6        FALSE                1:45
## 275          64           21            6        FALSE                1:41
## 276          66           26            3         TRUE                1:36
## 277          66           26            3         TRUE                1:17
## 278          66           25            3        FALSE                1:15
## 279          66   -214748340   -214748365        FALSE                1:15
## 280          66           28           16        FALSE                1:02
## 281          66           28           16        FALSE                59.8
## 282          66           24            8        FALSE                58.0
## 283          68           13           14         TRUE                44.4
## 284          68           35           11        FALSE                30.0
## 285          68           35           11        FALSE                27.3
## 286          68           13            5        FALSE                16.8
## 287          68           13            5        FALSE                16.8
## 288          68           26           21        FALSE                 2.3
## 289          68           26           21        FALSE                 1.1
## 290          68   -214748340   -214748365        FALSE                 0.0
## 291          68           30           13        FALSE                9:36
## 292          70           27           15         TRUE                9:15
## 293          70           25            8        FALSE                8:49
## 294          70           25            8        FALSE                8:47
## 295          70           21            6        FALSE                8:43
## 296          70           21            6        FALSE                8:43
## 297          70            2            8        FALSE                8:24
## 298          70            2            8        FALSE                8:21
## 299          72           18            4         TRUE                8:14
## 300          72   -214748340   -214748365        FALSE                8:12
## 301          72   -214748340   -214748365        FALSE                8:12
## 302          72           23            9        FALSE                7:57
## 303          72           23            9        FALSE                7:57
## 304          72           19            7        FALSE                7:42
## 305          72           19            7        FALSE                7:37
## 306          72           24            3         TRUE                7:33
## 307          72           23            2        FALSE                7:17
## 308          72   -214748340   -214748365        FALSE                7:17
## 309          72   -214748340   -214748365        FALSE                7:17
## 310          72   -214748340   -214748365        FALSE                7:17
## 311          72   -214748340   -214748365        FALSE                7:17
## 312          73   -214748340   -214748365         TRUE                7:17
## 313          73           28           18         TRUE                7:03
## 314          73           21            7        FALSE                6:47
## 315          73   -214748340   -214748365        FALSE                6:47
## 316          73   -214748340   -214748365        FALSE                6:39
## 317          73           33           24        FALSE                6:29
## 318          73           33           24        FALSE                6:23
## 319          73           23           11        FALSE                6:17
## 320          75           18           10         TRUE                6:11
## 321          75           28            3        FALSE                5:56
## 322          75   -214748340   -214748365        FALSE                5:56
## 323          75           35           23        FALSE                5:48
## 324          75           35           23        FALSE                5:45
## 325          75           10           19        FALSE                5:31
## 326          75           10           19        FALSE                5:29
## 327          75           48            0        FALSE                5:17
## 328          75           48            0        FALSE                5:16
## 329          75           25            5        FALSE                5:16
## 330          75           23            3        FALSE                5:06
## 331          75   -214748340   -214748365        FALSE                5:06
## 332          75           23            3        FALSE                5:06
## 333          75           25           19        FALSE                5:06
## 334          75   -214748340   -214748365        FALSE                5:06
## 335          75           25            3        FALSE                4:50
## 336          75           25            3        FALSE                4:48
## 337          75           25            3         TRUE                4:48
## 338          75           14           13        FALSE                4:31
## 339          75           26            4         TRUE                4:26
## 340          75           26            4        FALSE                4:26
## 341          75   -214748340   -214748365        FALSE                4:26
## 342          75   -214748340   -214748365        FALSE                4:26
## 343          75   -214748340   -214748365        FALSE                4:26
## 344          75   -214748340   -214748365         TRUE                4:26
## 345          75           20           10        FALSE                4:15
## 346          75           28           16         TRUE                4:10
## 347          77           21            3         TRUE                3:58
## 348          77           21            3        FALSE                3:58
## 349          78   -214748340   -214748365         TRUE                3:58
## 350          78           23            7        FALSE                3:38
## 351          78           23            7        FALSE                3:37
## 352          78           25            3        FALSE                3:36
## 353          78           25            3        FALSE                3:35
## 354          80           32           12         TRUE                3:20
## 355          80           24            8        FALSE                3:09
## 356          80           24            8        FALSE                3:08
## 357          80           24            4         TRUE                3:05
## 358          80           11           21        FALSE                2:53
## 359          80           11           21        FALSE                2:52
## 360          80           13           29        FALSE                2:52
## 361          80   -214748340   -214748365        FALSE                2:52
## 362          80   -214748340   -214748365        FALSE                2:52
## 363          80           26            4        FALSE                2:42
## 364          80   -214748340   -214748365        FALSE                2:42
## 365          80   -214748340   -214748365        FALSE                2:42
## 366          80   -214748340   -214748365         TRUE                2:42
## 367          80           18           30        FALSE                2:33
## 368          80   -214748340   -214748365        FALSE                2:33
## 369          80   -214748340   -214748365        FALSE                2:33
## 370          81   -214748340   -214748365         TRUE                2:33
## 371          81           22            8         TRUE                2:22
## 372          81           26            4        FALSE                2:06
## 373          81           26            3        FALSE                1:58
## 374          81           26            3        FALSE                1:58
## 375          81           24            3         TRUE                1:56
## 376          81           14           14        FALSE                1:45
## 377          81           14           14        FALSE                1:41
## 378          81           19           20         TRUE                1:32
## 379          81   -214748340   -214748365        FALSE                1:32
## 380          81           11           22        FALSE                1:27
## 381          81   -214748340   -214748365        FALSE                1:27
## 382          81   -214748340   -214748365        FALSE                1:27
## 383          81   -214748340   -214748365        FALSE                1:27
## 384          82   -214748340   -214748365         TRUE                1:27
## 385          82           38           22        FALSE                1:13
## 386          82           38           22        FALSE                1:12
## 387          82   -214748340   -214748365        FALSE                1:12
## 388          82           26            3        FALSE                58.5
## 389          82           26            3        FALSE                57.6
## 390          82           25           21         TRUE                47.0
## 391          85           12           21         TRUE                39.7
## 392          85           28           13        FALSE                30.9
## 393          85   -214748340   -214748365        FALSE                30.9
## 394          85   -214748340   -214748365        FALSE                30.9
## 395          85   -214748340   -214748365         TRUE                30.9
## 396          85           30           24        FALSE                21.8
## 397          86   -214748340   -214748365         TRUE                21.8
## 398          87   -214748340   -214748365         TRUE                21.8
## 399          87   -214748340   -214748365        FALSE                21.8
## 400          87   -214748340   -214748365        FALSE                21.8
## 401          87   -214748340   -214748365        FALSE                21.8
## 402          87           18           24        FALSE                 5.8
## 403          87   -214748340   -214748365        FALSE                 5.8
## 404          87   -214748340   -214748365        FALSE                 5.8
## 405          87   -214748340   -214748365        FALSE                 5.8
## 406          87   -214748340   -214748365        FALSE                 5.8
## 407          90           13           22         TRUE                 0.4
## 408          90   -214748340   -214748365        FALSE                 0.4
## 409          90   -214748340   -214748365        FALSE                 0.4
## 410          90   -214748340   -214748365        FALSE                 0.4
## 411          90   -214748340   -214748365        FALSE                 0.0
## 412          90   -214748340   -214748365        FALSE                 0.0
## 413           0   -214748340   -214748365        FALSE               10:00
## 414           0            6           10        FALSE                9:46
## 415           0           15            6        FALSE                9:29
## 416           0           15            6        FALSE                9:29
## 417           0           25            2        FALSE                9:29
## 418           0           38           22        FALSE                9:18
## 419           0           38           22        FALSE                9:13
## 420           0           13            2         TRUE                9:06
## 421           0           16           21        FALSE                8:44
## 422           0           16           21        FALSE                8:40
## 423           0           34           21        FALSE                8:38
## 424           0           34           21        FALSE                8:34
## 425           0           21           10        FALSE                8:28
## 426           0           21           10        FALSE                8:23
## 427           2           25            0         TRUE                8:23
## 428           2           26            2        FALSE                8:03
## 429           2   -214748340   -214748365         TRUE                8:03
## 430           2   -214748340   -214748365         TRUE                8:03
## 431           2            6           13        FALSE                7:44
## 432           2           12            7        FALSE                7:35
## 433           2           26            0         TRUE                7:28
## 434           2           28            3        FALSE                7:11
## 435           3   -214748340   -214748365         TRUE                7:11
## 436           3   -214748340   -214748365        FALSE                7:11
## 437           4   -214748340   -214748365         TRUE                7:11
## 438           4            5           17        FALSE                6:57
## 439           7            4           11         TRUE                6:35
## 440           7           15           26        FALSE                6:19
## 441           7   -214748340   -214748365        FALSE                6:19
## 442           7   -214748340   -214748365        FALSE                6:19
## 443           7           45           20        FALSE                6:12
## 444           7           42           34        FALSE                6:12
## 445           7           25            0         TRUE                6:02
## 446           7           25            7        FALSE                5:46
## 447           8   -214748340   -214748365         TRUE                5:46
## 448           9   -214748340   -214748365         TRUE                5:46
## 449           9           31           23         TRUE                5:31
## 450           9           32            4        FALSE                5:14
## 451          10   -214748340   -214748365         TRUE                5:14
## 452          10   -214748340   -214748365        FALSE                5:14
## 453          10   -214748340   -214748365        FALSE                5:14
## 454          11   -214748340   -214748365         TRUE                5:14
## 455          11            3            4        FALSE                4:57
## 456          11            3            4        FALSE                4:55
## 457          11           25            0         TRUE                4:52
## 458          11           11           20        FALSE                4:39
## 459          11           11           20        FALSE                4:36
## 460          11           25            5         TRUE                4:34
## 461          11           25            5        FALSE                4:34
## 462          11   -214748340   -214748365        FALSE                4:34
## 463          11   -214748340   -214748365        FALSE                4:34
## 464          11   -214748340   -214748365        FALSE                4:30
## 465          11           24           20        FALSE                4:13
## 466          11           25            0        FALSE                3:58
## 467          11           25            0        FALSE                3:56
## 468          11           26            1        FALSE                3:52
## 469          12   -214748340   -214748365         TRUE                3:52
## 470          13   -214748340   -214748365         TRUE                3:52
## 471          13           25            2        FALSE                3:37
## 472          13   -214748340   -214748365        FALSE                3:37
## 473          13   -214748340   -214748365        FALSE                3:37
## 474          13   -214748340   -214748365        FALSE                3:37
## 475          13   -214748340   -214748365        FALSE                3:34
## 476          15           13            2         TRUE                3:22
## 477          15           39            0        FALSE                3:09
## 478          15   -214748340   -214748365         TRUE                3:09
## 479          15   -214748340   -214748365         TRUE                3:09
## 480          15            9            3        FALSE                2:55
## 481          15            9            3        FALSE                2:51
## 482          15           34           16        FALSE                2:44
## 483          15           23           24        FALSE                2:34
## 484          15           25           11         TRUE                2:17
## 485          15           13           22        FALSE                2:03
## 486          15           13           22        FALSE                1:59
## 487          15           26            1         TRUE                1:50
## 488          15   -214748340   -214748365        FALSE                1:41
## 489          15   -214748340   -214748365        FALSE                1:41
## 490          15   -214748340   -214748365        FALSE                1:41
## 491          15   -214748340   -214748365        FALSE                1:41
## 492          15   -214748340   -214748365        FALSE                1:41
## 493          15           21           12        FALSE                1:31
## 494          15           14            8        FALSE                1:17
## 495          15           30            2        FALSE                1:08
## 496          15           30            2        FALSE                1:04
## 497          15           15            6        FALSE                50.9
## 498          15           15            6        FALSE                50.7
## 499          15           25            0        FALSE                50.7
## 500          15   -214748340   -214748365        FALSE                50.7
## 501          15   -214748340   -214748365        FALSE                50.7
## 502          15   -214748340   -214748365        FALSE                50.7
## 503          15   -214748340   -214748365        FALSE                50.7
## 504          15   -214748340   -214748365         TRUE                50.7
## 505          17           26            1         TRUE                32.0
## 506          17           39           21        FALSE                18.8
## 507          17           39           21        FALSE                14.2
## 508          17           25            0        FALSE                14.2
## 509          17           25            0        FALSE                13.6
## 510          17           28            3        FALSE                12.6
## 511          17           28            3        FALSE                12.3
## 512          17           13           15        FALSE                 2.2
## 513          17           13           15        FALSE                 2.2
## 514          17   -214748340   -214748365        FALSE                 0.0
## 515          17   -214748340   -214748365        FALSE               10:00
## 516          17   -214748340   -214748365        FALSE               10:00
## 517          17           27            2        FALSE                9:49
## 518          17   -214748340   -214748365         TRUE                9:49
## 519          17   -214748340   -214748365         TRUE                9:49
## 520          17           31           19        FALSE                9:36
## 521          17           31           19        FALSE                9:32
## 522          17           10            0        FALSE                9:22
## 523          17           10            0        FALSE                9:17
## 524          17           26            4        FALSE                9:10
## 525          19           25            1         TRUE                9:04
## 526          19           29            8        FALSE                8:50
## 527          19           27            1        FALSE                8:44
## 528          19           27            1        FALSE                8:39
## 529          19           15           22         TRUE                8:37
## 530          19            4           15        FALSE                8:26
## 531          19   -214748340   -214748365        FALSE                8:26
## 532          19   -214748340   -214748365        FALSE                8:26
## 533          19            4           10        FALSE                8:07
## 534          19   -214748340   -214748365         TRUE                8:07
## 535          19   -214748340   -214748365        FALSE                8:07
## 536          19   -214748340   -214748365        FALSE                8:07
## 537          19   -214748340   -214748365        FALSE                8:07
## 538          19   -214748340   -214748365         TRUE                8:07
## 539          19            3            2        FALSE                7:53
## 540          19            3            2        FALSE                7:49
## 541          19           27           14        FALSE                7:41
## 542          19           27           14        FALSE                7:37
## 543          19           25            0         TRUE                7:37
## 544          21           33            0         TRUE                7:30
## 545          21           12            6        FALSE                7:13
## 546          21           12            6        FALSE                7:10
## 547          23           24            1         TRUE                7:06
## 548          23           25           -1         TRUE                6:51
## 549          23           25            1        FALSE                6:32
## 550          23           25            1        FALSE                6:28
## 551          23           46           36        FALSE                6:20
## 552          23   -214748340   -214748365        FALSE                6:20
## 553          23   -214748340   -214748365        FALSE                6:20
## 554          23   -214748340   -214748365        FALSE                6:20
## 555          25           38           14         TRUE                6:04
## 556          25           13           20         TRUE                5:50
## 557          27           16           15         TRUE                5:30
## 558          27           24            0        FALSE                5:14
## 559          27           24            0        FALSE                5:10
## 560          27           25            3        FALSE                5:06
## 561          27           25            3        FALSE                5:02
## 562          27           15           24        FALSE                4:59
## 563          27           15           24        FALSE                4:55
## 564          27           26            0         TRUE                4:42
## 565          27            9           18        FALSE                4:25
## 566          27            9           18        FALSE                4:23
## 567          27           25            3        FALSE                4:23
## 568          27   -214748340   -214748365        FALSE                4:23
## 569          27   -214748340   -214748365        FALSE                4:23
## 570          27           24            3        FALSE                4:08
## 571          27           32           25        FALSE                3:55
## 572          27           12           17        FALSE                3:51
## 573          27           12           17        FALSE                3:46
## 574          27           20           16        FALSE                3:31
## 575          27           20           16        FALSE                3:30
## 576          27           24            1        FALSE                3:30
## 577          27           24            3        FALSE                3:17
## 578          27           25            1        FALSE                3:10
## 579          27           25            1        FALSE                3:04
## 580          29           25            0         TRUE                3:04
## 581          29           20           23        FALSE                2:54
## 582          29           20           23        FALSE                2:51
## 583          29           28           13        FALSE                2:35
## 584          29           28           13        FALSE                2:34
## 585          29   -214748340   -214748365        FALSE                2:34
## 586          29   -214748340   -214748365        FALSE                2:34
## 587          29           30           11        FALSE                2:23
## 588          29           20           16        FALSE                2:16
## 589          29           24            0         TRUE                1:59
## 590          29            9           20        FALSE                1:45
## 591          29            9           20        FALSE                1:44
## 592          29           20           15        FALSE                1:44
## 593          29           25           11        FALSE                1:30
## 594          29           25           11        FALSE                1:25
## 595          29           18           24        FALSE                1:20
## 596          29           18           24        FALSE                1:16
## 597          29           48            0         TRUE                1:05
## 598          29   -214748340   -214748365        FALSE                58.7
## 599          29           23            5        FALSE                48.5
## 600          29           19           24        FALSE                34.4
## 601          29           26           18        FALSE                30.9
## 602          29           26           18        FALSE                27.4
## 603          29           38            6        FALSE                27.4
## 604          31           26            1         TRUE                25.0
## 605          31           36           20        FALSE                 5.9
## 606          31           27            2        FALSE                 1.2
## 607          32   -214748340   -214748365         TRUE                 1.2
## 608          33   -214748340   -214748365         TRUE                 1.2
## 609          33   -214748340   -214748365        FALSE                 0.0
## 610          33   -214748340   -214748365        FALSE               10:00
## 611          33   -214748340   -214748365        FALSE               10:00
## 612          33   -214748340   -214748365        FALSE               10:00
## 613          33           27            1        FALSE                9:47
## 614          33           31           12        FALSE                9:31
## 615          33           31           12        FALSE                9:30
## 616          33           20           13        FALSE                9:21
## 617          33           20           13        FALSE                9:19
## 618          33           28            2        FALSE                9:04
## 619          33           28            2        FALSE                9:01
## 620          33           13           15        FALSE                8:56
## 621          33           11           20        FALSE                8:45
## 622          33           11           20        FALSE                8:41
## 623          33           25            2        FALSE                8:40
## 624          33           25            2        FALSE                8:37
## 625          33           39           20         TRUE                8:34
## 626          35           26            4         TRUE                8:20
## 627          35           27            2        FALSE                7:58
## 628          35   -214748340   -214748365        FALSE                7:58
## 629          35   -214748340   -214748365        FALSE                7:58
## 630          35   -214748340   -214748365         TRUE                7:58
## 631          37           25            0         TRUE                7:45
## 632          37           28            2        FALSE                7:30
## 633          37           28            2        FALSE                7:24
## 634          37           27            8        FALSE                7:10
## 635          37   -214748340   -214748365        FALSE                7:10
## 636          37   -214748340   -214748365        FALSE                7:10
## 637          38   -214748340   -214748365         TRUE                7:10
## 638          38           39            3        FALSE                6:51
## 639          40           20            0         TRUE                6:44
## 640          40            9           -2        FALSE                6:31
## 641          40   -214748340   -214748365        FALSE                6:31
## 642          40           25            0        FALSE                6:21
## 643          40           25            0        FALSE                6:18
## 644          40           35           12        FALSE                6:05
## 645          40           35            3        FALSE                6:00
## 646          40            4           13         TRUE                5:47
## 647          40           20           22        FALSE                5:23
## 648          40           20           22        FALSE                5:23
## 649          40            3           -2        FALSE                5:09
## 650          40            3           -2        FALSE                5:04
## 651          40           39           21        FALSE                4:59
## 652          40           39           21        FALSE                4:56
## 653          40           26           10        FALSE                4:51
## 654          40           26           10        FALSE                4:46
## 655          40           23           25         TRUE                4:28
## 656          40   -214748340   -214748365        FALSE                4:26
## 657          40           24           23        FALSE                4:06
## 658          40           24           23        FALSE                4:02
## 659          40           23           26        FALSE                3:44
## 660          40           23           26        FALSE                3:40
## 661          40           46           20        FALSE                3:33
## 662          40   -214748340   -214748365        FALSE                3:33
## 663          40   -214748340   -214748365        FALSE                3:33
## 664          40   -214748340   -214748365        FALSE                3:33
## 665          40           26            1        FALSE                3:23
## 666          40           26            1        FALSE                3:20
## 667          40           25            0         TRUE                3:20
## 668          40           34           17        FALSE                3:04
## 669          40           34           17        FALSE                3:01
## 670          40           13           22        FALSE                2:52
## 671          40           13           22        FALSE                2:49
## 672          40           32           23        FALSE                2:40
## 673          40           32           23        FALSE                2:40
## 674          40           32            2        FALSE                2:23
## 675          40           32            2        FALSE                2:17
## 676          40           26            2        FALSE                2:16
## 677          40           26            2        FALSE                2:16
## 678          40           25            0         TRUE                2:10
## 679          42           34           16         TRUE                2:00
## 680          42           34           24        FALSE                1:46
## 681          44           25            0         TRUE                1:43
## 682          44           26            1        FALSE                1:23
## 683          44           26            1        FALSE                1:17
## 684          44           25            0         TRUE                1:17
## 685          44           24            6        FALSE                59.0
## 686          44           26            2        FALSE                51.2
## 687          44   -214748340   -214748365         TRUE                51.2
## 688          44   -214748340   -214748365        FALSE                51.2
## 689          44   -214748340   -214748365        FALSE                51.2
## 690          44   -214748340   -214748365        FALSE                51.2
## 691          44   -214748340   -214748365         TRUE                51.2
## 692          47            2            2         TRUE                34.5
## 693          47            6           18        FALSE                23.5
## 694          47   -214748340   -214748365        FALSE                23.5
## 695          47   -214748340   -214748365        FALSE                23.5
## 696          47   -214748340   -214748365         TRUE                23.5
## 697          49           11           15         TRUE                 6.4
## 698          49           13           28        FALSE                 2.5
## 699          49           13           28        FALSE                 2.5
## 700          49   -214748340   -214748365        FALSE                 0.0
## 701          49           12           20        FALSE                9:44
## 702          49           12           20        FALSE                9:40
## 703          49           35            4        FALSE                9:38
## 704          49           35            4        FALSE                9:35
## 705          49           13           18        FALSE                9:22
## 706          49            9           17        FALSE                9:17
## 707          49            9           17        FALSE                9:14
## 708          49           18           24        FALSE                9:09
## 709          49           18           24        FALSE                9:05
## 710          49           18           24         TRUE                8:54
## 711          49           23            0        FALSE                8:43
## 712          50   -214748340   -214748365         TRUE                8:43
## 713          51   -214748340   -214748365         TRUE                8:43
## 714          51           29            4        FALSE                8:17
## 715          51           17            2        FALSE                8:13
## 716          51           21            5        FALSE                8:03
## 717          51           21            5        FALSE                8:00
## 718          51           11            2         TRUE                7:46
## 719          51           20           18        FALSE                7:34
## 720          51           20           18        FALSE                7:30
## 721          51           26            1        FALSE                7:27
## 722          51           26            1        FALSE                7:26
## 723          51   -214748340   -214748365        FALSE                7:26
## 724          51   -214748340   -214748365        FALSE                7:26
## 725          51           14            5        FALSE                7:21
## 726          51           15           11         TRUE                7:03
## 727          51           25            2        FALSE                6:58
## 728          51           25            2        FALSE                6:55
## 729          51            4            9        FALSE                6:36
## 730          51            4            9        FALSE                6:33
## 731          51           48            2        FALSE                6:16
## 732          51           48            2        FALSE                6:14
## 733          51   -214748340   -214748365        FALSE                6:14
## 734          51           27            1        FALSE                5:57
## 735          51   -214748340   -214748365        FALSE                5:57
## 736          51   -214748340   -214748365        FALSE                5:57
## 737          51   -214748340   -214748365        FALSE                5:57
## 738          51   -214748340   -214748365         TRUE                5:57
## 739          53           26            4         TRUE                5:40
## 740          53            5           11         TRUE                5:25
## 741          53           26            2        FALSE                5:08
## 742          53   -214748340   -214748365        FALSE                5:08
## 743          53   -214748340   -214748365        FALSE                5:08
## 744          53   -214748340   -214748365        FALSE                5:08
## 745          53   -214748340   -214748365        FALSE                5:08
## 746          53           25            1        FALSE                5:00
## 747          56           30           23         TRUE                4:49
## 748          56            3            4        FALSE                4:32
## 749          56            3            4        FALSE                4:28
## 750          56           26            0        FALSE                4:25
## 751          56           26            0        FALSE                4:22
## 752          56   -214748340   -214748365        FALSE                4:19
## 753          56           19           -2        FALSE                4:19
## 754          56           22           25        FALSE                3:56
## 755          56           22           25        FALSE                3:52
## 756          56           24            9        FALSE                3:45
## 757          56           25            1        FALSE                3:34
## 758          56           25            1        FALSE                3:31
## 759          56           26            5        FALSE                3:30
## 760          56           26            5        FALSE                3:27
## 761          56           26            1         TRUE                3:25
## 762          56   -214748340   -214748365        FALSE                3:12
## 763          56   -214748340   -214748365        FALSE                3:12
## 764          56           18            1        FALSE                2:55
## 765          56           18            1        FALSE                2:53
## 766          58           24            0         TRUE                2:47
## 767          58           24            0        FALSE                2:47
## 768          58   -214748340   -214748365        FALSE                2:47
## 769          59   -214748340   -214748365         TRUE                2:47
## 770          59           24           27        FALSE                2:23
## 771          59           24           27        FALSE                2:21
## 772          59           23            4        FALSE                2:21
## 773          59   -214748340   -214748365        FALSE                2:21
## 774          61           23            8         TRUE                2:08
## 775          61           13           22         TRUE                1:49
## 776          63           25           -1         TRUE                1:33
## 777          63           19           12        FALSE                1:13
## 778          63           19           12        FALSE                1:09
## 779          63           28           19        FALSE                1:09
## 780          64   -214748340   -214748365         TRUE                1:09
## 781          64   -214748340   -214748365        FALSE                1:09
## 782          64   -214748340   -214748365        FALSE                1:09
## 783          64   -214748340   -214748365        FALSE                1:09
## 784          64   -214748340   -214748365        FALSE                1:09
## 785          65   -214748340   -214748365         TRUE                1:09
## 786          65           25            8        FALSE                46.8
## 787          65           25            8        FALSE                46.8
## 788          65           20            0        FALSE                32.9
## 789          66   -214748340   -214748365         TRUE                32.9
## 790          66   -214748340   -214748365        FALSE                32.9
## 791          66   -214748340   -214748365        FALSE                30.2
## 792          66           26            2        FALSE                14.6
## 793          66           26            2        FALSE                 9.7
## 794          66           24            0        FALSE                 7.9
## 795          67   -214748340   -214748365         TRUE                 7.9
## 796          67   -214748340   -214748365        FALSE                 7.9
## 797          67   -214748340   -214748365        FALSE                 5.8
## 798          67   -214748340   -214748365        FALSE                 0.0
## 799          67   -214748340   -214748365        FALSE                 0.0
## 800           0   -214748340   -214748365        FALSE               10:00
## 801           2           33           15         TRUE                9:48
## 802           2           36           -2        FALSE                9:25
## 803           4           20            5         TRUE                9:16
## 804           4           28            3        FALSE                9:05
## 805           4           28            3        FALSE                9:02
## 806           4           25            3        FALSE                8:48
## 807           4           25            3        FALSE                8:48
## 808           4           23            2        FALSE                8:34
## 809           4           23            2        FALSE                8:31
## 810           4           25            3        FALSE                8:25
## 811           4           25            3        FALSE                8:21
## 812           4           35           17        FALSE                8:16
## 813           4           35           17        FALSE                8:13
## 814           4           29           21        FALSE                7:52
## 815           4           29           21        FALSE                7:49
## 816           4           23            5        FALSE                7:44
## 817           4           23            5        FALSE                7:42
## 818           4            6           17        FALSE                7:28
## 819           4            6           17        FALSE                7:24
## 820           4           26            0         TRUE                7:22
## 821           6           36           19         TRUE                6:59
## 822           6           38           21        FALSE                6:47
## 823           6           12            3        FALSE                6:29
## 824           6           12            3        FALSE                6:26
## 825           6           21            8        FALSE                6:23
## 826           6   -214748340   -214748365         TRUE                6:23
## 827           6   -214748340   -214748365        FALSE                6:23
## 828           6   -214748340   -214748365        FALSE                6:23
## 829           6   -214748340   -214748365        FALSE                6:23
## 830           6   -214748340   -214748365        FALSE                6:21
## 831           6           39           20        FALSE                6:14
## 832           6           39           20        FALSE                6:14
## 833           6           22            3        FALSE                5:56
## 834           6           22            3        FALSE                5:56
## 835           6           27            9        FALSE                5:54
## 836           6           25            0         TRUE                5:46
## 837           6           21            3        FALSE                5:26
## 838           6           21            3        FALSE                5:22
## 839           6           23            3         TRUE                5:19
## 840           6           18           18        FALSE                5:02
## 841           6           18           18        FALSE                5:02
## 842           6           17            9        FALSE                4:52
## 843           6           17            9        FALSE                4:51
## 844           6   -214748340   -214748365        FALSE                4:51
## 845           6   -214748340   -214748365        FALSE                4:51
## 846           6   -214748340   -214748365        FALSE                4:51
## 847           6   -214748340   -214748365        FALSE                4:51
## 848           6           38           22        FALSE                4:40
## 849           6           38           22        FALSE                4:35
## 850           6           30            6        FALSE                4:24
## 851           6           30            6        FALSE                4:21
## 852           6           25            1        FALSE                4:18
## 853           6           25            1        FALSE                4:16
## 854           6           13            8        FALSE                4:10
## 855           6           13            8        FALSE                4:08
## 856           6            7           17        FALSE                4:04
## 857           6            7           17        FALSE                4:01
## 858           6           29            3         TRUE                3:52
## 859           6           13           15        FALSE                3:42
## 860           6           13           15        FALSE                3:42
## 861           6   -214748340   -214748365        FALSE                3:42
## 862           6   -214748340   -214748365        FALSE                3:42
## 863           6           44           19        FALSE                3:32
## 864           6           44           19        FALSE                3:29
## 865           9           37           22         TRUE                3:25
## 866           9           28            2        FALSE                3:06
## 867           9           28            2        FALSE                3:06
## 868           9           24           12        FALSE                2:48
## 869           9           24           12        FALSE                2:45
## 870           9           25           -1         TRUE                2:40
## 871           9           33           22        FALSE                2:29
## 872           9           33           22        FALSE                2:29
## 873           9   -214748340   -214748365        FALSE                2:29
## 874           9   -214748340   -214748365        FALSE                2:29
## 875           9           17           22        FALSE                2:19
## 876           9           17           22        FALSE                2:17
## 877           9           25           12        FALSE                2:17
## 878           9           22           18        FALSE                2:05
## 879           9           22           18        FALSE                2:01
## 880           9           45           16        FALSE                1:49
## 881           9           45           16        FALSE                1:47
## 882           9           29            6        FALSE                1:47
## 883           9   -214748340   -214748365        FALSE                1:47
## 884           9           24            3        FALSE                1:34
## 885           9           38           19        FALSE                1:26
## 886           9           29            4        FALSE                1:16
## 887           9   -214748340   -214748365        FALSE                1:16
## 888           9   -214748340   -214748365        FALSE                1:16
## 889           9   -214748340   -214748365        FALSE                1:16
## 890          10   -214748340   -214748365         TRUE                1:16
## 891          10           30           10        FALSE                1:02
## 892          10           43            7        FALSE                59.9
## 893          10   -214748340   -214748365         TRUE                59.9
## 894          10   -214748340   -214748365        FALSE                59.9
## 895          10   -214748340   -214748365        FALSE                57.8
## 896          10           12           20        FALSE                56.1
## 897          10           12           20        FALSE                54.2
## 898          10           34           13        FALSE                45.6
## 899          10           34           13        FALSE                43.1
## 900          10           33           16         TRUE                25.9
## 901          10           25            3        FALSE                 1.7
## 902          10           25            3        FALSE                 1.7
## 903          10   -214748340   -214748365        FALSE                 0.0
## 904          10   -214748340   -214748365        FALSE               10:00
## 905          10   -214748340   -214748365        FALSE               10:00
## 906          10   -214748340   -214748365        FALSE               10:00
## 907          10           19            4        FALSE                9:48
## 908          10           19            4        FALSE                9:44
## 909          10           39           12         TRUE                9:42
## 910          10            9           26        FALSE                9:27
## 911          10           25            1         TRUE                9:20
## 912          10   -214748340   -214748365        FALSE                9:20
## 913          10   -214748340   -214748365        FALSE                9:20
## 914          10           25            2        FALSE                9:05
## 915          10           25            2        FALSE                9:03
## 916          10           25            2        FALSE                9:01
## 917          10           45           -2         TRUE                8:53
## 918          12           32           13         TRUE                8:39
## 919          12           30            9        FALSE                8:20
## 920          12           30            9        FALSE                8:16
## 921          12           23           25        FALSE                8:08
## 922          12           23           25        FALSE                8:05
## 923          12            2           -3        FALSE                7:57
## 924          12            2           -3        FALSE                7:53
## 925          12           48            0        FALSE                7:49
## 926          12           48            0        FALSE                7:44
## 927          12   -214748340   -214748365        FALSE                7:44
## 928          12   -214748340   -214748365        FALSE                7:44
## 929          14           26            2         TRUE                7:30
## 930          14           22            7        FALSE                7:17
## 931          14           22            7        FALSE                7:13
## 932          14           25            1        FALSE                7:12
## 933          15   -214748340   -214748365         TRUE                7:12
## 934          15   -214748340   -214748365        FALSE                7:12
## 935          16   -214748340   -214748365         TRUE                7:12
## 936          16            5           13        FALSE                6:48
## 937          16            9           19        FALSE                6:48
## 938          16   -214748340   -214748365        FALSE                6:48
## 939          16           19           27        FALSE                6:34
## 940          16           19           27        FALSE                6:31
## 941          16           21           26        FALSE                6:26
## 942          16           26            3         TRUE                6:19
## 943          16           25           17        FALSE                6:05
## 944          16           25           17        FALSE                6:01
## 945          16           25            0         TRUE                5:57
## 946          18           25           12         TRUE                5:34
## 947          18           49           -2         TRUE                5:17
## 948          18           21            9        FALSE                4:54
## 949          18           21            9        FALSE                4:52
## 950          18           25            4         TRUE                4:39
## 951          18   -214748340   -214748365        FALSE                4:39
## 952          18   -214748340   -214748365        FALSE                4:39
## 953          20           26            1         TRUE                4:25
## 954          20           18            4        FALSE                4:06
## 955          20           18            4        FALSE                4:06
## 956          20           35           22        FALSE                3:50
## 957          20           35           22        FALSE                3:46
## 958          20           24           10        FALSE                3:43
## 959          20           14           20        FALSE                3:24
## 960          20           14           20        FALSE                3:20
## 961          20           22           21        FALSE                3:12
## 962          20           22           21        FALSE                3:07
## 963          20           24            0        FALSE                2:54
## 964          20           24            0        FALSE                2:51
## 965          20           25           15        FALSE                2:40
## 966          20           25           15        FALSE                2:36
## 967          22           23            2         TRUE                2:34
## 968          22           25            3        FALSE                2:12
## 969          22   -214748340   -214748365        FALSE                2:12
## 970          22           29            8        FALSE                1:54
## 971          22           29            8        FALSE                1:50
## 972          22           22            3        FALSE                1:34
## 973          22           22            3        FALSE                1:30
## 974          22           45            0        FALSE                1:28
## 975          22           45            0        FALSE                1:25
## 976          24           26            2         TRUE                1:23
## 977          24   -214748340   -214748365        FALSE                1:21
## 978          24   -214748340   -214748365        FALSE                1:21
## 979          24           25           -1         TRUE                1:07
## 980          24            7           19        FALSE                51.9
## 981          24            7           19        FALSE                50.0
## 982          24           13           20        FALSE                43.5
## 983          24           13           20        FALSE                43.5
## 984          24           12           -2        FALSE                36.1
## 985          24            8           15        FALSE                20.2
## 986          24            8           15        FALSE                17.8
## 987          24           25            3        FALSE                 1.5
## 988          24           25            3        FALSE                 0.5
## 989          24           25            0         TRUE                 0.0
## 990          24   -214748340   -214748365        FALSE                 0.0
## 991          24   -214748340   -214748365        FALSE               10:00
## 992          24   -214748340   -214748365        FALSE               10:00
## 993          24           23            2         TRUE                9:40
## 994          27           39           21         TRUE                9:25
## 995          27           26            2        FALSE                9:08
## 996          27           26            2        FALSE                9:07
## 997          27           25           12        FALSE                9:04
## 998          30           12           21         TRUE                8:51
## 999          30           22            3        FALSE                8:30
## 1000         30   -214748340   -214748365         TRUE                8:30
## 1001         30   -214748340   -214748365         TRUE                8:30
## 1002         30           33           22        FALSE                8:22
## 1003         30           33           22        FALSE                8:19
## 1004         33           11           20         TRUE                8:16
## 1005         33           27            2         TRUE                8:01
## 1006         33           10           15        FALSE                7:46
## 1007         33            7           18        FALSE                7:36
## 1008         33            7           18        FALSE                7:32
## 1009         33           25            0        FALSE                7:32
## 1010         34   -214748340   -214748365         TRUE                7:32
## 1011         35   -214748340   -214748365         TRUE                7:32
## 1012         35           24           18        FALSE                7:07
## 1013         35           24           18        FALSE                7:04
## 1014         37           24           15         TRUE                6:56
## 1015         37   -214748340   -214748365        FALSE                6:48
## 1016         37           19           30        FALSE                6:45
## 1017         37           29            5        FALSE                6:42
## 1018         37           24            2        FALSE                6:22
## 1019         37           24            2        FALSE                6:21
## 1020         39           24            0         TRUE                6:13
## 1021         39           20           21        FALSE                6:00
## 1022         39            4           11        FALSE                5:53
## 1023         39            4           11        FALSE                5:49
## 1024         41           16           13         TRUE                5:46
## 1025         41           10            2         TRUE                5:27
## 1026         41           20           17        FALSE                5:18
## 1027         41           20           17        FALSE                5:18
## 1028         41   -214748340   -214748365        FALSE                5:18
## 1029         41           20            7        FALSE                5:04
## 1030         41   -214748340   -214748365         TRUE                5:04
## 1031         41   -214748340   -214748365        FALSE                5:04
## 1032         41   -214748340   -214748365        FALSE                5:00
## 1033         41           25            8         TRUE                4:53
## 1034         43           27            3         TRUE                4:34
## 1035         43           27            0        FALSE                4:34
## 1036         44   -214748340   -214748365         TRUE                4:34
## 1037         44           29           24         TRUE                4:16
## 1038         44           26           13        FALSE                3:59
## 1039         44           26           13        FALSE                3:58
## 1040         44   -214748340   -214748365        FALSE                3:58
## 1041         44   -214748340   -214748365        FALSE                3:58
## 1042         44   -214748340   -214748365        FALSE                3:58
## 1043         46           26            1         TRUE                3:56
## 1044         46           28           -1        FALSE                3:56
## 1045         46   -214748340   -214748365        FALSE                3:56
## 1046         46   -214748340   -214748365        FALSE                3:53
## 1047         46           17           26         TRUE                3:38
## 1048         46           14           15        FALSE                3:26
## 1049         48           19            2         TRUE                3:21
## 1050         48            1            4        FALSE                2:54
## 1051         48            1            4        FALSE                2:51
## 1052         48           11            5        FALSE                2:50
## 1053         48            2            8        FALSE                2:48
## 1054         48            2            8        FALSE                2:48
## 1055         48           23            2        FALSE                2:48
## 1056         48   -214748340   -214748365        FALSE                2:48
## 1057         48   -214748340   -214748365        FALSE                2:48
## 1058         48   -214748340   -214748365        FALSE                2:48
## 1059         48   -214748340   -214748365        FALSE                2:48
## 1060         48   -214748340   -214748365         TRUE                2:48
## 1061         50           19           18         TRUE                2:34
## 1062         50           19            1        FALSE                2:15
## 1063         50           19            1        FALSE                2:15
## 1064         50           41           20        FALSE                2:03
## 1065         50           41           20        FALSE                1:59
## 1066         50   -214748340   -214748365        FALSE                1:50
## 1067         50   -214748340   -214748365        FALSE                1:50
## 1068         50   -214748340   -214748365        FALSE                1:50
## 1069         50           25           10        FALSE                1:41
## 1070         50           25           10        FALSE                1:38
## 1071         50           22           15        FALSE                1:30
## 1072         51   -214748340   -214748365         TRUE                1:30
## 1073         52   -214748340   -214748365         TRUE                1:30
## 1074         52           26            2         TRUE                1:22
## 1075         52           43            3        FALSE                1:10
## 1076         52           43            3        FALSE                1:10
## 1077         52           36            5        FALSE                1:09
## 1078         52   -214748340   -214748365         TRUE                1:09
## 1079         52   -214748340   -214748365        FALSE                1:09
## 1080         52   -214748340   -214748365        FALSE                1:09
## 1081         52   -214748340   -214748365        FALSE                1:05
## 1082         52           16           27        FALSE                1:01
## 1083         52           16           27        FALSE                1:01
## 1084         52           26            1         TRUE                46.9
## 1085         54           24            2         TRUE                32.8
## 1086         54           22           10        FALSE                16.1
## 1087         54           22           10        FALSE                13.1
## 1088         54   -214748340   -214748365        FALSE                 0.0
## 1089         54   -214748340   -214748365        FALSE               10:00
## 1090         54   -214748340   -214748365        FALSE               10:00
## 1091         54           14            3        FALSE                9:48
## 1092         54           24            2        FALSE                9:43
## 1093         54           24            2        FALSE                9:40
## 1094         54           19            3        FALSE                9:34
## 1095         54           19            3        FALSE                9:33
## 1096         54           28            6        FALSE                9:15
## 1097         54   -214748340   -214748365        FALSE                9:12
## 1098         54           28            6        FALSE                9:12
## 1099         57           46           17         TRUE                9:09
## 1100         57   -214748340   -214748365        FALSE                8:57
## 1101         57           25            4        FALSE                8:51
## 1102         57   -214748340   -214748365         TRUE                8:51
## 1103         57   -214748340   -214748365         TRUE                8:51
## 1104         57           29           23        FALSE                8:39
## 1105         57           27            3         TRUE                8:34
## 1106         57           35            8        FALSE                8:21
## 1107         57           23            3         TRUE                8:15
## 1108         57   -214748340   -214748365        FALSE                8:08
## 1109         57   -214748340   -214748365        FALSE                8:08
## 1110         57           21            4        FALSE                7:54
## 1111         57           21            4        FALSE                7:51
## 1112         57           27            5        FALSE                7:49
## 1113         57           27            5        FALSE                7:49
## 1114         57           25           23        FALSE                7:36
## 1115         57           25           23        FALSE                7:31
## 1116         57           22            8        FALSE                7:24
## 1117         57           22            8        FALSE                7:18
## 1118         57           25            0         TRUE                7:18
## 1119         57           11           15        FALSE                7:14
## 1120         57           23           17        FALSE                7:00
## 1121         57           23           17        FALSE                7:00
## 1122         59           10           10         TRUE                6:58
## 1123         59           28           30        FALSE                6:50
## 1124         59            2            0        FALSE                6:40
## 1125         59            2            0        FALSE                6:37
## 1126         59           26            7        FALSE                6:32
## 1127         59           26            7        FALSE                6:29
## 1128         59           28            2        FALSE                6:26
## 1129         59           28            2        FALSE                6:26
## 1130         59           40            7        FALSE                6:24
## 1131         59           25            0        FALSE                6:20
## 1132         59           25            0        FALSE                6:20
## 1133         61           10            6         TRUE                6:18
## 1134         61           20            4         TRUE                5:49
## 1135         61           34           12        FALSE                5:39
## 1136         61           25            0        FALSE                5:34
## 1137         61           25            0        FALSE                5:32
## 1138         63           25            7         TRUE                5:31
## 1139         63            8           21        FALSE                5:25
## 1140         63           23            3        FALSE                5:20
## 1141         64   -214748340   -214748365         TRUE                5:20
## 1142         65   -214748340   -214748365         TRUE                5:20
## 1143         65           23            8        FALSE                5:06
## 1144         65           23            8        FALSE                5:04
## 1145         65           41           22        FALSE                5:03
## 1146         65           41           22        FALSE                5:03
## 1147         65           22           12        FALSE                4:50
## 1148         65           22           12        FALSE                4:47
## 1149         65           18           23        FALSE                4:31
## 1150         65           18           23        FALSE                4:28
## 1151         65           26            1         TRUE                4:13
## 1152         67           26           10         TRUE                3:52
## 1153         67           29            3        FALSE                3:39
## 1154         67   -214748340   -214748365         TRUE                3:39
## 1155         67   -214748340   -214748365        FALSE                3:39
## 1156         67   -214748340   -214748365        FALSE                3:39
## 1157         67   -214748340   -214748365        FALSE                3:37
## 1158         67           26            1        FALSE                3:22
## 1159         67           26            1        FALSE                3:19
## 1160         67           31           25        FALSE                3:05
## 1161         67           31           25        FALSE                3:01
## 1162         69           34           11         TRUE                2:54
## 1163         69           48            2        FALSE                2:38
## 1164         69           48            2        FALSE                2:35
## 1165         69           39            2        FALSE                2:26
## 1166         69           39            2        FALSE                2:26
## 1167         69           26            0         TRUE                2:21
## 1168         69           26            2        FALSE                2:21
## 1169         69   -214748340   -214748365        FALSE                2:21
## 1170         69   -214748340   -214748365        FALSE                2:21
## 1171         69   -214748340   -214748365        FALSE                2:21
## 1172         69   -214748340   -214748365        FALSE                2:18
## 1173         71           25            0         TRUE                2:00
## 1174         71           25           14        FALSE                1:38
## 1175         71           25           14        FALSE                1:33
## 1176         71           28           21        FALSE                1:25
## 1177         71           28           21        FALSE                1:22
## 1178         71           28            1        FALSE                1:17
## 1179         72   -214748340   -214748365         TRUE                1:17
## 1180         73   -214748340   -214748365         TRUE                1:17
## 1181         73           27            0         TRUE                56.8
## 1182         73   -214748340   -214748365        FALSE                56.8
## 1183         73           25            0        FALSE                46.5
## 1184         73           25            0        FALSE                43.4
## 1185         75           26           -2         TRUE                42.6
## 1186         75   -214748340   -214748365        FALSE                37.0
## 1187         75           23            3        FALSE                31.4
## 1188         75   -214748340   -214748365        FALSE                31.4
## 1189         75   -214748340   -214748365        FALSE                31.4
## 1190         75   -214748340   -214748365         TRUE                31.4
## 1191         75   -214748340   -214748365        FALSE                31.4
## 1192         75           37           20        FALSE                 7.0
## 1193         75           38           24         TRUE                 1.1
## 1194         75   -214748340   -214748365        FALSE                 1.1
## 1195         75   -214748340   -214748365        FALSE                 0.0
## 1196         75   -214748340   -214748365        FALSE                 0.0
## 1197          0   -214748340   -214748365        FALSE               10:00
## 1198          2           26            3         TRUE                9:45
## 1199          2            4           14        FALSE                9:28
## 1200          2            8           19        FALSE                9:12
## 1201          2            8           19        FALSE                9:08
## 1202          2           37           15        FALSE                9:00
## 1203          2           37           15        FALSE                8:57
## 1204          2           34           23        FALSE                8:50
## 1205          2           34           23        FALSE                8:47
## 1206          2           46           14        FALSE                8:41
## 1207          4           15           11         TRUE                8:23
## 1208          4           28            1        FALSE                8:02
## 1209          4            4           17        FALSE                7:55
## 1210          4            4           17        FALSE                7:49
## 1211          4           42           20         TRUE                7:46
## 1212          6           24           21         TRUE                7:33
## 1213          6           27            2         TRUE                7:13
## 1214          8           18           19         TRUE                7:01
## 1215          8           24           19        FALSE                6:49
## 1216          8           24           19        FALSE                6:45
## 1217         11           38           24         TRUE                6:38
## 1218         11   -214748340   -214748365        FALSE                6:36
## 1219         11   -214748340   -214748365        FALSE                6:36
## 1220         11           26            7        FALSE                6:13
## 1221         11            3            1        FALSE                5:59
## 1222         11            3            1        FALSE                5:57
## 1223         11           28           24        FALSE                5:54
## 1224         11           28           24        FALSE                5:54
## 1225         11   -214748340   -214748365        FALSE                5:54
## 1226         11   -214748340   -214748365        FALSE                5:54
## 1227         11   -214748340   -214748365        FALSE                5:54
## 1228         11   -214748340   -214748365        FALSE                5:54
## 1229         11           26           11        FALSE                5:42
## 1230         11   -214748340   -214748365        FALSE                5:38
## 1231         11           26           11        FALSE                5:38
## 1232         13           21           13         TRUE                5:31
## 1233         13           17            2        FALSE                5:25
## 1234         13           25            2         TRUE                5:12
## 1235         13           19            3        FALSE                5:06
## 1236         13   -214748340   -214748365        FALSE                5:06
## 1237         13   -214748340   -214748365        FALSE                5:06
## 1238         14   -214748340   -214748365         TRUE                5:06
## 1239         14           17            2        FALSE                4:53
## 1240         16           24            2         TRUE                4:48
## 1241         16           38            0        FALSE                4:39
## 1242         16           38            0        FALSE                4:39
## 1243         16   -214748340   -214748365        FALSE                4:39
## 1244         16   -214748340   -214748365        FALSE                4:39
## 1245         16   -214748340   -214748365        FALSE                4:39
## 1246         16           11           25        FALSE                4:22
## 1247         16           11           31        FALSE                4:22
## 1248         16   -214748340   -214748365        FALSE                4:22
## 1249         16           20           21        FALSE                3:58
## 1250         16           20           21        FALSE                3:56
## 1251         16            3            9        FALSE                3:55
## 1252         16           25            6         TRUE                3:42
## 1253         18           26            2         TRUE                3:30
## 1254         18            2           10         TRUE                3:19
## 1255         18           25            3        FALSE                3:01
## 1256         18           25            3        FALSE                2:57
## 1257         18           14           31        FALSE                2:56
## 1258         18           27           12        FALSE                2:55
## 1259         18           27           12        FALSE                2:52
## 1260         18           25            4         TRUE                2:47
## 1261         18           25            4        FALSE                2:47
## 1262         18   -214748340   -214748365        FALSE                2:47
## 1263         18   -214748340   -214748365         TRUE                2:47
## 1264         18           26           13        FALSE                2:33
## 1265         18           26           13        FALSE                2:30
## 1266         18            6           17         TRUE                2:27
## 1267         18           44           19        FALSE                2:19
## 1268         18           44           19        FALSE                2:19
## 1269         18           28            6        FALSE                2:03
## 1270         18           19            7        FALSE                1:56
## 1271         18           19            7        FALSE                1:54
## 1272         20           25            2         TRUE                1:53
## 1273         20           28            4        FALSE                1:41
## 1274         23           10           22         TRUE                1:29
## 1275         23           44           18        FALSE                1:10
## 1276         23           36           10        FALSE                57.4
## 1277         23           36           10        FALSE                57.4
## 1278         23           25            2         TRUE                39.1
## 1279         23           31            3        FALSE                27.7
## 1280         24   -214748340   -214748365         TRUE                27.7
## 1281         24   -214748340   -214748365        FALSE                27.7
## 1282         25   -214748340   -214748365         TRUE                27.7
## 1283         25           25            3        FALSE                13.2
## 1284         25           25           29        FALSE                 2.5
## 1285         25           25           29        FALSE                 1.7
## 1286         27           25            3         TRUE                 1.7
## 1287         27           28           52        FALSE                 0.0
## 1288         27           23           32        FALSE                 0.0
## 1289         27   -214748340   -214748365        FALSE                 0.0
## 1290         27   -214748340   -214748365        FALSE               10:00
## 1291         27   -214748340   -214748365        FALSE               10:00
## 1292         27   -214748340   -214748365        FALSE               10:00
## 1293         27   -214748340   -214748365        FALSE               10:00
## 1294         27   -214748340   -214748365         TRUE                9:49
## 1295         27           26            1         TRUE                9:49
## 1296         27           24            1        FALSE                9:49
## 1297         27   -214748340   -214748365        FALSE                9:49
## 1298         27            7           14        FALSE                9:49
## 1299         27   -214748340   -214748365        FALSE                9:36
## 1300         27           24            4        FALSE                9:36
## 1301         27   -214748340   -214748365         TRUE                9:36
## 1302         27   -214748340   -214748365         TRUE                9:36
## 1303         27            8           19        FALSE                9:21
## 1304         27            8           19        FALSE                9:16
## 1305         27           38           24        FALSE                9:07
## 1306         27   -214748340   -214748365         TRUE                9:07
## 1307         27   -214748340   -214748365         TRUE                9:07
## 1308         27   -214748340   -214748365         TRUE                9:07
## 1309         27           13            9        FALSE                8:54
## 1310         27           38           25        FALSE                8:41
## 1311         27           25            3        FALSE                8:36
## 1312         27           25            3        FALSE                8:34
## 1313         29           24            3         TRUE                8:34
## 1314         29           25            5        FALSE                8:29
## 1315         29   -214748340   -214748365         TRUE                8:29
## 1316         29   -214748340   -214748365         TRUE                8:29
## 1317         31           26            2         TRUE                8:16
## 1318         31           31            6        FALSE                7:59
## 1319         31           21            5        FALSE                7:55
## 1320         31   -214748340   -214748365        FALSE                7:55
## 1321         31   -214748340   -214748365        FALSE                7:55
## 1322         31           23            9        FALSE                7:42
## 1323         31           23            9        FALSE                7:38
## 1324         31           11           21        FALSE                7:35
## 1325         31           11           21        FALSE                7:35
## 1326         31   -214748340   -214748365        FALSE                7:35
## 1327         31           27            9        FALSE                7:19
## 1328         31           27            9        FALSE                7:18
## 1329         31           25           16        FALSE                7:18
## 1330         31           25           16        FALSE                7:18
## 1331         31   -214748340   -214748365        FALSE                7:18
## 1332         31           28            3        FALSE                7:06
## 1333         31   -214748340   -214748365        FALSE                7:01
## 1334         31           28            3        FALSE                7:01
## 1335         31           29            2        FALSE                6:54
## 1336         31           29            2        FALSE                6:54
## 1337         31           25            7        FALSE                6:52
## 1338         31           25            7        FALSE                6:48
## 1339         31           17           19         TRUE                6:42
## 1340         31           28            4        FALSE                6:27
## 1341         32   -214748340   -214748365         TRUE                6:27
## 1342         32   -214748340   -214748365        FALSE                6:27
## 1343         32   -214748340   -214748365        FALSE                6:27
## 1344         33   -214748340   -214748365         TRUE                6:27
## 1345         33           25            4        FALSE                6:16
## 1346         33           25            4        FALSE                6:13
## 1347         33           43            6        FALSE                6:09
## 1348         33           47            8         TRUE                6:03
## 1349         33           11            9        FALSE                5:45
## 1350         33   -214748340   -214748365        FALSE                5:45
## 1351         33   -214748340   -214748365        FALSE                5:45
## 1352         33           17            0        FALSE                5:24
## 1353         33           17            0        FALSE                5:22
## 1354         33           26            3        FALSE                5:07
## 1355         33           26            3        FALSE                5:04
## 1356         33           26           14         TRUE                4:55
## 1357         35           25            2         TRUE                4:44
## 1358         35           28           25        FALSE                4:28
## 1359         35           28           25        FALSE                4:27
## 1360         35           25           31        FALSE                4:26
## 1361         35           27            6        FALSE                4:21
## 1362         35   -214748340   -214748365        FALSE                4:21
## 1363         35           25           11        FALSE                4:06
## 1364         35           25           11        FALSE                4:03
## 1365         35           32           10        FALSE                3:58
## 1366         35           32           10        FALSE                3:58
## 1367         35   -214748340   -214748365        FALSE                3:58
## 1368         35           36           15        FALSE                3:48
## 1369         35           47            9        FALSE                3:38
## 1370         35           47            9        FALSE                3:34
## 1371         35           24            2         TRUE                3:27
## 1372         35           18           17        FALSE                3:20
## 1373         35   -214748340   -214748365        FALSE                3:20
## 1374         35   -214748340   -214748365        FALSE                3:20
## 1375         36   -214748340   -214748365         TRUE                3:20
## 1376         36           32           11        FALSE                3:04
## 1377         36           32           11        FALSE                3:01
## 1378         36           26            2        FALSE                2:54
## 1379         36   -214748340   -214748365        FALSE                2:54
## 1380         36           21           10        FALSE                2:40
## 1381         36           21           10        FALSE                2:32
## 1382         36           27           11         TRUE                2:26
## 1383         36           17           18        FALSE                2:08
## 1384         36           17           18        FALSE                2:07
## 1385         36           42           21        FALSE                1:55
## 1386         36           42           21        FALSE                1:49
## 1387         39           10           20         TRUE                1:48
## 1388         39           27            4        FALSE                1:38
## 1389         39   -214748340   -214748365         TRUE                1:38
## 1390         39   -214748340   -214748365        FALSE                1:38
## 1391         39   -214748340   -214748365        FALSE                1:38
## 1392         39   -214748340   -214748365        FALSE                1:38
## 1393         39   -214748340   -214748365        FALSE                1:38
## 1394         39   -214748340   -214748365        FALSE                1:38
## 1395         39   -214748340   -214748365        FALSE                1:25
## 1396         39           36            7        FALSE                1:22
## 1397         39   -214748340   -214748365        FALSE                1:22
## 1398         39   -214748340   -214748365        FALSE                1:22
## 1399         39   -214748340   -214748365        FALSE                1:22
## 1400         39   -214748340   -214748365        FALSE                1:22
## 1401         39   -214748340   -214748365        FALSE                1:20
## 1402         39           33           11        FALSE                1:14
## 1403         41           24            1         TRUE                1:08
## 1404         41           16           15         TRUE                53.8
## 1405         41           23            1        FALSE                40.2
## 1406         41           23            1        FALSE                37.7
## 1407         41           31            7        FALSE                26.1
## 1408         41            6           19        FALSE                 2.4
## 1409         41            6           19        FALSE                 2.4
## 1410         41   -214748340   -214748365        FALSE                 0.0
## 1411         41   -214748340   -214748365        FALSE               10:00
## 1412         41   -214748340   -214748365        FALSE               10:00
## 1413         41   -214748340   -214748365        FALSE               10:00
## 1414         41   -214748340   -214748365        FALSE               10:00
## 1415         41   -214748340   -214748365        FALSE               10:00
## 1416         41           10           22        FALSE                9:51
## 1417         41           26            3        FALSE                9:31
## 1418         41           26            3        FALSE                9:27
## 1419         41           25           16        FALSE                9:12
## 1420         41           25           16        FALSE                9:07
## 1421         41           27            2        FALSE                9:05
## 1422         41           27            2        FALSE                9:01
## 1423         41           44           16        FALSE                8:49
## 1424         41           44           16        FALSE                8:45
## 1425         41           19           16         TRUE                8:38
## 1426         41           37           17        FALSE                8:26
## 1427         43           26            4         TRUE                8:20
## 1428         43           25            4        FALSE                8:07
## 1429         43           25            4        FALSE                8:05
## 1430         43           37            8        FALSE                8:05
## 1431         43           25           12         TRUE                7:43
## 1432         43            5           15        FALSE                7:33
## 1433         43            5           15        FALSE                7:30
## 1434         43           26            3         TRUE                7:28
## 1435         43           26            2        FALSE                7:28
## 1436         43   -214748340   -214748365         TRUE                7:28
## 1437         43           26            2        FALSE                7:11
## 1438         43           26            2        FALSE                7:10
## 1439         45           25            2         TRUE                7:09
## 1440         45           13           10        FALSE                6:55
## 1441         45           23            2        FALSE                6:51
## 1442         45   -214748340   -214748365        FALSE                6:51
## 1443         45   -214748340   -214748365        FALSE                6:51
## 1444         45   -214748340   -214748365        FALSE                6:51
## 1445         45   -214748340   -214748365        FALSE                6:51
## 1446         46   -214748340   -214748365         TRUE                6:51
## 1447         46            8            3         TRUE                6:36
## 1448         49           20           26         TRUE                6:26
## 1449         49           10           20         TRUE                6:13
## 1450         49           36            5        FALSE                5:57
## 1451         49           25            4         TRUE                5:54
## 1452         49   -214748340   -214748365        FALSE                5:54
## 1453         49   -214748340   -214748365        FALSE                5:54
## 1454         49   -214748340   -214748365        FALSE                5:54
## 1455         49           25           17        FALSE                5:40
## 1456         49           25           17        FALSE                5:37
## 1457         49           25           16        FALSE                5:33
## 1458         49           25           16        FALSE                5:33
## 1459         49   -214748340   -214748365        FALSE                5:33
## 1460         49           41            5        FALSE                5:21
## 1461         49           27            7        FALSE                5:08
## 1462         49   -214748340   -214748365         TRUE                5:08
## 1463         49   -214748340   -214748365        FALSE                5:08
## 1464         49   -214748340   -214748365         TRUE                5:08
## 1465         49           36            9        FALSE                4:49
## 1466         49           27            2         TRUE                4:44
## 1467         49           35           14        FALSE                4:35
## 1468         49           35           14        FALSE                4:32
## 1469         49           32           13        FALSE                4:28
## 1470         49           32           13        FALSE                4:28
## 1471         49            1           -1        FALSE                4:11
## 1472         49            1           -1        FALSE                4:07
## 1473         49           40           19        FALSE                4:05
## 1474         49           40           19        FALSE                4:02
## 1475         49           28            3        FALSE                4:00
## 1476         49   -214748340   -214748365        FALSE                4:00
## 1477         49   -214748340   -214748365        FALSE                4:00
## 1478         49   -214748340   -214748365        FALSE                4:00
## 1479         49   -214748340   -214748365         TRUE                4:00
## 1480         52           42           20         TRUE                3:42
## 1481         52           16           12        FALSE                3:18
## 1482         54           24            3         TRUE                2:56
## 1483         54   -214748340   -214748365        FALSE                2:49
## 1484         54   -214748340   -214748365        FALSE                2:49
## 1485         54   -214748340   -214748365        FALSE                2:49
## 1486         54           13           23        FALSE                2:33
## 1487         54           13           23        FALSE                2:30
## 1488         54            2            7         TRUE                2:25
## 1489         57            3            9         TRUE                2:08
## 1490         57           12            8        FALSE                1:45
## 1491         57           12            8        FALSE                1:41
## 1492         57           25            6        FALSE                1:40
## 1493         57           25            6        FALSE                1:40
## 1494         60           12           21         TRUE                1:19
## 1495         60           38            9        FALSE                55.3
## 1496         60           38            9        FALSE                52.3
## 1497         60           38           22        FALSE                49.2
## 1498         60           26            3        FALSE                46.8
## 1499         60           26            3        FALSE                44.9
## 1500         60           26            1         TRUE                44.8
## 1501         60           20            0        FALSE                24.5
## 1502         60           20            0        FALSE                21.7
## 1503         60           30            6        FALSE                16.8
## 1504         60   -214748340   -214748365         TRUE                16.8
## 1505         60   -214748340   -214748365        FALSE                16.8
## 1506         60   -214748340   -214748365         TRUE                16.8
## 1507         60           31           18        FALSE                 2.1
## 1508         60           31           18        FALSE                 0.1
## 1509         60   -214748340   -214748365        FALSE                 0.0
## 1510         60   -214748340   -214748365        FALSE               10:00
## 1511         60   -214748340   -214748365        FALSE               10:00
## 1512         60   -214748340   -214748365        FALSE               10:00
## 1513         62           18            4         TRUE                9:41
## 1514         62           29           26        FALSE                9:29
## 1515         62           29           26        FALSE                9:23
## 1516         62            9           28        FALSE                9:08
## 1517         62           39           21        FALSE                9:08
## 1518         62           14           16        FALSE                8:53
## 1519         62           14           16        FALSE                8:43
## 1520         62           25            3        FALSE                8:42
## 1521         62           25            3        FALSE                8:37
## 1522         64           25            3         TRUE                8:27
## 1523         64           25            3        FALSE                8:14
## 1524         64           25            3        FALSE                8:09
## 1525         64           44           17        FALSE                8:06
## 1526         64           44           17        FALSE                8:04
## 1527         64           40           19         TRUE                7:58
## 1528         64           27            2        FALSE                7:36
## 1529         64           27            2        FALSE                7:34
## 1530         64           26            3         TRUE                7:28
## 1531         64           26            2        FALSE                7:28
## 1532         64   -214748340   -214748365        FALSE                7:28
## 1533         64   -214748340   -214748365        FALSE                7:28
## 1534         64   -214748340   -214748365        FALSE                7:28
## 1535         64   -214748340   -214748365        FALSE                7:28
## 1536         64   -214748340   -214748365        FALSE                7:24
## 1537         64           26           13         TRUE                7:15
## 1538         64           35           24        FALSE                7:04
## 1539         64           35           24        FALSE                7:02
## 1540         64   -214748340   -214748365        FALSE                7:01
## 1541         64           36           25        FALSE                6:51
## 1542         64   -214748340   -214748365        FALSE                6:51
## 1543         64   -214748340   -214748365        FALSE                6:51
## 1544         64   -214748340   -214748365        FALSE                6:51
## 1545         64   -214748340   -214748365        FALSE                6:51
## 1546         64           25            2         TRUE                6:44
## 1547         64            6           16        FALSE                6:34
## 1548         64            6           16        FALSE                6:31
## 1549         64           23            3        FALSE                6:29
## 1550         64           23            3        FALSE                6:27
## 1551         64           28            3        FALSE                6:19
## 1552         64   -214748340   -214748365        FALSE                6:17
## 1553         64   -214748340   -214748365        FALSE                6:17
## 1554         64           28            3        FALSE                6:17
## 1555         64           24            2        FALSE                6:03
## 1556         64           24            2        FALSE                6:01
## 1557         64           27            2         TRUE                5:44
## 1558         64           40           21        FALSE                5:23
## 1559         64           40           21        FALSE                5:20
## 1560         64           25            3        FALSE                5:03
## 1561         64           25            3        FALSE                5:01
## 1562         64           11           20        FALSE                4:54
## 1563         64           11           20        FALSE                4:48
## 1564         64           37           22        FALSE                4:41
## 1565         64           37           22        FALSE                4:39
## 1566         64   -214748340   -214748365        FALSE                4:37
## 1567         64   -214748340   -214748365        FALSE                4:37
## 1568         64   -214748340   -214748365        FALSE                4:37
## 1569         64   -214748340   -214748365        FALSE                4:37
## 1570         64   -214748340   -214748365        FALSE                4:33
## 1571         64   -214748340   -214748365        FALSE                4:33
## 1572         64           25            1         TRUE                4:30
## 1573         64           25            4        FALSE                4:11
## 1574         64           25            4        FALSE                4:08
## 1575         64           18           15        FALSE                3:52
## 1576         64           18           15        FALSE                3:50
## 1577         66           11            5         TRUE                3:32
## 1578         66           24            3        FALSE                3:07
## 1579         66   -214748340   -214748365         TRUE                3:07
## 1580         66   -214748340   -214748365        FALSE                3:07
## 1581         66   -214748340   -214748365         TRUE                3:07
## 1582         66           21            2        FALSE                2:54
## 1583         66   -214748340   -214748365        FALSE                2:54
## 1584         66   -214748340   -214748365        FALSE                2:54
## 1585         66   -214748340   -214748365        FALSE                2:54
## 1586         66   -214748340   -214748365        FALSE                2:54
## 1587         67   -214748340   -214748365         TRUE                2:54
## 1588         67           27            3        FALSE                2:38
## 1589         67           27            3        FALSE                2:38
## 1590         67            2            1        FALSE                2:30
## 1591         67            2            1        FALSE                2:30
## 1592         67           12            2        FALSE                2:30
## 1593         67   -214748340   -214748365        FALSE                2:24
## 1594         67           37           13        FALSE                2:21
## 1595         67           37           13        FALSE                2:16
## 1596         67           21           13         TRUE                2:06
## 1597         67           41           19        FALSE                1:55
## 1598         67           41           19        FALSE                1:54
## 1599         69           25            1         TRUE                1:53
## 1600         69   -214748340   -214748365        FALSE                1:49
## 1601         69   -214748340   -214748365        FALSE                1:49
## 1602         69   -214748340   -214748365        FALSE                1:49
## 1603         69   -214748340   -214748365        FALSE                1:49
## 1604         69           26           12        FALSE                1:38
## 1605         69           26           12        FALSE                1:35
## 1606         69            6           19        FALSE                1:29
## 1607         69            6           19        FALSE                1:25
## 1608         69           17           24         TRUE                1:09
## 1609         69           25           20        FALSE                58.9
## 1610         69           25           20        FALSE                54.7
## 1611         69           25            2         TRUE                53.2
## 1612         69   -214748340   -214748365        FALSE                53.2
## 1613         69   -214748340   -214748365        FALSE                53.2
## 1614         69           15           14        FALSE                40.4
## 1615         69           15           14        FALSE                40.3
## 1616         71           24            4         TRUE                36.7
## 1617         71           24            4        FALSE                21.2
## 1618         71           24            4        FALSE                16.5
## 1619         71           32           16        FALSE                14.6
## 1620         71           32           16        FALSE                12.7
## 1621         71           42            9         TRUE                 9.1
## 1622         71            9           22        FALSE                 2.0
## 1623         71            9           22        FALSE                 0.1
## 1624         71   -214748340   -214748365        FALSE                 0.0
## 1625         71   -214748340   -214748365        FALSE                 0.0
## 1626          0   -214748340   -214748365        FALSE               10:00
## 1627          0           35            6        FALSE                9:48
## 1628          3           48           14         TRUE                9:42
## 1629          3           32            3        FALSE                9:20
## 1630          3           32            3        FALSE                9:17
## 1631          3           50            9        FALSE                9:02
## 1632          3           50            9        FALSE                8:58
## 1633          3           29            0         TRUE                8:43
## 1634          6           48           15         TRUE                8:26
## 1635          6           14           24         TRUE                8:07
## 1636          6           14           -2        FALSE                8:05
## 1637          6           26            2         TRUE                8:01
## 1638          6           26           15        FALSE                7:47
## 1639          6           26           15        FALSE                7:47
## 1640          6           48            1         TRUE                7:29
## 1641          6           21           10        FALSE                7:24
## 1642          6           23            2         TRUE                7:20
## 1643          6           17           -2        FALSE                7:10
## 1644          6           41            3        FALSE                7:03
## 1645          6           41            3        FALSE                6:59
## 1646          6           36           17        FALSE                6:53
## 1647          6           36           17        FALSE                6:50
## 1648          6           15           23        FALSE                6:43
## 1649          6           15           23        FALSE                6:40
## 1650          6           44           15        FALSE                6:30
## 1651          6           44           15        FALSE                6:27
## 1652          8           12            1         TRUE                6:21
## 1653          8           21           25        FALSE                6:04
## 1654         10           27            1         TRUE                5:51
## 1655         10           19           20        FALSE                5:34
## 1656         10           50           -1        FALSE                5:26
## 1657         10           50           -1        FALSE                5:23
## 1658         10           27            1         TRUE                5:18
## 1659         10           49            0        FALSE                4:59
## 1660         10           49            0        FALSE                4:56
## 1661         10           10           16        FALSE                4:48
## 1662         10           12            8        FALSE                4:48
## 1663         10   -214748340   -214748365        FALSE                4:48
## 1664         10   -214748340   -214748365        FALSE                4:48
## 1665         10   -214748340   -214748365        FALSE                4:48
## 1666         10   -214748340   -214748365        FALSE                4:48
## 1667         10   -214748340   -214748365        FALSE                4:48
## 1668         10   -214748340   -214748365        FALSE                4:48
## 1669         12           25            5         TRUE                4:30
## 1670         12           15           18        FALSE                4:10
## 1671         12           15           18        FALSE                4:07
## 1672         12           44            2        FALSE                3:59
## 1673         12           44            2        FALSE                3:57
## 1674         12           39            4        FALSE                3:48
## 1675         12           39            4        FALSE                3:45
## 1676         12           48           11        FALSE                3:33
## 1677         12           48           11        FALSE                3:30
## 1678         12           10           17        FALSE                3:16
## 1679         14           28            1         TRUE                3:12
## 1680         14           17           14        FALSE                2:46
## 1681         14   -214748340   -214748365        FALSE                2:46
## 1682         14   -214748340   -214748365        FALSE                2:46
## 1683         14   -214748340   -214748365        FALSE                2:46
## 1684         16           17            1         TRUE                2:30
## 1685         16            2            2         TRUE                2:17
## 1686         19           32           26         TRUE                2:04
## 1687         19           14           24         TRUE                1:44
## 1688         19           39           24        FALSE                1:27
## 1689         19           39           24        FALSE                1:26
## 1690         19           27            3        FALSE                1:26
## 1691         19   -214748340   -214748365        FALSE                1:26
## 1692         19   -214748340   -214748365        FALSE                1:26
## 1693         19            2           17        FALSE                1:26
## 1694         19           36            2        FALSE                1:05
## 1695         19           36            2        FALSE                1:01
## 1696         19           28            1        FALSE                43.6
## 1697         19           28            1        FALSE                41.7
## 1698         19           27            3         TRUE                38.3
## 1699         19           11           21        FALSE                16.1
## 1700         19           11           21        FALSE                12.6
## 1701         19           19            8        FALSE                 1.1
## 1702         19           19            8        FALSE                 1.1
## 1703         19   -214748340   -214748365        FALSE                 0.0
## 1704         19   -214748340   -214748365        FALSE               10:00
## 1705         19   -214748340   -214748365        FALSE               10:00
## 1706         19           43           23        FALSE                9:46
## 1707         19            2           -1        FALSE                9:37
## 1708         19            2           -1        FALSE                9:35
## 1709         19           28            2        FALSE                9:35
## 1710         20   -214748340   -214748365         TRUE                9:35
## 1711         21   -214748340   -214748365         TRUE                9:35
## 1712         21            9            9        FALSE                9:19
## 1713         21            9            9        FALSE                9:15
## 1714         21           22            3         TRUE                9:05
## 1715         21           16            5        FALSE                8:55
## 1716         21           16            5        FALSE                8:50
## 1717         21           27            2         TRUE                8:39
## 1718         21           32            2        FALSE                8:28
## 1719         21   -214748340   -214748365        FALSE                8:28
## 1720         21   -214748340   -214748365        FALSE                8:28
## 1721         21           22            3        FALSE                8:23
## 1722         21   -214748340   -214748365        FALSE                8:23
## 1723         21   -214748340   -214748365        FALSE                8:23
## 1724         22   -214748340   -214748365         TRUE                8:23
## 1725         22           44            4        FALSE                8:09
## 1726         22   -214748340   -214748365        FALSE                8:09
## 1727         22            3           15         TRUE                8:03
## 1728         22           25           26        FALSE                7:51
## 1729         22           25           26        FALSE                7:48
## 1730         22           30            3        FALSE                7:42
## 1731         22           30            3        FALSE                7:41
## 1732         22           16            3        FALSE                7:23
## 1733         22           16            3        FALSE                7:22
## 1734         22           23            3        FALSE                7:21
## 1735         22           23            3        FALSE                7:19
## 1736         22           28            4        FALSE                7:13
## 1737         22           28            4        FALSE                7:10
## 1738         22           23            7        FALSE                7:07
## 1739         22           23            7        FALSE                7:07
## 1740         24           30            1         TRUE                7:06
## 1741         24           31            2        FALSE                7:06
## 1742         22   -214748340   -214748365        FALSE                7:06
## 1743         22   -214748340   -214748365        FALSE                7:06
## 1744         25   -214748340   -214748365         TRUE                7:06
## 1745         25           26            5        FALSE                6:49
## 1746         25   -214748340   -214748365         TRUE                6:49
## 1747         25   -214748340   -214748365         TRUE                6:49
## 1748         25           14           10        FALSE                6:35
## 1749         25           22            5        FALSE                6:18
## 1750         25   -214748340   -214748365         TRUE                6:18
## 1751         25   -214748340   -214748365        FALSE                6:18
## 1752         25   -214748340   -214748365         TRUE                6:18
## 1753         25           18            6        FALSE                5:54
## 1754         25           18            6        FALSE                5:51
## 1755         25           24            4        FALSE                5:51
## 1756         25   -214748340   -214748365        FALSE                5:51
## 1757         25            9           10        FALSE                5:36
## 1758         25            9           10        FALSE                5:31
## 1759         25           15           21        FALSE                5:21
## 1760         25           15           21        FALSE                5:17
## 1761         25           28            3        FALSE                5:13
## 1762         25           28            3        FALSE                5:13
## 1763         25           24            5        FALSE                5:13
## 1764         25   -214748340   -214748365         TRUE                5:13
## 1765         25   -214748340   -214748365         TRUE                5:13
## 1766         25           17            1        FALSE                4:51
## 1767         25           17            1        FALSE                4:49
## 1768         25           26            3         TRUE                4:46
## 1769         25            5           14        FALSE                4:35
## 1770         25            5           14        FALSE                4:32
## 1771         25           20            3        FALSE                4:29
## 1772         25           20            3        FALSE                4:26
## 1773         25           28            6        FALSE                4:17
## 1774         25           28            6        FALSE                4:15
## 1775         25           35           12        FALSE                4:10
## 1776         25   -214748340   -214748365        FALSE                4:05
## 1777         25   -214748340   -214748365        FALSE                4:05
## 1778         25           30           25         TRUE                3:56
## 1779         25            4           41        FALSE                3:49
## 1780         26   -214748340   -214748365         TRUE                3:49
## 1781         26   -214748340   -214748365        FALSE                3:49
## 1782         27   -214748340   -214748365         TRUE                3:49
## 1783         27           22           19        FALSE                3:33
## 1784         27           31           21        FALSE                3:29
## 1785         27           25            8        FALSE                3:24
## 1786         27   -214748340   -214748365         TRUE                3:24
## 1787         27   -214748340   -214748365        FALSE                3:24
## 1788         27   -214748340   -214748365        FALSE                3:21
## 1789         27           17           13        FALSE                3:00
## 1790         27           17           13        FALSE                2:59
## 1791         27           16            3        FALSE                2:59
## 1792         27           32           12        FALSE                2:52
## 1793         27   -214748340   -214748365         TRUE                2:52
## 1794         27   -214748340   -214748365        FALSE                2:52
## 1795         27   -214748340   -214748365         TRUE                2:52
## 1796         27           20            2        FALSE                2:35
## 1797         27           20            2        FALSE                2:32
## 1798         27           24            8        FALSE                2:22
## 1799         27           24            8        FALSE                2:19
## 1800         27           25           26        FALSE                2:13
## 1801         27           25           26        FALSE                2:11
## 1802         27   -214748340   -214748365        FALSE                2:11
## 1803         27           14           15        FALSE                2:01
## 1804         27           14           15        FALSE                1:59
## 1805         27           21            8        FALSE                1:48
## 1806         27           21            8        FALSE                1:44
## 1807         27           17            3        FALSE                1:32
## 1808         27           17            3        FALSE                1:29
## 1809         27           26            8        FALSE                1:21
## 1810         27           26            8        FALSE                1:19
## 1811         27           21           17        FALSE                1:17
## 1812         27   -214748340   -214748365        FALSE                1:17
## 1813         27   -214748340   -214748365        FALSE                1:17
## 1814         27   -214748340   -214748365        FALSE                1:17
## 1815         28   -214748340   -214748365         TRUE                1:17
## 1816         28            9           15        FALSE                56.9
## 1817         28            9           15        FALSE                54.7
## 1818         28           35           -1        FALSE                53.4
## 1819         28           22            9        FALSE                37.1
## 1820         28           22            9        FALSE                35.4
## 1821         28           21            3        FALSE                27.8
## 1822         28           21            3        FALSE                25.5
## 1823         28           22            2         TRUE                23.2
## 1824         28           21            2        FALSE                23.2
## 1825         28   -214748340   -214748365        FALSE                23.2
## 1826         28   -214748340   -214748365        FALSE                23.2
## 1827         28   -214748340   -214748365         TRUE                23.2
## 1828         28   -214748340   -214748365        FALSE                11.5
## 1829         28   -214748340   -214748365        FALSE                11.5
## 1830         28   -214748340   -214748365        FALSE                11.5
## 1831         28           24           13        FALSE                 2.8
## 1832         29   -214748340   -214748365         TRUE                 2.8
## 1833         30   -214748340   -214748365         TRUE                 2.8
## 1834         30           42           16        FALSE                 0.1
## 1835         30           42           16        FALSE                 0.1
## 1836         30   -214748340   -214748365        FALSE                 0.0
## 1837         30   -214748340   -214748365        FALSE               10:00
## 1838         30   -214748340   -214748365        FALSE               10:00
## 1839         30   -214748340   -214748365        FALSE               10:00
## 1840         32            9            2         TRUE                9:40
## 1841         32           43           20        FALSE                9:17
## 1842         32            2           13        FALSE                9:07
## 1843         32            2           13        FALSE                9:05
## 1844         32           23           25        FALSE                9:04
## 1845         32           23           25        FALSE                9:04
## 1846         32           39           25        FALSE                8:52
## 1847         32           39           25        FALSE                8:50
## 1848         34           28            2         TRUE                8:49
## 1849         34           18           21        FALSE                8:30
## 1850         34           18           21        FALSE                8:28
## 1851         34           15           15        FALSE                8:06
## 1852         34           15           15        FALSE                8:03
## 1853         34           21            5        FALSE                8:03
## 1854         34           40           21        FALSE                7:50
## 1855         36           29            3         TRUE                7:48
## 1856         36   -214748340   -214748365        FALSE                7:37
## 1857         36           23            1        FALSE                7:19
## 1858         36   -214748340   -214748365        FALSE                7:19
## 1859         36   -214748340   -214748365        FALSE                7:19
## 1860         36   -214748340   -214748365         TRUE                7:19
## 1861         36            9           23        FALSE                7:06
## 1862         36            9           23        FALSE                7:02
## 1863         36           40           18        FALSE                6:47
## 1864         36   -214748340   -214748365        FALSE                6:47
## 1865         36   -214748340   -214748365        FALSE                6:47
## 1866         36           35            6        FALSE                6:41
## 1867         36           35            6        FALSE                6:41
## 1868         36           44            0        FALSE                6:38
## 1869         36           44            0        FALSE                6:35
## 1870         36           42           18        FALSE                6:25
## 1871         36           32            1        FALSE                6:11
## 1872         36           32            1        FALSE                6:09
## 1873         36           33           25        FALSE                6:00
## 1874         36           33           25        FALSE                5:56
## 1875         36           40           22        FALSE                5:52
## 1876         36           40           22        FALSE                5:52
## 1877         36   -214748340   -214748365        FALSE                5:52
## 1878         36   -214748340   -214748365        FALSE                5:52
## 1879         36           26           28        FALSE                5:36
## 1880         36           26           28        FALSE                5:35
## 1881         36           26            4        FALSE                5:35
## 1882         36   -214748340   -214748365        FALSE                5:35
## 1883         36           32           25        FALSE                5:27
## 1884         36           32           25        FALSE                5:23
## 1885         36           29            3        FALSE                5:23
## 1886         36           29            3        FALSE                5:23
## 1887         36           28            1        FALSE                5:17
## 1888         36   -214748340   -214748365         TRUE                5:17
## 1889         36   -214748340   -214748365        FALSE                5:17
## 1890         36   -214748340   -214748365         TRUE                5:17
## 1891         36            6           19        FALSE                5:02
## 1892         36            6           19        FALSE                4:58
## 1893         36           29            3        FALSE                4:54
## 1894         36           29            3        FALSE                4:54
## 1895         36           29            3        FALSE                4:54
## 1896         36   -214748340   -214748365         TRUE                4:54
## 1897         36   -214748340   -214748365         TRUE                4:54
## 1898         36           26            6        FALSE                4:34
## 1899         36           26            6        FALSE                4:32
## 1900         36           43           19        FALSE                4:28
## 1901         36           41           17        FALSE                4:28
## 1902         36           25            8        FALSE                4:09
## 1903         36           21            6        FALSE                4:05
## 1904         38           22            3         TRUE                3:53
## 1905         38           13           23        FALSE                3:23
## 1906         38           13           23        FALSE                3:20
## 1907         38           25            3        FALSE                3:10
## 1908         38           25            3        FALSE                3:10
## 1909         38           24           13        FALSE                2:54
## 1910         38           24           17        FALSE                2:46
## 1911         38           24           17        FALSE                2:42
## 1912         38           18            9        FALSE                2:26
## 1913         38   -214748340   -214748365        FALSE                2:26
## 1914         38           48            0        FALSE                2:12
## 1915         38           48            0        FALSE                2:06
## 1916         38           35           10        FALSE                2:03
## 1917         38           35           10        FALSE                2:00
## 1918         40           25            3         TRUE                1:53
## 1919         40           48           -1         TRUE                1:29
## 1920         40           12            5        FALSE                1:05
## 1921         40           12            5        FALSE                1:03
## 1922         40           12           21         TRUE                57.0
## 1923         40           30           20        FALSE                48.6
## 1924         40           30           20        FALSE                44.0
## 1925         40           16           23        FALSE                38.1
## 1926         40           16           23        FALSE                35.3
## 1927         40           15            7        FALSE                11.7
## 1928         40           15            7        FALSE                 9.8
## 1929         40           46           13        FALSE                 3.2
## 1930         40           46           13        FALSE                 0.6
## 1931         40   -214748340   -214748365        FALSE                 0.0
## 1932         40   -214748340   -214748365        FALSE               10:00
## 1933         40   -214748340   -214748365        FALSE               10:00
## 1934         40   -214748340   -214748365        FALSE               10:00
## 1935         40   -214748340   -214748365        FALSE               10:00
## 1936         40   -214748340   -214748365        FALSE               10:00
## 1937         40   -214748340   -214748365        FALSE               10:00
## 1938         40   -214748340   -214748365        FALSE               10:00
## 1939         40            9            3         TRUE                9:46
## 1940         40           31           23        FALSE                9:33
## 1941         40            8           21        FALSE                9:28
## 1942         40            8           21        FALSE                9:23
## 1943         40           14            2        FALSE                9:16
## 1944         40           28            1         TRUE                9:09
## 1945         40           14            4        FALSE                9:03
## 1946         42           13            3         TRUE                8:55
## 1947         42           42           19        FALSE                8:32
## 1948         42           42           19        FALSE                8:29
## 1949         42           10           22        FALSE                8:23
## 1950         42           10           22        FALSE                8:20
## 1951         42           16            5        FALSE                8:10
## 1952         42           20            4        FALSE                7:56
## 1953         42           20            4        FALSE                7:55
## 1954         44           30            3         TRUE                7:55
## 1955         44           46           14        FALSE                7:36
## 1956         44           46           14        FALSE                7:34
## 1957         44           15           11        FALSE                7:26
## 1958         44           28            0         TRUE                7:21
## 1959         46           26            2         TRUE                6:59
## 1960         46           40            8        FALSE                6:46
## 1961         46           40            8        FALSE                6:44
## 1962         46   -214748340   -214748365        FALSE                6:44
## 1963         46   -214748340   -214748365        FALSE                6:44
## 1964         46   -214748340   -214748365        FALSE                6:44
## 1965         46           49            1        FALSE                6:27
## 1966         46           49            1        FALSE                6:25
## 1967         46           29           16        FALSE                6:10
## 1968         46           29           16        FALSE                6:06
## 1969         46           25           26        FALSE                6:00
## 1970         46           25           26        FALSE                5:57
## 1971         46           33            6        FALSE                5:40
## 1972         46   -214748340   -214748365        FALSE                5:40
## 1973         46   -214748340   -214748365        FALSE                5:40
## 1974         46   -214748340   -214748365        FALSE                5:40
## 1975         46   -214748340   -214748365        FALSE                5:40
## 1976         46   -214748340   -214748365         TRUE                5:40
## 1977         46   -214748340   -214748365         TRUE                5:40
## 1978         46           15           15        FALSE                5:19
## 1979         46           15           15        FALSE                5:16
## 1980         46           13           12        FALSE                5:07
## 1981         46           20           27        FALSE                4:56
## 1982         46           20           27        FALSE                4:53
## 1983         46           31            3        FALSE                4:46
## 1984         47   -214748340   -214748365         TRUE                4:46
## 1985         47   -214748340   -214748365        FALSE                4:46
## 1986         47   -214748340   -214748365        FALSE                4:46
## 1987         48   -214748340   -214748365         TRUE                4:46
## 1988         48           20            1         TRUE                4:28
## 1989         48           25            4        FALSE                4:18
## 1990         49   -214748340   -214748365         TRUE                4:18
## 1991         50   -214748340   -214748365         TRUE                4:18
## 1992         50           30           -1        FALSE                3:53
## 1993         50   -214748340   -214748365        FALSE                3:53
## 1994         50           36           23        FALSE                3:39
## 1995         50           36           23        FALSE                3:39
## 1996         50   -214748340   -214748365        FALSE                3:39
## 1997         50           28            1         TRUE                3:19
## 1998         50            9           21        FALSE                2:55
## 1999         50            9           21        FALSE                2:55
## 2000         50   -214748340   -214748365        FALSE                2:55
## 2001         50   -214748340   -214748365        FALSE                2:55
## 2002         50           30           13        FALSE                2:38
## 2003         50           30           13        FALSE                2:33
## 2004         50           13           11        FALSE                2:24
## 2005         50           13           11        FALSE                2:21
## 2006         50           25            6        FALSE                2:13
## 2007         50   -214748340   -214748365        FALSE                2:13
## 2008         50   -214748340   -214748365        FALSE                2:13
## 2009         50   -214748340   -214748365        FALSE                2:13
## 2010         50   -214748340   -214748365        FALSE                2:13
## 2011         50   -214748340   -214748365        FALSE                2:13
## 2012         50   -214748340   -214748365         TRUE                2:13
## 2013         53            7           22         TRUE                2:03
## 2014         53           31            8        FALSE                1:47
## 2015         53           31            8        FALSE                1:43
## 2016         53           24           22        FALSE                1:38
## 2017         54   -214748340   -214748365         TRUE                1:38
## 2018         55   -214748340   -214748365         TRUE                1:38
## 2019         55           33            4        FALSE                1:27
## 2020         55           33            4        FALSE                1:25
## 2021         55           12            5        FALSE                1:09
## 2022         55           12            5        FALSE                1:07
## 2023         55   -214748340   -214748365        FALSE                1:04
## 2024         55           31           24        FALSE                57.0
## 2025         55            4            1        FALSE                46.9
## 2026         55            4            1        FALSE                42.3
## 2027         55           50            1        FALSE                29.4
## 2028         55           50            1        FALSE                25.9
## 2029         55           27            5        FALSE                20.2
## 2030         55           27            5        FALSE                17.8
## 2031         55           23           16        FALSE                13.7
## 2032         55           23           16        FALSE                13.7
## 2033         55           26            8        FALSE                11.9
## 2034         55   -214748340   -214748365        FALSE                11.9
## 2035         55   -214748340   -214748365        FALSE                11.9
## 2036         56   -214748340   -214748365         TRUE                11.9
## 2037         56   -214748340   -214748365        FALSE                 0.0
## 2038         56   -214748340   -214748365        FALSE                 0.0
## 2039          0   -214748340   -214748365        FALSE               10:00
## 2040          0           25            5        FALSE                9:44
## 2041          0           25            5        FALSE                9:40
## 2042          0           18            7        FALSE                9:36
## 2043          0   -214748340   -214748365         TRUE                9:36
## 2044          0   -214748340   -214748365         TRUE                9:36
## 2045          0           36           21        FALSE                9:26
## 2046          0           36           21        FALSE                9:22
## 2047          0           40           21        FALSE                9:07
## 2048          0           40           21        FALSE                9:04
## 2049          0           27            3        FALSE                9:04
## 2050          0           40           19         TRUE                8:54
## 2051          0           20            5        FALSE                8:31
## 2052          0           20            5        FALSE                8:27
## 2053          0           27            7         TRUE                8:23
## 2054          2           18            2         TRUE                8:12
## 2055          2           12           10        FALSE                7:57
## 2056          2           12           10        FALSE                7:54
## 2057          2           37           15        FALSE                7:49
## 2058          2           37           15        FALSE                7:46
## 2059          2           23            2        FALSE                7:45
## 2060          2           23            2        FALSE                7:45
## 2061          4           24            0         TRUE                7:38
## 2062          4           42           12        FALSE                7:22
## 2063          4           42           12        FALSE                7:18
## 2064          4           42           11        FALSE                7:10
## 2065          4           42           11        FALSE                7:07
## 2066          4           39           10         TRUE                7:04
## 2067          4           20           11        FALSE                6:47
## 2068          5   -214748340   -214748365         TRUE                6:47
## 2069          5   -214748340   -214748365        FALSE                6:47
## 2070          6   -214748340   -214748365         TRUE                6:47
## 2071          6           27           19         TRUE                6:35
## 2072          6           32           25        FALSE                6:24
## 2073          6           32           25        FALSE                6:20
## 2074          6           18           19        FALSE                6:12
## 2075          6           18           19        FALSE                6:09
## 2076          6           46           10        FALSE                6:01
## 2077          6           46           10        FALSE                5:58
## 2078          6           11           10         TRUE                5:51
## 2079          6           25           23        FALSE                5:42
## 2080          6           27           12         TRUE                5:32
## 2081          6           24            8        FALSE                5:18
## 2082          6           24            8        FALSE                5:13
## 2083          6           25            8        FALSE                5:09
## 2084          8           24            1         TRUE                5:03
## 2085          8           35           18         TRUE                4:46
## 2086         10           32           19         TRUE                4:34
## 2087         10            2            0        FALSE                4:14
## 2088         10            2            0        FALSE                4:10
## 2089         12           25            3         TRUE                4:05
## 2090         12           28            2         TRUE                3:37
## 2091         14           25            1         TRUE                3:23
## 2092         14           30           12        FALSE                3:04
## 2093         14           30           12        FALSE                3:02
## 2094         14           26            2         TRUE                3:02
## 2095         14           26            2        FALSE                3:02
## 2096         14   -214748340   -214748365        FALSE                3:02
## 2097         14   -214748340   -214748365        FALSE                3:02
## 2098         14   -214748340   -214748365        FALSE                3:02
## 2099         14   -214748340   -214748365        FALSE                3:02
## 2100         14   -214748340   -214748365        FALSE                3:02
## 2101         14   -214748340   -214748365        FALSE                3:02
## 2102         14   -214748340   -214748365         TRUE                3:02
## 2103         16           23            1         TRUE                2:50
## 2104         16           17            1        FALSE                2:34
## 2105         16           17            1        FALSE                2:31
## 2106         19           46           11         TRUE                2:11
## 2107         19   -214748340   -214748365        FALSE                2:05
## 2108         19           14            2         TRUE                1:56
## 2109         21           21            4         TRUE                1:39
## 2110         21           16            2        FALSE                1:24
## 2111         21   -214748340   -214748365        FALSE                1:24
## 2112         23           12            7         TRUE                1:14
## 2113         23           26            3        FALSE                58.3
## 2114         23           26            3        FALSE                55.7
## 2115         23           10           19        FALSE                47.6
## 2116         23           10           19        FALSE                45.1
## 2117         23   -214748340   -214748365        FALSE                45.1
## 2118         25           22            1         TRUE                27.6
## 2119         25           24           12         TRUE                13.0
## 2120         27           19           12         TRUE                 0.0
## 2121         27   -214748340   -214748365        FALSE                 0.0
## 2122         27           37           18        FALSE                9:35
## 2123         27           12           20        FALSE                9:24
## 2124         27           12           20        FALSE                9:18
## 2125         30           48            1         TRUE                9:15
## 2126         30           23            0        FALSE                8:54
## 2127         30           23            0        FALSE                8:50
## 2128         30           15           31        FALSE                8:49
## 2129         30           47           11        FALSE                8:31
## 2130         30           47           11        FALSE                8:28
## 2131         30           27            2         TRUE                8:26
## 2132         32           30            2         TRUE                8:03
## 2133         32           30            2        FALSE                8:03
## 2134         32   -214748340   -214748365        FALSE                8:03
## 2135         33   -214748340   -214748365         TRUE                8:03
## 2136         33           33           16        FALSE                7:44
## 2137         33           33           16        FALSE                7:40
## 2138         33           18           20        FALSE                7:34
## 2139         33           18           20        FALSE                7:31
## 2140         33           24            2        FALSE                7:21
## 2141         33           24            2        FALSE                7:21
## 2142         33           22            4        FALSE                7:20
## 2143         33           22            4        FALSE                7:20
## 2144         33           23            2        FALSE                7:14
## 2145         33   -214748340   -214748365        FALSE                7:14
## 2146         33   -214748340   -214748365        FALSE                7:14
## 2147         33   -214748340   -214748365        FALSE                7:14
## 2148         33   -214748340   -214748365        FALSE                7:14
## 2149         33   -214748340   -214748365        FALSE                7:14
## 2150         34   -214748340   -214748365         TRUE                7:14
## 2151         34           26            3        FALSE                6:59
## 2152         34           26            3        FALSE                6:56
## 2153         34           31            5        FALSE                6:46
## 2154         34           31            5        FALSE                6:44
## 2155         34           25            7        FALSE                6:43
## 2156         34           25            7        FALSE                6:43
## 2157         34           25            9        FALSE                6:43
## 2158         34           23            1         TRUE                6:33
## 2159         36           16           15         TRUE                6:12
## 2160         36           18            1        FALSE                5:57
## 2161         36           18            1        FALSE                5:55
## 2162         39           24           24         TRUE                5:48
## 2163         39           23            8        FALSE                5:35
## 2164         39   -214748340   -214748365        FALSE                5:35
## 2165         39   -214748340   -214748365        FALSE                5:35
## 2166         39   -214748340   -214748365        FALSE                5:35
## 2167         39   -214748340   -214748365         TRUE                5:35
## 2168         39   -214748340   -214748365         TRUE                5:35
## 2169         39           28            3        FALSE                5:25
## 2170         39           28            3        FALSE                5:22
## 2171         39   -214748340   -214748365        FALSE                5:16
## 2172         39           23            2        FALSE                5:01
## 2173         39           23            2        FALSE                4:56
## 2174         39           12           24        FALSE                4:53
## 2175         39           12           24        FALSE                4:49
## 2176         39           23            7        FALSE                4:42
## 2177         39           23            7        FALSE                4:39
## 2178         39           22            5        FALSE                4:33
## 2179         39   -214748340   -214748365        FALSE                4:33
## 2180         39   -214748340   -214748365        FALSE                4:33
## 2181         39   -214748340   -214748365        FALSE                4:33
## 2182         39           32           16        FALSE                4:29
## 2183         39   -214748340   -214748365        FALSE                4:29
## 2184         39   -214748340   -214748365        FALSE                4:29
## 2185         40   -214748340   -214748365         TRUE                4:29
## 2186         40           42            2        FALSE                4:14
## 2187         40           42            2        FALSE                4:09
## 2188         40           40           13        FALSE                4:02
## 2189         40   -214748340   -214748365        FALSE                4:02
## 2190         40           30           17        FALSE                3:51
## 2191         40           30           17        FALSE                3:46
## 2192         43            7           20         TRUE                3:41
## 2193         43           17           17        FALSE                3:22
## 2194         43           17           17        FALSE                3:18
## 2195         46            9           20         TRUE                3:04
## 2196         46   -214748340   -214748365        FALSE                2:56
## 2197         46   -214748340   -214748365        FALSE                2:56
## 2198         46   -214748340   -214748365        FALSE                2:56
## 2199         46           26            4         TRUE                2:45
## 2200         46           26            4        FALSE                2:45
## 2201         46   -214748340   -214748365        FALSE                2:45
## 2202         46   -214748340   -214748365        FALSE                2:42
## 2203         46           18           32        FALSE                2:38
## 2204         46           23            0         TRUE                2:24
## 2205         46           27           21        FALSE                2:15
## 2206         46           27           21        FALSE                2:12
## 2207         46           24            7         TRUE                2:03
## 2208         46           24            6        FALSE                1:47
## 2209         46           24            6        FALSE                1:44
## 2210         46           12            8        FALSE                1:43
## 2211         46           12            8        FALSE                1:38
## 2212         46           34           19        FALSE                1:30
## 2213         46           34           19        FALSE                1:26
## 2214         46           28            2        FALSE                1:22
## 2215         46           28            2        FALSE                1:22
## 2216         46           18           18        FALSE                1:15
## 2217         46           23            2         TRUE                1:07
## 2218         46   -214748340   -214748365        FALSE                1:01
## 2219         46   -214748340   -214748365        FALSE                1:01
## 2220         46           15           28        FALSE                49.4
## 2221         46           26            3        FALSE                30.3
## 2222         46           26            3        FALSE                28.0
## 2223         49           42           16         TRUE                24.2
## 2224         49           36           27        FALSE                 0.3
## 2225         49   -214748340   -214748365        FALSE                 0.0
## 2226         52           45           16         TRUE                9:45
## 2227         52           26            8        FALSE                9:26
## 2228         52           26            8        FALSE                9:23
## 2229         52           14           22        FALSE                9:13
## 2230         52           14           22        FALSE                9:11
## 2231         52           18            0        FALSE                8:57
## 2232         52           18            0        FALSE                8:54
## 2233         54           19            2         TRUE                8:45
## 2234         54   -214748340   -214748365        FALSE                8:37
## 2235         54            2           42        FALSE                8:37
## 2236         56           28            1         TRUE                8:26
## 2237         56           10           20        FALSE                8:15
## 2238         56           10           20        FALSE                8:12
## 2239         59            5           10         TRUE                8:01
## 2240         59   -214748340   -214748365        FALSE                8:00
## 2241         59   -214748340   -214748365        FALSE                7:47
## 2242         59           44            3        FALSE                7:43
## 2243         59           44            3        FALSE                7:41
## 2244         59           22           25        FALSE                7:32
## 2245         59           22           25        FALSE                7:28
## 2246         59           41            8        FALSE                7:19
## 2247         59           41            8        FALSE                7:16
## 2248         59           21            2        FALSE                7:02
## 2249         59           21            2        FALSE                6:59
## 2250         59           31            5        FALSE                6:53
## 2251         59           20            9         TRUE                6:46
## 2252         61           35            9         TRUE                6:26
## 2253         61           27           10        FALSE                6:11
## 2254         61   -214748340   -214748365        FALSE                6:11
## 2255         61   -214748340   -214748365        FALSE                6:11
## 2256         61   -214748340   -214748365        FALSE                6:11
## 2257         61           22            6        FALSE                6:01
## 2258         61           22            6        FALSE                5:58
## 2259         61           27           40        FALSE                5:57
## 2260         61            2            2         TRUE                5:41
## 2261         61           14           22        FALSE                5:28
## 2262         61           18            4        FALSE                5:14
## 2263         61           18            4        FALSE                5:12
## 2264         61           17           18         TRUE                5:08
## 2265         61           36           23        FALSE                5:00
## 2266         61           36           23        FALSE                5:00
## 2267         61           24            8        FALSE                4:41
## 2268         61   -214748340   -214748365         TRUE                4:41
## 2269         61   -214748340   -214748365        FALSE                4:41
## 2270         61   -214748340   -214748365         TRUE                4:41
## 2271         61           28            8        FALSE                4:24
## 2272         64            4           11         TRUE                4:15
## 2273         64           39           10        FALSE                3:59
## 2274         64           23            1        FALSE                3:56
## 2275         65   -214748340   -214748365         TRUE                3:56
## 2276         66   -214748340   -214748365         TRUE                3:56
## 2277         66           27            1         TRUE                3:45
## 2278         66           45            9        FALSE                3:21
## 2279         66   -214748340   -214748365        FALSE                3:21
## 2280         66   -214748340   -214748365        FALSE                3:21
## 2281         66           25           21         TRUE                3:10
## 2282         68           24            1         TRUE                2:47
## 2283         68           29           25        FALSE                2:34
## 2284         68           29           25        FALSE                2:31
## 2285         68           12           10        FALSE                2:15
## 2286         68           25            3        FALSE                2:10
## 2287         68           25            3        FALSE                2:08
## 2288         70           35            2         TRUE                1:54
## 2289         70           21           19        FALSE                1:42
## 2290         70           21           19        FALSE                1:39
## 2291         70           25            4        FALSE                1:34
## 2292         71   -214748340   -214748365         TRUE                1:34
## 2293         72   -214748340   -214748365         TRUE                1:34
## 2294         72           34           19        FALSE                1:17
## 2295         72           34           19        FALSE                1:14
## 2296         72           10           19        FALSE                1:06
## 2297         72           10           19        FALSE                1:04
## 2298         72           40           20        FALSE                57.5
## 2299         72           40           20        FALSE                55.4
## 2300         72           23            2        FALSE                47.6
## 2301         72           23            2        FALSE                47.6
## 2302         72           24            1         TRUE                40.6
## 2303         72           32           25        FALSE                30.8
## 2304         72           32           25        FALSE                26.4
## 2305         72           34           19         TRUE                13.2
## 2306         72           44            3        FALSE                 0.5
## 2307         72   -214748340   -214748365        FALSE                 0.5
## 2308         72   -214748340   -214748365        FALSE                 0.5
## 2309         72   -214748340   -214748365        FALSE                 0.5
## 2310         72   -214748340   -214748365        FALSE                 0.5
## 2311         72   -214748340   -214748365        FALSE                 0.1
## 2312         72           44            5        FALSE                 0.0
## 2313         72   -214748340   -214748365        FALSE                 0.0
## 2314         72   -214748340   -214748365        FALSE               10:00
## 2315         72           28            1         TRUE                9:46
## 2316         72           28            2        FALSE                9:31
## 2317         72           28            2        FALSE                9:31
## 2318         72           23           11        FALSE                9:09
## 2319         72   -214748340   -214748365         TRUE                9:09
## 2320         72   -214748340   -214748365        FALSE                9:09
## 2321         72   -214748340   -214748365         TRUE                9:09
## 2322         74           23            1         TRUE                8:59
## 2323         74           10           22        FALSE                8:43
## 2324         74           10           22        FALSE                8:41
## 2325         74           19           12         TRUE                8:39
## 2326         74           20            4        FALSE                8:21
## 2327         74           20            4        FALSE                8:18
## 2328         74           27            1        FALSE                8:11
## 2329         74           27            1        FALSE                8:09
## 2330         74           35            1        FALSE                8:05
## 2331         75   -214748340   -214748365         TRUE                8:05
## 2332         75   -214748340   -214748365        FALSE                8:05
## 2333         76   -214748340   -214748365         TRUE                8:05
## 2334         76           43            1        FALSE                7:48
## 2335         76           43            1        FALSE                7:44
## 2336         76            8           17        FALSE                7:40
## 2337         76            8           17        FALSE                7:36
## 2338         78           23            2         TRUE                7:33
## 2339         78           22            1         TRUE                7:24
## 2340         78           41           25        FALSE                7:16
## 2341         78           27            1         TRUE                7:13
## 2342         80           44            7         TRUE                6:52
## 2343         80           28            0         TRUE                6:40
## 2344         80           25           17        FALSE                6:27
## 2345         80   -214748340   -214748365        FALSE                6:27
## 2346         80   -214748340   -214748365        FALSE                6:27
## 2347         80   -214748340   -214748365        FALSE                6:27
## 2348         80   -214748340   -214748365        FALSE                6:27
## 2349         82           24            1         TRUE                6:21
## 2350         82           31            1        FALSE                6:09
## 2351         82   -214748340   -214748365         TRUE                6:09
## 2352         82   -214748340   -214748365        FALSE                6:09
## 2353         82   -214748340   -214748365        FALSE                6:09
## 2354         82   -214748340   -214748365        FALSE                6:05
## 2355         82           25           25        FALSE                5:59
## 2356         82           25           25        FALSE                5:56
## 2357         82           32            8        FALSE                5:50
## 2358         82           32            8        FALSE                5:46
## 2359         82   -214748340   -214748365        FALSE                5:43
## 2360         82           27            6        FALSE                5:32
## 2361         82           27            6        FALSE                5:30
## 2362         82           19           28         TRUE                5:18
## 2363         85           42           19         TRUE                4:59
## 2364         85           27            1         TRUE                4:41
## 2365         85           40           13        FALSE                4:26
## 2366         85           40           13        FALSE                4:22
## 2367         85           25           10        FALSE                4:19
## 2368         85           25           10        FALSE                4:19
## 2369         85   -214748340   -214748365        FALSE                4:19
## 2370         87           24            1         TRUE                4:01
## 2371         87           26            1        FALSE                3:49
## 2372         87           26            1        FALSE                3:49
## 2373         87            5           11        FALSE                3:27
## 2374         87            5           11        FALSE                3:24
## 2375         87           43            6        FALSE                3:04
## 2376         87           43            6        FALSE                3:00
## 2377         89           27            1         TRUE                2:58
## 2378         89           25           11         TRUE                2:50
## 2379         89            3            0        FALSE                2:35
## 2380         89            3            0        FALSE                2:28
##      team_id type_id                          type_text away_score           id
## 1          5     615                           Jumpball          0   4013205653
## 2          5     110                 Driving Layup Shot          0   4013205656
## 3          9     155                  Defensive Rebound          0   4013205657
## 4          9     131                   Pullup Jump Shot          0   4013205659
## 5          5     155                  Defensive Rebound          0  40132056510
## 6          5      62                 Bad Pass\nTurnover          0  40132056511
## 7          9      92                          Jump Shot          0  40132056513
## 8          5     130                 Floating Jump Shot          0  40132056515
## 9          5     156                  Offensive Rebound          0  40132056516
## 10         5      92                          Jump Shot          0  40132056517
## 11         9     155                  Defensive Rebound          0  40132056518
## 12         9      92                          Jump Shot          0  40132056520
## 13         5      92                          Jump Shot          0  40132056521
## 14         9     155                  Defensive Rebound          0  40132056522
## 15         9      63                 Lost Ball Turnover          0  40132056523
## 16         5      95                         Layup Shot          2  40132056525
## 17         9      92                          Jump Shot          2  40132056527
## 18         5     131                   Pullup Jump Shot          4  40132056529
## 19         5      44                      Shooting Foul          4  40132056530
## 20         9      98                Free Throw - 1 of 2          4  40132056532
## 21         9      99                Free Throw - 2 of 2          4  40132056533
## 22         5      92                          Jump Shot          4  40132056534
## 23         5     156                  Offensive Rebound          4  40132056535
## 24         5     114               Turnaround Jump Shot          6  40132056536
## 25         9     132                Step Back Jump Shot          6  40132056537
## 26         5     155                  Defensive Rebound          6  40132056538
## 27         5     131                   Pullup Jump Shot          8  40132056539
## 28         9      62                 Bad Pass\nTurnover          8  40132056540
## 29         5     110                 Driving Layup Shot         10  40132056542
## 30         9     131                   Pullup Jump Shot         10  40132056543
## 31         5     155                  Defensive Rebound         10  40132056544
## 32         5      95                         Layup Shot         12  40132056545
## 33         9      92                          Jump Shot         12  40132056547
## 34         5      92                          Jump Shot         12  40132056549
## 35         9     155                  Defensive Rebound         12  40132056550
## 36         9      95                         Layup Shot         12  40132056551
## 37         5     120               Turnaround Hook Shot         12  40132056553
## 38         9     155                  Defensive Rebound         12  40132056554
## 39         9      92                          Jump Shot         12  40132056555
## 40         5     155                  Defensive Rebound         12  40132056556
## 41         5      92                          Jump Shot         12  40132056557
## 42         9     155                  Defensive Rebound         12  40132056558
## 43         5      45                      Personal Foul         12  40132056559
## 44      <NA>      19                   Official Timeout         12  40132056561
## 45         9     584                       Substitution         12  40132056562
## 46         9     584                       Substitution         12  40132056563
## 47         5     584                       Substitution         12  40132056564
## 48         5     584                       Substitution         12  40132056565
## 49         5     584                       Substitution         12  40132056566
## 50         9      92                          Jump Shot         12  40132056572
## 51         5      92                          Jump Shot         12  40132056574
## 52         9     155                  Defensive Rebound         12  40132056575
## 53         5      44                      Shooting Foul         12  40132056576
## 54         9      98                Free Throw - 1 of 2         12  40132056578
## 55         9      99                Free Throw - 2 of 2         12  40132056579
## 56         5      92                          Jump Shot         12  40132056580
## 57         5     156                  Offensive Rebound         12  40132056581
## 58         5      95                         Layup Shot         12  40132056582
## 59         5     156                  Offensive Rebound         12  40132056583
## 60         5     125                 Layup Shot Putback         12 401320565161
## 61         5     156                  Offensive Rebound         12 401320565163
## 62         5      92                          Jump Shot         12  40132056584
## 63         9     155                  Defensive Rebound         12  40132056585
## 64         9      92                          Jump Shot         12  40132056586
## 65         5      92                          Jump Shot         12  40132056588
## 66         5     156                  Offensive Rebound         12  40132056589
## 67         9      43                    Loose Ball Foul         12  40132056590
## 68         5      95                         Layup Shot         14  40132056592
## 69         9      92                          Jump Shot         14  40132056594
## 70         5     155                  Defensive Rebound         14  40132056595
## 71         5     110                 Driving Layup Shot         14  40132056596
## 72         5     156                  Offensive Rebound         14  40132056597
## 73         9      44                      Shooting Foul         14  40132056598
## 74         5      98                Free Throw - 1 of 2         15 401320565100
## 75         5      99                Free Throw - 2 of 2         16 401320565101
## 76         9     584                       Substitution         16 401320565103
## 77         5     584                       Substitution         16 401320565104
## 78         5     584                       Substitution         16 401320565145
## 79         9      42                     Offensive Foul         16 401320565102
## 80         9      84            Offensive Foul Turnover         16 401320565110
## 81         9      45                      Personal Foul         16 401320565111
## 82         5      92                          Jump Shot         19 401320565113
## 83         9      92                          Jump Shot         19 401320565114
## 84         5     110                 Driving Layup Shot         19 401320565116
## 85         9     155                  Defensive Rebound         19 401320565129
## 86         9      92                          Jump Shot         19 401320565203
## 87         5     155                  Defensive Rebound         19 401320565204
## 88         5      95                         Layup Shot         21 401320565118
## 89         9      92                          Jump Shot         21 401320565119
## 90         5     155                  Defensive Rebound         21 401320565120
## 91         5      92                          Jump Shot         21 401320565121
## 92         9     155                  Defensive Rebound         21 401320565123
## 93         9      63                 Lost Ball Turnover         21 401320565124
## 94         5      62                 Bad Pass\nTurnover         21 401320565126
## 95      <NA>       0                      Not Available         21 401320565280
## 96      <NA>     412                         End Period         21 401320565128
## 97         9     584                       Substitution         21 401320565130
## 98         9     584                       Substitution         21 401320565131
## 99         5      45                      Personal Foul         21 401320565135
## 100        9      64                          Traveling         21 401320565137
## 101        5      92                          Jump Shot         24 401320565138
## 102        9      64                          Traveling         24 401320565140
## 103        9     584                       Substitution         24 401320565141
## 104        9      45                      Personal Foul         24 401320565143
## 105        5      92                          Jump Shot         24 401320565146
## 106        5     156                  Offensive Rebound         24 401320565147
## 107        5      62                 Bad Pass\nTurnover         24 401320565148
## 108        9      92                          Jump Shot         24 401320565150
## 109        5     155                  Defensive Rebound         24 401320565151
## 110        5     110                 Driving Layup Shot         26 401320565152
## 111        9      44                      Shooting Foul         26 401320565153
## 112        9     584                       Substitution         26 401320565155
## 113        9     584                       Substitution         26 401320565156
## 114        9     584                       Substitution         26 401320565157
## 115        5      97                Free Throw - 1 of 1         27 401320565164
## 116        9      24                   Offensive Charge         27 401320565166
## 117        9      84            Offensive Foul Turnover         27 401320565168
## 118        5      95                         Layup Shot         27 401320565169
## 119        5     156                  Offensive Rebound         27 401320565170
## 120        5      95                         Layup Shot         29 401320565171
## 121        5      44                      Shooting Foul         29 401320565173
## 122        9      98                Free Throw - 1 of 2         29 401320565175
## 123        9      99                Free Throw - 2 of 2         29 401320565176
## 124        5      93                          Hook Shot         29 401320565177
## 125        9     155                  Defensive Rebound         29 401320565178
## 126        9     110                 Driving Layup Shot         29 401320565179
## 127        5     132                Step Back Jump Shot         29 401320565181
## 128        9     155                  Defensive Rebound         29 401320565182
## 129        9     131                   Pullup Jump Shot         29 401320565183
## 130        5     155                  Defensive Rebound         29 401320565184
## 131        5     110                 Driving Layup Shot         29 401320565185
## 132        9     155                  Defensive Rebound         29 401320565186
## 133        5     584                       Substitution         29 401320565188
## 134        5     584                       Substitution         29 401320565189
## 135        5     584                       Substitution         29 401320565190
## 136        5     584                       Substitution         29 401320565191
## 137        5     584                       Substitution         29 401320565192
## 138        9      92                          Jump Shot         29 401320565198
## 139        5     131                   Pullup Jump Shot         31 401320565200
## 140        9      92                          Jump Shot         31 401320565201
## 141        5     155                  Defensive Rebound         31 401320565202
## 142        5      92                          Jump Shot         31 401320565205
## 143        9     155                  Defensive Rebound         31 401320565206
## 144        9     130                 Floating Jump Shot         31 401320565207
## 145        9     156                  Offensive Rebound         31 401320565208
## 146        9     114               Turnaround Jump Shot         31 401320565209
## 147        5     155                  Defensive Rebound         31 401320565210
## 148        5      92                          Jump Shot         33 401320565211
## 149        9     130                 Floating Jump Shot         33 401320565212
## 150        5     155                  Defensive Rebound         33 401320565213
## 151        5      92                          Jump Shot         33 401320565214
## 152        9     155                  Defensive Rebound         33 401320565215
## 153        5      45                      Personal Foul         33 401320565216
## 154        9      16                       Full Timeout         33 401320565218
## 155        9      92                          Jump Shot         33 401320565219
## 156        5      42                     Offensive Foul         33 401320565221
## 157        5      84            Offensive Foul Turnover         33 401320565223
## 158        5      45                      Personal Foul         33 401320565224
## 159        5     584                       Substitution         33 401320565226
## 160        9     131                   Pullup Jump Shot         33 401320565228
## 161        5     155                  Defensive Rebound         33 401320565229
## 162        5      92                          Jump Shot         36 401320565230
## 163        9      92                          Jump Shot         36 401320565232
## 164        5     155                  Defensive Rebound         36 401320565233
## 165        5     131                   Pullup Jump Shot         36 401320565234
## 166        9     155                  Defensive Rebound         36 401320565235
## 167        9     141                 Cutting Layup Shot         36 401320565236
## 168        5      95                         Layup Shot         38 401320565238
## 169        9     141                 Cutting Layup Shot         38 401320565240
## 170        5     124                  Finger Roll Layup         40 401320565242
## 171        9      92                          Jump Shot         40 401320565243
## 172        5     155                  Defensive Rebound         40 401320565244
## 173        9      44                      Shooting Foul         40 401320565245
## 174        5      16                       Full Timeout         40 401320565247
## 175        5      98                Free Throw - 1 of 2         41 401320565248
## 176        5      99                Free Throw - 2 of 2         42 401320565249
## 177        9      92                          Jump Shot         42 401320565250
## 178        5      92                          Jump Shot         42 401320565252
## 179        5     156                  Offensive Rebound         42 401320565253
## 180        9      43                    Loose Ball Foul         42 401320565254
## 181        5      95                         Layup Shot         44 401320565256
## 182        9      65            Double Dribble Turnover         44 401320565258
## 183        9      45                      Personal Foul         44 401320565259
## 184        5      98                Free Throw - 1 of 2         45 401320565261
## 185        5      99                Free Throw - 2 of 2         45 401320565262
## 186        9     155                  Defensive Rebound         45 401320565263
## 187        9      92                          Jump Shot         45 401320565264
## 188        9     156                  Offensive Rebound         45 401320565266
## 189        9      92                          Jump Shot         45 401320565268
## 190        5      95                         Layup Shot         47 401320565269
## 191        5      45                      Personal Foul         47 401320565270
## 192        9      98                Free Throw - 1 of 2         47 401320565272
## 193        5     584                       Substitution         47 401320565273
## 194        9      99                Free Throw - 2 of 2         47 401320565275
## 195        5      92                          Jump Shot         47 401320565276
## 196        5     156                  Offensive Rebound         47 401320565278
## 197     <NA>     412                         End Period         47 401320565279
## 198        5     584                       Substitution         47 401320565281
## 199        5     584                       Substitution         47 401320565282
## 200        9      92                          Jump Shot         47 401320565286
## 201        9     156                  Offensive Rebound         47 401320565287
## 202        9     133              Pullup Bank Jump Shot         47 401320565288
## 203        5      92                          Jump Shot         47 401320565289
## 204        9     155                  Defensive Rebound         47 401320565290
## 205        9      95                         Layup Shot         47 401320565291
## 206        5     144         Driving Floating Jump Shot         47 401320565293
## 207        5     156                  Offensive Rebound         47 401320565294
## 208        5      95                         Layup Shot         47 401320565295
## 209        5     156                  Offensive Rebound         47 401320565296
## 210        5      95                         Layup Shot         49 401320565297
## 211        9      92                          Jump Shot         49 401320565298
## 212        5     155                  Defensive Rebound         49 401320565299
## 213        5      62                 Bad Pass\nTurnover         49 401320565300
## 214        9     145    Driving Floating Bank Jump Shot         49 401320565302
## 215        5     155                  Defensive Rebound         49 401320565303
## 216        5     114               Turnaround Jump Shot         49 401320565304
## 217        9     155                  Defensive Rebound         49 401320565305
## 218        9     110                 Driving Layup Shot         49 401320565306
## 219        5      95                         Layup Shot         51 401320565308
## 220        5      45                      Personal Foul         51 401320565310
## 221        9     141                 Cutting Layup Shot         51 401320565312
## 222        5     584                       Substitution         51 401320565315
## 223        5     132                Step Back Jump Shot         51 401320565317
## 224        5     156                  Offensive Rebound         51 401320565318
## 225        5      95                         Layup Shot         51 401320565319
## 226        5     156                  Offensive Rebound         51 401320565320
## 227        5      95                         Layup Shot         53 401320565321
## 228        9      16                       Full Timeout         53 401320565322
## 229        9     144         Driving Floating Jump Shot         53 401320565323
## 230        5     155                  Defensive Rebound         53 401320565324
## 231        5     131                   Pullup Jump Shot         53 401320565325
## 232        5     156                  Offensive Rebound         53 401320565326
## 233        5      87 Out of Bounds - Lost Ball Turnover         53 401320565327
## 234        9      92                          Jump Shot         53 401320565328
## 235        5      92                          Jump Shot         55 401320565330
## 236        9     128          Driving Finger Roll Layup         55 401320565332
## 237        5      44                      Shooting Foul         55 401320565333
## 238        9      97                Free Throw - 1 of 1         55 401320565335
## 239        5     145    Driving Floating Bank Jump Shot         57 401320565336
## 240        9     110                 Driving Layup Shot         57 401320565338
## 241        5     155                  Defensive Rebound         57 401320565339
## 242        5     141                 Cutting Layup Shot         59 401320565340
## 243        9      44                      Shooting Foul         59 401320565342
## 244        9     584                       Substitution         59 401320565344
## 245        5      97                Free Throw - 1 of 1         60 401320565346
## 246        9     110                 Driving Layup Shot         60 401320565347
## 247        5     155                  Defensive Rebound         60 401320565348
## 248        5      90  Out of Bounds - Bad Pass Turnover         60 401320565349
## 249        9      92                          Jump Shot         60 401320565350
## 250        5     155                  Defensive Rebound         60 401320565351
## 251        5     131                   Pullup Jump Shot         60 401320565352
## 252        5     156                  Offensive Rebound         60 401320565353
## 253        5     110                 Driving Layup Shot         62 401320565354
## 254        9      92                          Jump Shot         62 401320565356
## 255        5     155                  Defensive Rebound         62 401320565357
## 256        5     110                 Driving Layup Shot         62 401320565358
## 257        5     156                  Offensive Rebound         62 401320565359
## 258        5      95                         Layup Shot         62 401320565360
## 259        9     155                  Defensive Rebound         62 401320565361
## 260        5      45                      Personal Foul         62 401320565362
## 261        9     584                       Substitution         62 401320565364
## 262        5     584                       Substitution         62 401320565365
## 263        9      92                          Jump Shot         62 401320565368
## 264        5     155                  Defensive Rebound         62 401320565369
## 265        9      43                    Loose Ball Foul         62 401320565370
## 266        9     584                       Substitution         62 401320565373
## 267        5      64                          Traveling         62 401320565375
## 268        9     131                   Pullup Jump Shot         62 401320565376
## 269        5      92                          Jump Shot         62 401320565377
## 270        9     155                  Defensive Rebound         62 401320565378
## 271        9      92                          Jump Shot         62 401320565379
## 272        5     155                  Defensive Rebound         62 401320565380
## 273        5     584                       Substitution         62 401320565382
## 274        5     114               Turnaround Jump Shot         62 401320565384
## 275        9     155                  Defensive Rebound         62 401320565385
## 276        9      95                         Layup Shot         62 401320565386
## 277        5     128          Driving Finger Roll Layup         64 401320565389
## 278        9      64                          Traveling         64 401320565390
## 279        5     584                       Substitution         64 401320565391
## 280        5      92                          Jump Shot         64 401320565393
## 281        9     155                  Defensive Rebound         64 401320565394
## 282        5      45                      Personal Foul         64 401320565395
## 283        9      92                          Jump Shot         64 401320565397
## 284        5      92                          Jump Shot         64 401320565398
## 285        9     155                  Defensive Rebound         64 401320565399
## 286        9      42                     Offensive Foul         64 401320565400
## 287        9      84            Offensive Foul Turnover         64 401320565402
## 288        5      92                          Jump Shot         64 401320565403
## 289        5     156                  Offensive Rebound         64 401320565404
## 290     <NA>     412                         End Period         64 401320565406
## 291        5      70                Shot Clock Turnover         64 401320565408
## 292        9      92                          Jump Shot         64 401320565409
## 293        5     144         Driving Floating Jump Shot         64 401320565410
## 294        9     155                  Defensive Rebound         64 401320565411
## 295        9      42                     Offensive Foul         64 401320565412
## 296        9      84            Offensive Foul Turnover         64 401320565414
## 297        5      92                          Jump Shot         64 401320565415
## 298        9     155                  Defensive Rebound         64 401320565416
## 299        9     137     Turnaround Fade Away Jump Shot         64 401320565417
## 300        5      16                       Full Timeout         64 401320565418
## 301        5     584                       Substitution         64 401320565419
## 302        5      42                     Offensive Foul         64 401320565421
## 303        5      84            Offensive Foul Turnover         64 401320565423
## 304        9     130                 Floating Jump Shot         64 401320565424
## 305        5     155                  Defensive Rebound         64 401320565425
## 306        5      95                         Layup Shot         66 401320565426
## 307        5      44                      Shooting Foul         66 401320565428
## 308        9      98                Free Throw - 1 of 2         66 401320565430
## 309        9     156                  Offensive Rebound         66 401320565431
## 310        5     584                       Substitution         66 401320565432
## 311        5     584                       Substitution         66 401320565433
## 312        9      99                Free Throw - 2 of 2         66 401320565436
## 313        5     132                Step Back Jump Shot         68 401320565437
## 314        5      45                      Personal Foul         68 401320565439
## 315        5     584                       Substitution         68 401320565441
## 316        5      12                        Kicked Ball         68 401320565443
## 317        9      92                          Jump Shot         68 401320565444
## 318        5     155                  Defensive Rebound         68 401320565445
## 319        5      62                 Bad Pass\nTurnover         68 401320565446
## 320        9     131                   Pullup Jump Shot         68 401320565448
## 321        9      45                      Personal Foul         68 401320565449
## 322        9     584                       Substitution         68 401320565451
## 323        5     132                Step Back Jump Shot         68 401320565453
## 324        9     155                  Defensive Rebound         68 401320565454
## 325        9      92                          Jump Shot         68 401320565456
## 326        9     156                  Offensive Rebound         68 401320565457
## 327        9      92                          Jump Shot         68 401320565458
## 328        9     156                  Offensive Rebound         68 401320565459
## 329        5      43                    Loose Ball Foul         68 401320565460
## 330        9      95                         Layup Shot         68 401320565462
## 331        5     615                           Jumpball         68 401320565464
## 332        5     155                  Defensive Rebound         68 401320565467
## 333        9      45                      Personal Foul         68 401320565468
## 334        5     584                       Substitution         68 401320565470
## 335        5      95                         Layup Shot         68 401320565472
## 336        5     156                  Offensive Rebound         68 401320565473
## 337        5     125                 Layup Shot Putback         70 401320565474
## 338        9      62                 Bad Pass\nTurnover         70 401320565475
## 339        5     110                 Driving Layup Shot         72 401320565477
## 340        9      44                      Shooting Foul         72 401320565478
## 341        9      16                       Full Timeout         72 401320565480
## 342        9     584                       Substitution         72 401320565481
## 343        9     584                       Substitution         72 401320565482
## 344        5      97                Free Throw - 1 of 1         73 401320565485
## 345        9      62                 Bad Pass\nTurnover         73 401320565486
## 346        5     131                   Pullup Jump Shot         75 401320565488
## 347        9     110                 Driving Layup Shot         75 401320565489
## 348        5      44                      Shooting Foul         75 401320565490
## 349        9      97                Free Throw - 1 of 1         75 401320565492
## 350        5      95                         Layup Shot         75 401320565493
## 351        5     156                  Offensive Rebound         75 401320565494
## 352        5      95                         Layup Shot         75 401320565495
## 353        9     155                  Defensive Rebound         75 401320565496
## 354        9      92                          Jump Shot         75 401320565498
## 355        5     130                 Floating Jump Shot         75 401320565499
## 356        5     156                  Offensive Rebound         75 401320565500
## 357        5      95                         Layup Shot         77 401320565501
## 358        9      92                          Jump Shot         77 401320565502
## 359        5     155                  Defensive Rebound         77 401320565503
## 360        9      45                      Personal Foul         77 401320565504
## 361     <NA>      19                   Official Timeout         77 401320565506
## 362        5     584                       Substitution         77 401320565508
## 363        9      44                      Shooting Foul         77 401320565510
## 364        5      98                Free Throw - 1 of 2         77 401320565512
## 365        5     156                  Offensive Rebound         77 401320565513
## 366        5      99                Free Throw - 2 of 2         78 401320565514
## 367        5      45                      Personal Foul         78 401320565515
## 368        9      98                Free Throw - 1 of 2         78 401320565517
## 369        9     156                  Offensive Rebound         78 401320565518
## 370        9      99                Free Throw - 2 of 2         78 401320565519
## 371        5      95                         Layup Shot         80 401320565520
## 372        9      63                 Lost Ball Turnover         80 401320565522
## 373        5     110                 Driving Layup Shot         80 401320565524
## 374        5     156                  Offensive Rebound         80 401320565525
## 375        5      95                         Layup Shot         82 401320565526
## 376        9      92                          Jump Shot         82 401320565527
## 377        5     155                  Defensive Rebound         82 401320565528
## 378        5      92                          Jump Shot         84 401320565529
## 379        9      16                       Full Timeout         84 401320565530
## 380        5      45                      Personal Foul         84 401320565531
## 381        9      98                Free Throw - 1 of 2         84 401320565533
## 382        9     156                  Offensive Rebound         84 401320565534
## 383        9     584                       Substitution         84 401320565535
## 384        9      99                Free Throw - 2 of 2         84 401320565537
## 385        5      92                          Jump Shot         84 401320565538
## 386        9     155                  Defensive Rebound         84 401320565539
## 387     <NA>       0                      Not Available         84 401320565541
## 388        9      95                         Layup Shot         84 401320565542
## 389        5     155                  Defensive Rebound         84 401320565543
## 390        5      92                          Jump Shot         86 401320565545
## 391        9      92                          Jump Shot         86 401320565546
## 392        9      44                      Shooting Foul         86 401320565547
## 393        5      98                Free Throw - 1 of 2         86 401320565549
## 394        5     156                  Offensive Rebound         86 401320565550
## 395        5      99                Free Throw - 2 of 2         87 401320565551
## 396        5      45                      Personal Foul         87 401320565552
## 397        9      98                Free Throw - 1 of 2         87 401320565554
## 398        9      99                Free Throw - 2 of 2         87 401320565555
## 399        5      16                       Full Timeout         87 401320565556
## 400        9     584                       Substitution         87 401320565558
## 401        9     584                       Substitution         87 401320565559
## 402        5      64                          Traveling         87 401320565562
## 403        9      17                      Short Timeout         87 401320565563
## 404        9     584                       Substitution         87 401320565564
## 405        9     584                       Substitution         87 401320565565
## 406        5     584                       Substitution         87 401320565566
## 407        9      92                          Jump Shot         87 401320565570
## 408        5      17                      Short Timeout         87 401320565572
## 409        9     584                       Substitution         87 401320565573
## 410        9     584                       Substitution         87 401320565574
## 411     <NA>     412                         End Period         87 401320565578
## 412     <NA>     402                           End Game         87 401320565580
## 413       20     615                           Jumpball          0   4013205664
## 414       20      64                          Traveling          0   4013205667
## 415       18     114               Turnaround Jump Shot          0   4013205668
## 416       20     155                  Defensive Rebound          0   4013205669
## 417       18      43                    Loose Ball Foul          0  40132056610
## 418       20      92                          Jump Shot          0  40132056612
## 419       18     155                  Defensive Rebound          0  40132056613
## 420       18     114               Turnaround Jump Shot          2  40132056614
## 421       20     131                   Pullup Jump Shot          2  40132056616
## 422       18     155                  Defensive Rebound          2  40132056617
## 423       18     131                   Pullup Jump Shot          2  40132056618
## 424       20     155                  Defensive Rebound          2  40132056619
## 425       20     131                   Pullup Jump Shot          2  40132056620
## 426       20     156                  Offensive Rebound          2  40132056621
## 427       20     125                 Layup Shot Putback          2  40132056622
## 428       20      44                      Shooting Foul          2  40132056623
## 429       18      98                Free Throw - 1 of 2          3  40132056625
## 430       18      99                Free Throw - 2 of 2          4  40132056626
## 431       18      45                      Personal Foul          4  40132056627
## 432       20      62                 Bad Pass\nTurnover          4  40132056629
## 433       18      95                         Layup Shot          6  40132056631
## 434       18      44                      Shooting Foul          6  40132056633
## 435       20      98                Free Throw - 1 of 2          6  40132056635
## 436       18     584                       Substitution          6  40132056636
## 437       20      99                Free Throw - 2 of 2          6  40132056638
## 438       18      87 Out of Bounds - Lost Ball Turnover          6  40132056639
## 439       20      92                          Jump Shot          6  40132056640
## 440       20      45                      Personal Foul          6  40132056642
## 441       20     584                       Substitution          6  40132056644
## 442       20     584                       Substitution          6  40132056645
## 443       20      45                      Personal Foul          6  40132056648
## 444       20      45                      Personal Foul          6  40132056650
## 445       18      95                         Layup Shot          8  40132056652
## 446       18      44                      Shooting Foul          8  40132056654
## 447       20      98                Free Throw - 1 of 2          8  40132056656
## 448       20      99                Free Throw - 2 of 2          8  40132056657
## 449       18      92                          Jump Shot         11  40132056658
## 450       18      45                      Personal Foul         11  40132056660
## 451       20      98                Free Throw - 1 of 2         11  40132056662
## 452       20     584                       Substitution         11  40132056663
## 453       18     584                       Substitution         11  40132056664
## 454       20      99                Free Throw - 2 of 2         11  40132056667
## 455       18      92                          Jump Shot         11  40132056668
## 456       18     156                  Offensive Rebound         11  40132056669
## 457       18     141                 Cutting Layup Shot         13  40132056670
## 458       20      92                          Jump Shot         13  40132056672
## 459       18     155                  Defensive Rebound         13  40132056673
## 460       18     109                 Running Layup Shot         15  40132056674
## 461       20      44                      Shooting Foul         15  40132056675
## 462       20      19                   Official Timeout         15  40132056677
## 463       18      97                Free Throw - 1 of 1         15  40132056678
## 464       20     155                  Defensive Rebound         15  40132056679
## 465       20      63                 Lost Ball Turnover         15  40132056680
## 466       18      95                         Layup Shot         15  40132056682
## 467       20     155                  Defensive Rebound         15  40132056684
## 468       18      44                      Shooting Foul         15  40132056685
## 469       20      98                Free Throw - 1 of 2         15  40132056687
## 470       20      99                Free Throw - 2 of 2         15  40132056688
## 471       20      45                      Personal Foul         15  40132056689
## 472       18      98                Free Throw - 1 of 2         15  40132056691
## 473       18     156                  Offensive Rebound         15  40132056692
## 474       18      99                Free Throw - 2 of 2         15  40132056693
## 475       20     155                  Defensive Rebound         15  40132056694
## 476       20     131                   Pullup Jump Shot         15  40132056695
## 477       20      45                      Personal Foul         15  40132056697
## 478       18      98                Free Throw - 1 of 2         16  40132056699
## 479       18      99                Free Throw - 2 of 2         17 401320566100
## 480       20     131                   Pullup Jump Shot         17 401320566101
## 481       18     155                  Defensive Rebound         17 401320566102
## 482       18      63                 Lost Ball Turnover         17 401320566103
## 483       20      64                          Traveling         17 401320566105
## 484       18     114               Turnaround Jump Shot         19 401320566106
## 485       20      92                          Jump Shot         19 401320566108
## 486       18     155                  Defensive Rebound         19 401320566109
## 487       18      95                         Layup Shot         21 401320566110
## 488       20      16                       Full Timeout         21 401320566112
## 489       20     584                       Substitution         21 401320566113
## 490       20     584                       Substitution         21 401320566114
## 491       20     584                       Substitution         21 401320566115
## 492       18     584                       Substitution         21 401320566116
## 493       20      63                 Lost Ball Turnover         21 401320566121
## 494       18      62                 Bad Pass\nTurnover         21 401320566123
## 495       20     110                 Driving Layup Shot         21 401320566125
## 496       18     155                  Defensive Rebound         21 401320566126
## 497       18     132                Step Back Jump Shot         21 401320566127
## 498       18     156                  Offensive Rebound         21 401320566128
## 499       20      43                    Loose Ball Foul         21 401320566129
## 500       18      98                Free Throw - 1 of 2         21 401320566131
## 501       18     156                  Offensive Rebound         21 401320566132
## 502       20     584                       Substitution         21 401320566133
## 503       18     584                       Substitution         21 401320566134
## 504       18      99                Free Throw - 2 of 2         22 401320566137
## 505       20      95                         Layup Shot         22 401320566138
## 506       18      92                          Jump Shot         22 401320566140
## 507       18     156                  Offensive Rebound         22 401320566141
## 508       18     125                 Layup Shot Putback         22 401320566142
## 509       18     156                  Offensive Rebound         22 401320566143
## 510       18     125                 Layup Shot Putback         22 401320566144
## 511       20     155                  Defensive Rebound         22 401320566145
## 512       20     131                   Pullup Jump Shot         22 401320566147
## 513       20     156                  Offensive Rebound         22 401320566148
## 514     <NA>     412                         End Period         22 401320566149
## 515       18     584                       Substitution         22 401320566150
## 516       18     584                       Substitution         22 401320566151
## 517       20      44                      Shooting Foul         22 401320566156
## 518       18      98                Free Throw - 1 of 2         23 401320566158
## 519       18      99                Free Throw - 2 of 2         24 401320566159
## 520       20     131                   Pullup Jump Shot         24 401320566160
## 521       18     155                  Defensive Rebound         24 401320566161
## 522       18      92                          Jump Shot         24 401320566162
## 523       18     156                  Offensive Rebound         24 401320566163
## 524       18      62                 Bad Pass\nTurnover         24 401320566164
## 525       20     109                 Running Layup Shot         24 401320566166
## 526       18      62                 Bad Pass\nTurnover         24 401320566168
## 527       20     109                 Running Layup Shot         24 401320566170
## 528       18     155                  Defensive Rebound         24 401320566171
## 529       18     113                  Running Jump Shot         27 401320566172
## 530       20      87 Out of Bounds - Lost Ball Turnover         27 401320566174
## 531       20     584                       Substitution         27 401320566175
## 532       18     584                       Substitution         27 401320566176
## 533       20      44                      Shooting Foul         27 401320566179
## 534       18     100                Free Throw - 1 of 3         28 401320566181
## 535       18     101                Free Throw - 2 of 3         28 401320566182
## 536       18     156                  Offensive Rebound         28 401320566183
## 537       20     584                       Substitution         28 401320566184
## 538       18     102                Free Throw - 3 of 3         29 401320566186
## 539       20      92                          Jump Shot         29 401320566187
## 540       18     155                  Defensive Rebound         29 401320566188
## 541       18     114               Turnaround Jump Shot         29 401320566189
## 542       18     156                  Offensive Rebound         29 401320566190
## 543       18     125                 Layup Shot Putback         31 401320566191
## 544       20     144         Driving Floating Jump Shot         31 401320566192
## 545       18      92                          Jump Shot         31 401320566193
## 546       20     155                  Defensive Rebound         31 401320566194
## 547       20     109                 Running Layup Shot         31 401320566195
## 548       18     141                 Cutting Layup Shot         33 401320566197
## 549       20     141                 Cutting Layup Shot         33 401320566199
## 550       18     155                  Defensive Rebound         33 401320566200
## 551       18      87 Out of Bounds - Lost Ball Turnover         33 401320566201
## 552       20     584                       Substitution         33 401320566202
## 553       20     584                       Substitution         33 401320566203
## 554       18     584                       Substitution         33 401320566204
## 555       20      92                          Jump Shot         33 401320566208
## 556       18      92                          Jump Shot         36 401320566210
## 557       20     131                   Pullup Jump Shot         36 401320566212
## 558       18      95                         Layup Shot         36 401320566214
## 559       18     156                  Offensive Rebound         36 401320566215
## 560       18     114               Turnaround Jump Shot         36 401320566216
## 561       20     155                  Defensive Rebound         36 401320566218
## 562       20     113                  Running Jump Shot         36 401320566219
## 563       18     155                  Defensive Rebound         36 401320566220
## 564       18     141                 Cutting Layup Shot         38 401320566221
## 565       20      92                          Jump Shot         38 401320566223
## 566       20     156                  Offensive Rebound         38 401320566224
## 567       18      43                    Loose Ball Foul         38 401320566225
## 568       20      16                       Full Timeout         38 401320566227
## 569       18     584                       Substitution         38 401320566229
## 570       20      70                Shot Clock Turnover         38 401320566233
## 571       18      62                 Bad Pass\nTurnover         38 401320566234
## 572       20     146           Running Pullup Jump Shot         38 401320566236
## 573       18     155                  Defensive Rebound         38 401320566237
## 574       18     144         Driving Floating Jump Shot         38 401320566238
## 575       20     155                  Defensive Rebound         38 401320566239
## 576       18      45                      Personal Foul         38 401320566240
## 577       18      45                      Personal Foul         38 401320566242
## 578       20      95                         Layup Shot         38 401320566244
## 579       20     156                  Offensive Rebound         38 401320566246
## 580       20     125                 Layup Shot Putback         38 401320566247
## 581       18     131                   Pullup Jump Shot         38 401320566248
## 582       20     155                  Defensive Rebound         38 401320566249
## 583       20      92                          Jump Shot         38 401320566250
## 584       18     155                  Defensive Rebound         38 401320566251
## 585       18      16                       Full Timeout         38 401320566252
## 586       20     584                       Substitution         38 401320566253
## 587       18      63                 Lost Ball Turnover         38 401320566255
## 588       20      63                 Lost Ball Turnover         38 401320566257
## 589       18     141                 Cutting Layup Shot         40 401320566259
## 590       20      92                          Jump Shot         40 401320566261
## 591       18     155                  Defensive Rebound         40 401320566262
## 592       20      45                      Personal Foul         40 401320566263
## 593       18     131                   Pullup Jump Shot         40 401320566265
## 594       20     155                  Defensive Rebound         40 401320566266
## 595       20     131                   Pullup Jump Shot         40 401320566267
## 596       18     155                  Defensive Rebound         40 401320566268
## 597       18      92                          Jump Shot         43 401320566269
## 598       20      17                      Short Timeout         43 401320566271
## 599       20      62                 Bad Pass\nTurnover         43 401320566272
## 600       18      63                 Lost Ball Turnover         43 401320566274
## 601       20     146           Running Pullup Jump Shot         43 401320566276
## 602       20     156                  Offensive Rebound         43 401320566277
## 603       18      45                      Personal Foul         43 401320566279
## 604       20     110                 Driving Layup Shot         43 401320566281
## 605       18      63                 Lost Ball Turnover         43 401320566283
## 606       18      44                      Shooting Foul         43 401320566285
## 607       20      98                Free Throw - 1 of 2         43 401320566287
## 608       20      99                Free Throw - 2 of 2         43 401320566288
## 609     <NA>     412                         End Period         43 401320566289
## 610       20     584                       Substitution         43 401320566290
## 611       20     584                       Substitution         43 401320566291
## 612       18     584                       Substitution         43 401320566292
## 613       18      62                 Bad Pass\nTurnover         43 401320566313
## 614       20      92                          Jump Shot         43 401320566319
## 615       18     155                  Defensive Rebound         43 401320566320
## 616       18      92                          Jump Shot         43 401320566326
## 617       20     155                  Defensive Rebound         43 401320566327
## 618       20     110                 Driving Layup Shot         43 401320566329
## 619       18     155                  Defensive Rebound         43 401320566331
## 620       18      64                          Traveling         43 401320566297
## 621       20      92                          Jump Shot         43 401320566298
## 622       20     156                  Offensive Rebound         43 401320566299
## 623       20     125                 Layup Shot Putback         43 401320566300
## 624       18     155                  Defensive Rebound         43 401320566301
## 625       18     146           Running Pullup Jump Shot         46 401320566302
## 626       20     110                 Driving Layup Shot         46 401320566303
## 627       20      44                      Shooting Foul         46 401320566304
## 628       18      98                Free Throw - 1 of 2         46 401320566306
## 629       18     156                  Offensive Rebound         46 401320566307
## 630       18      99                Free Throw - 2 of 2         47 401320566308
## 631       20     110                 Driving Layup Shot         47 401320566309
## 632       18     110                 Driving Layup Shot         47 401320566310
## 633       20     155                  Defensive Rebound         47 401320566312
## 634       18      44                      Shooting Foul         47 401320566315
## 635       20      98                Free Throw - 1 of 2         47 401320566317
## 636       20     156                  Offensive Rebound         47 401320566318
## 637       20      99                Free Throw - 2 of 2         47 401320566321
## 638       18      63                 Lost Ball Turnover         47 401320566322
## 639       20     110                 Driving Layup Shot         47 401320566324
## 640       18      90  Out of Bounds - Bad Pass Turnover         47 401320566325
## 641       18      16                       Full Timeout         47 401320566328
## 642       20     110                 Driving Layup Shot         47 401320566332
## 643       18     155                  Defensive Rebound         47 401320566333
## 644       18      62                 Bad Pass\nTurnover         47 401320566334
## 645       20      64                          Traveling         47 401320566336
## 646       18      92                          Jump Shot         50 401320566337
## 647       20      42                     Offensive Foul         50 401320566339
## 648       20      84            Offensive Foul Turnover         50 401320566341
## 649       18      92                          Jump Shot         50 401320566342
## 650       18     156                  Offensive Rebound         50 401320566343
## 651       18      92                          Jump Shot         50 401320566344
## 652       20     155                  Defensive Rebound         50 401320566345
## 653       20     131                   Pullup Jump Shot         50 401320566346
## 654       18     155                  Defensive Rebound         50 401320566347
## 655       18      92                          Jump Shot         53 401320566348
## 656       18       8                      Delay of Game         53 401320566351
## 657       20      92                          Jump Shot         53 401320566352
## 658       18     155                  Defensive Rebound         53 401320566353
## 659       18      92                          Jump Shot         53 401320566354
## 660       20     155                  Defensive Rebound         53 401320566355
## 661       20      90  Out of Bounds - Bad Pass Turnover         53 401320566356
## 662       20     584                       Substitution         53 401320566357
## 663       20     584                       Substitution         53 401320566358
## 664       20     584                       Substitution         53 401320566359
## 665       18      95                         Layup Shot         53 401320566363
## 666       18     156                  Offensive Rebound         53 401320566364
## 667       18     125                 Layup Shot Putback         55 401320566365
## 668       20     131                   Pullup Jump Shot         55 401320566366
## 669       18     155                  Defensive Rebound         55 401320566367
## 670       18      92                          Jump Shot         55 401320566368
## 671       20     155                  Defensive Rebound         55 401320566369
## 672       20     131                   Pullup Jump Shot         55 401320566370
## 673       18     155                  Defensive Rebound         55 401320566371
## 674       18     114               Turnaround Jump Shot         55 401320566373
## 675       18     156                  Offensive Rebound         55 401320566374
## 676       18      92                          Jump Shot         55 401320566375
## 677       18     156                  Offensive Rebound         55 401320566377
## 678       18     125                 Layup Shot Putback         57 401320566378
## 679       20      92                          Jump Shot         57 401320566379
## 680       18      62                 Bad Pass\nTurnover         57 401320566380
## 681       20     109                 Running Layup Shot         57 401320566382
## 682       18     110                 Driving Layup Shot         57 401320566383
## 683       18     156                  Offensive Rebound         57 401320566385
## 684       18     125                 Layup Shot Putback         59 401320566386
## 685       20      62                 Bad Pass\nTurnover         59 401320566387
## 686       20      44                      Shooting Foul         59 401320566389
## 687       18      98                Free Throw - 1 of 2         60 401320566391
## 688       20     584                       Substitution         60 401320566392
## 689       18     584                       Substitution         60 401320566393
## 690       18     584                       Substitution         60 401320566394
## 691       18      99                Free Throw - 2 of 2         61 401320566398
## 692       20      92                          Jump Shot         61 401320566399
## 693       20      45                      Personal Foul         61 401320566401
## 694       18      98                Free Throw - 1 of 2         61 401320566403
## 695       18     156                  Offensive Rebound         61 401320566404
## 696       18      99                Free Throw - 2 of 2         62 401320566405
## 697       20     131                   Pullup Jump Shot         62 401320566406
## 698       18     131                   Pullup Jump Shot         62 401320566408
## 699       18     156                  Offensive Rebound         62 401320566409
## 700     <NA>     412                         End Period         62 401320566410
## 701       20      92                          Jump Shot         62 401320566412
## 702       20     156                  Offensive Rebound         62 401320566413
## 703       20      92                          Jump Shot         62 401320566414
## 704       18     155                  Defensive Rebound         62 401320566415
## 705       18      62                 Bad Pass\nTurnover         62 401320566416
## 706       20      92                          Jump Shot         62 401320566418
## 707       20     156                  Offensive Rebound         62 401320566419
## 708       20      92                          Jump Shot         62 401320566420
## 709       18     155                  Defensive Rebound         62 401320566421
## 710       18      92                          Jump Shot         65 401320566422
## 711       18      44                      Shooting Foul         65 401320566423
## 712       20      98                Free Throw - 1 of 2         65 401320566425
## 713       20      99                Free Throw - 2 of 2         65 401320566426
## 714       18      63                 Lost Ball Turnover         65 401320566427
## 715       18      45                      Personal Foul         65 401320566429
## 716       20     131                   Pullup Jump Shot         65 401320566431
## 717       18     155                  Defensive Rebound         65 401320566432
## 718       18      92                          Jump Shot         67 401320566433
## 719       20      92                          Jump Shot         67 401320566435
## 720       18     155                  Defensive Rebound         67 401320566436
## 721       18      95                         Layup Shot         67 401320566437
## 722       18     156                  Offensive Rebound         67 401320566439
## 723       20     584                       Substitution         67 401320566441
## 724       18     584                       Substitution         67 401320566442
## 725       20      45                      Personal Foul         67 401320566445
## 726       18      92                          Jump Shot         69 401320566447
## 727       20     110                 Driving Layup Shot         69 401320566449
## 728       18     155                  Defensive Rebound         69 401320566450
## 729       18      92                          Jump Shot         69 401320566451
## 730       20     155                  Defensive Rebound         69 401320566452
## 731       20      92                          Jump Shot         69 401320566453
## 732       18     155                  Defensive Rebound         69 401320566454
## 733       18     584                       Substitution         69 401320566456
## 734       20      44                      Shooting Foul         69 401320566458
## 735       18      98                Free Throw - 1 of 2         69 401320566460
## 736       18     156                  Offensive Rebound         69 401320566461
## 737       20     584                       Substitution         69 401320566462
## 738       18      99                Free Throw - 2 of 2         70 401320566464
## 739       20     119                  Driving Hook Shot         70 401320566465
## 740       18      92                          Jump Shot         73 401320566466
## 741       18      45                      Personal Foul         73 401320566468
## 742     <NA>      19                   Official Timeout         73 401320566470
## 743       20     584                       Substitution         73 401320566472
## 744       18     584                       Substitution         73 401320566473
## 745       18     584                       Substitution         73 401320566474
## 746       18      45                      Personal Foul         73 401320566478
## 747       20      92                          Jump Shot         73 401320566480
## 748       18      92                          Jump Shot         73 401320566482
## 749       20     155                  Defensive Rebound         73 401320566483
## 750       20     109                 Running Layup Shot         73 401320566484
## 751       20     156                  Offensive Rebound         73 401320566486
## 752       18     615                           Jumpball         73 401320566487
## 753       20      62                 Bad Pass\nTurnover         73 401320566524
## 754       18     131                   Pullup Jump Shot         73 401320566492
## 755       18     156                  Offensive Rebound         73 401320566493
## 756       18      64                          Traveling         73 401320566494
## 757       20     110                 Driving Layup Shot         73 401320566495
## 758       20     156                  Offensive Rebound         73 401320566496
## 759       20     125                 Layup Shot Putback         73 401320566497
## 760       18     155                  Defensive Rebound         73 401320566499
## 761       18     109                 Running Layup Shot         75 401320566500
## 762       20      16                       Full Timeout         75 401320566502
## 763       18     584                       Substitution         75 401320566503
## 764       20     132                Step Back Jump Shot         75 401320566505
## 765       20     156                  Offensive Rebound         75 401320566506
## 766       20     110                 Driving Layup Shot         75 401320566507
## 767       18      44                      Shooting Foul         75 401320566509
## 768       20     584                       Substitution         75 401320566511
## 769       20      97                Free Throw - 1 of 1         75 401320566513
## 770       18      92                          Jump Shot         75 401320566514
## 771       18     156                  Offensive Rebound         75 401320566515
## 772       18      70                Shot Clock Turnover         75 401320566516
## 773       20     584                       Substitution         75 401320566517
## 774       20     144         Driving Floating Jump Shot         75 401320566519
## 775       18      92                          Jump Shot         78 401320566520
## 776       20     141                 Cutting Layup Shot         78 401320566522
## 777       18     110                 Driving Layup Shot         78 401320566526
## 778       20     155                  Defensive Rebound         78 401320566527
## 779       18      45                      Personal Foul         78 401320566528
## 780       20      98                Free Throw - 1 of 2         78 401320566530
## 781       20     584                       Substitution         78 401320566531
## 782       18     584                       Substitution         78 401320566532
## 783       18     584                       Substitution         78 401320566533
## 784       18     584                       Substitution         78 401320566534
## 785       20      99                Free Throw - 2 of 2         78 401320566539
## 786       18      24                   Offensive Charge         78 401320566543
## 787       18      84            Offensive Foul Turnover         78 401320566545
## 788       18      44                      Shooting Foul         78 401320566546
## 789       20      98                Free Throw - 1 of 2         78 401320566548
## 790       20      99                Free Throw - 2 of 2         78 401320566549
## 791       18     155                  Defensive Rebound         78 401320566550
## 792       18      95                         Layup Shot         78 401320566551
## 793       20     155                  Defensive Rebound         78 401320566553
## 794       18      44                      Shooting Foul         78 401320566554
## 795       20      98                Free Throw - 1 of 2         78 401320566556
## 796       20      99                Free Throw - 2 of 2         78 401320566557
## 797       18     155                  Defensive Rebound         78 401320566558
## 798     <NA>     412                         End Period         78 401320566559
## 799     <NA>     402                           End Game         78 401320566560
## 800        8     615                           Jumpball          0   4013205674
## 801        8      92                          Jump Shot          0   4013205677
## 802       11      62                 Bad Pass\nTurnover          0   4013205679
## 803        8     109                 Running Layup Shot          0  40132056711
## 804       11      92                          Jump Shot          0  40132056712
## 805        8     155                  Defensive Rebound          0  40132056713
## 806        8      95                         Layup Shot          0  40132056714
## 807       11     155                  Defensive Rebound          0  40132056716
## 808       11      95                         Layup Shot          0  40132056718
## 809        8     155                  Defensive Rebound          0  40132056719
## 810        8      95                         Layup Shot          0  40132056720
## 811       11     155                  Defensive Rebound          0  40132056722
## 812       11     131                   Pullup Jump Shot          0  40132056723
## 813        8     155                  Defensive Rebound          0  40132056724
## 814        8      92                          Jump Shot          0  40132056725
## 815       11     155                  Defensive Rebound          0  40132056726
## 816       11     109                 Running Layup Shot          0  40132056727
## 817        8     155                  Defensive Rebound          0  40132056728
## 818        8      92                          Jump Shot          0  40132056729
## 819       11     155                  Defensive Rebound          0  40132056730
## 820       11     109                 Running Layup Shot          2  40132056731
## 821        8      92                          Jump Shot          2  40132056733
## 822       11      62                 Bad Pass\nTurnover          2  40132056735
## 823        8      92                          Jump Shot          2  40132056737
## 824       11     155                  Defensive Rebound          2  40132056738
## 825        8      44                      Shooting Foul          2  40132056739
## 826       11      98                Free Throw - 1 of 2          3  40132056741
## 827        8     584                       Substitution          3  40132056742
## 828        8     584                       Substitution          3  40132056743
## 829       11      99                Free Throw - 2 of 2          3  40132056746
## 830       11     156                  Offensive Rebound          3  40132056747
## 831       11      92                          Jump Shot          3  40132056749
## 832        8     155                  Defensive Rebound          3  40132056750
## 833        8      95                         Layup Shot          3  40132056752
## 834       11     155                  Defensive Rebound          3  40132056753
## 835        8      45                      Personal Foul          3  40132056754
## 836       11     141                 Cutting Layup Shot          5  40132056756
## 837        8     109                 Running Layup Shot          5  40132056758
## 838       11     155                  Defensive Rebound          5  40132056759
## 839       11      95                         Layup Shot          7  40132056760
## 840        8      92                          Jump Shot          7  40132056761
## 841       11     155                  Defensive Rebound          7  40132056762
## 842       11      92                          Jump Shot          7  40132056763
## 843        8     155                  Defensive Rebound          7  40132056764
## 844     <NA>      19                   Official Timeout          7  40132056767
## 845        8     584                       Substitution          7  40132056768
## 846        8     584                       Substitution          7  40132056769
## 847       11     584                       Substitution          7  40132056770
## 848        8      92                          Jump Shot          7  40132056774
## 849       11     155                  Defensive Rebound          7  40132056775
## 850       11      92                          Jump Shot          7  40132056776
## 851       11     156                  Offensive Rebound          7  40132056777
## 852       11     141                 Cutting Layup Shot          7  40132056779
## 853        8     155                  Defensive Rebound          7  40132056780
## 854        8      92                          Jump Shot          7  40132056781
## 855        8     156                  Offensive Rebound          7  40132056782
## 856        8      92                          Jump Shot          7  40132056784
## 857       11     155                  Defensive Rebound          7  40132056785
## 858       11     141                 Cutting Layup Shot          9  40132056786
## 859        8      42                     Offensive Foul          9  40132056788
## 860        8      84            Offensive Foul Turnover          9  40132056790
## 861        8     584                       Substitution          9  40132056791
## 862       11     584                       Substitution          9  40132056792
## 863       11      92                          Jump Shot          9  40132056795
## 864        8     155                  Defensive Rebound          9  40132056796
## 865        8      92                          Jump Shot          9  40132056797
## 866       11     141                 Cutting Layup Shot          9  40132056798
## 867        8     155                  Defensive Rebound          9  40132056799
## 868        8     131                   Pullup Jump Shot          9 401320567100
## 869       11     155                  Defensive Rebound          9 401320567101
## 870       11      95                         Layup Shot         11 401320567102
## 871        8      42                     Offensive Foul         11 401320567104
## 872        8      84            Offensive Foul Turnover         11 401320567106
## 873       11     584                       Substitution         11 401320567107
## 874       11     584                       Substitution         11 401320567108
## 875       11      92                          Jump Shot         11 401320567111
## 876        8     155                  Defensive Rebound         11 401320567112
## 877       11      43                    Loose Ball Foul         11 401320567113
## 878        8      92                          Jump Shot         11 401320567115
## 879       11     155                  Defensive Rebound         11 401320567116
## 880       11      92                          Jump Shot         11 401320567117
## 881        8     155                  Defensive Rebound         11 401320567118
## 882       11      43                    Loose Ball Foul         11 401320567119
## 883       11     584                       Substitution         11 401320567121
## 884        8      64                          Traveling         11 401320567123
## 885       11      90  Out of Bounds - Bad Pass Turnover         11 401320567124
## 886       11      45                      Personal Foul         11 401320567125
## 887        8      98                Free Throw - 1 of 2         11 401320567127
## 888        8     156                  Offensive Rebound         11 401320567128
## 889        8     584                       Substitution         11 401320567129
## 890        8      99                Free Throw - 2 of 2         11 401320567131
## 891        8      45                      Personal Foul         11 401320567132
## 892        8      45                      Personal Foul         11 401320567134
## 893       11      98                Free Throw - 1 of 2         12 401320567136
## 894       11      99                Free Throw - 2 of 2         12 401320567137
## 895       11     156                  Offensive Rebound         12 401320567138
## 896       11      92                          Jump Shot         12 401320567139
## 897        8     155                  Defensive Rebound         12 401320567140
## 898        8     131                   Pullup Jump Shot         12 401320567141
## 899       11     155                  Defensive Rebound         12 401320567142
## 900       11      92                          Jump Shot         14 401320567144
## 901        8     109                 Running Layup Shot         14 401320567146
## 902       11     155                  Defensive Rebound         14 401320567147
## 903     <NA>     412                         End Period         14 401320567148
## 904        8     584                       Substitution         14 401320567149
## 905        8     584                       Substitution         14 401320567150
## 906       11     584                       Substitution         14 401320567151
## 907       11     113                  Running Jump Shot         14 401320567156
## 908       11     156                  Offensive Rebound         14 401320567157
## 909       11      92                          Jump Shot         16 401320567159
## 910        8      62                 Bad Pass\nTurnover         16 401320567161
## 911       11      95                         Layup Shot         18 401320567163
## 912        8      16                       Full Timeout         18 401320567165
## 913        8     584                       Substitution         18 401320567166
## 914        8      95                         Layup Shot         18 401320567168
## 915        8     156                  Offensive Rebound         18 401320567169
## 916        8      63                 Lost Ball Turnover         18 401320567170
## 917       11      92                          Jump Shot         20 401320567172
## 918        8     131                   Pullup Jump Shot         20 401320567174
## 919       11     132                Step Back Jump Shot         20 401320567175
## 920        8     155                  Defensive Rebound         20 401320567176
## 921        8      92                          Jump Shot         20 401320567177
## 922       11     155                  Defensive Rebound         20 401320567178
## 923       11      92                          Jump Shot         20 401320567179
## 924       11     156                  Offensive Rebound         20 401320567180
## 925       11      92                          Jump Shot         20 401320567181
## 926        8     155                  Defensive Rebound         20 401320567182
## 927        8     584                       Substitution         20 401320567184
## 928       11     584                       Substitution         20 401320567185
## 929        8      95                         Layup Shot         20 401320567188
## 930       11      92                          Jump Shot         20 401320567190
## 931        8     155                  Defensive Rebound         20 401320567191
## 932       11      44                      Shooting Foul         20 401320567192
## 933        8      98                Free Throw - 1 of 2         20 401320567194
## 934       11     584                       Substitution         20 401320567195
## 935        8      99                Free Throw - 2 of 2         20 401320567197
## 936       11      62                 Bad Pass\nTurnover         20 401320567198
## 937       11      43                    Loose Ball Foul         20 401320567200
## 938       11     584                       Substitution         20 401320567202
## 939        8      92                          Jump Shot         20 401320567204
## 940       11     155                  Defensive Rebound         20 401320567205
## 941        8      45                      Personal Foul         20 401320567206
## 942       11      95                         Layup Shot         22 401320567208
## 943        8     131                   Pullup Jump Shot         22 401320567210
## 944       11     155                  Defensive Rebound         22 401320567211
## 945       11     109                 Running Layup Shot         24 401320567212
## 946        8     131                   Pullup Jump Shot         24 401320567213
## 947       11      92                          Jump Shot         27 401320567214
## 948        8     109                 Running Layup Shot         27 401320567216
## 949       11     155                  Defensive Rebound         27 401320567217
## 950       11     110                 Driving Layup Shot         29 401320567218
## 951        8      16                       Full Timeout         29 401320567219
## 952        8     584                       Substitution         29 401320567220
## 953        8     110                 Driving Layup Shot         29 401320567222
## 954       11      42                     Offensive Foul         29 401320567224
## 955       11      84            Offensive Foul Turnover         29 401320567226
## 956        8      92                          Jump Shot         29 401320567227
## 957       11     155                  Defensive Rebound         29 401320567228
## 958        8      45                      Personal Foul         29 401320567229
## 959       11      92                          Jump Shot         29 401320567231
## 960        8     155                  Defensive Rebound         29 401320567232
## 961        8      92                          Jump Shot         29 401320567233
## 962       11     155                  Defensive Rebound         29 401320567234
## 963       11     110                 Driving Layup Shot         29 401320567236
## 964        8     155                  Defensive Rebound         29 401320567237
## 965        8      92                          Jump Shot         29 401320567238
## 966        8     156                  Offensive Rebound         29 401320567239
## 967        8     110                 Driving Layup Shot         29 401320567240
## 968       11      67                  3-Second Turnover         29 401320567242
## 969       11     584                       Substitution         29 401320567243
## 970        8      92                          Jump Shot         29 401320567245
## 971       11     155                  Defensive Rebound         29 401320567247
## 972       11      92                          Jump Shot         29 401320567248
## 973        8     155                  Defensive Rebound         29 401320567250
## 974        8      92                          Jump Shot         29 401320567251
## 975        8     156                  Offensive Rebound         29 401320567252
## 976        8     125                 Layup Shot Putback         29 401320567253
## 977       11      16                       Full Timeout         29 401320567254
## 978        8     584                       Substitution         29 401320567255
## 979       11      95                         Layup Shot         31 401320567257
## 980        8      92                          Jump Shot         31 401320567259
## 981       11     155                  Defensive Rebound         31 401320567260
## 982       11      92                          Jump Shot         31 401320567261
## 983       11     156                  Offensive Rebound         31 401320567262
## 984       11      87 Out of Bounds - Lost Ball Turnover         31 401320567263
## 985        8     132                Step Back Jump Shot         31 401320567264
## 986       11     155                  Defensive Rebound         31 401320567265
## 987       11      95                         Layup Shot         31 401320567266
## 988       11     156                  Offensive Rebound         31 401320567267
## 989       11      94                           Tip Shot         33 401320567268
## 990     <NA>     412                         End Period         33 401320567270
## 991        8     584                       Substitution         33 401320567271
## 992        8     584                       Substitution         33 401320567272
## 993       11      95                         Layup Shot         35 401320567277
## 994        8      92                          Jump Shot         35 401320567279
## 995       11     110                 Driving Layup Shot         35 401320567281
## 996       11     156                  Offensive Rebound         35 401320567282
## 997       11      64                          Traveling         35 401320567283
## 998        8      92                          Jump Shot         35 401320567284
## 999        8      44                      Shooting Foul         35 401320567285
## 1000      11      98                Free Throw - 1 of 2         36 401320567287
## 1001      11      99                Free Throw - 2 of 2         37 401320567288
## 1002       8      92                          Jump Shot         37 401320567289
## 1003       8     156                  Offensive Rebound         37 401320567290
## 1004       8      92                          Jump Shot         37 401320567291
## 1005      11     110                 Driving Layup Shot         39 401320567293
## 1006       8      87 Out of Bounds - Lost Ball Turnover         39 401320567294
## 1007      11      92                          Jump Shot         39 401320567295
## 1008       8     155                  Defensive Rebound         39 401320567297
## 1009      11      44                      Shooting Foul         39 401320567298
## 1010       8      98                Free Throw - 1 of 2         39 401320567300
## 1011       8      99                Free Throw - 2 of 2         39 401320567301
## 1012      11     131                   Pullup Jump Shot         39 401320567302
## 1013       8     155                  Defensive Rebound         39 401320567303
## 1014       8      92                          Jump Shot         39 401320567304
## 1015      11      16                       Full Timeout         39 401320567306
## 1016      11      62                 Bad Pass\nTurnover         39 401320567307
## 1017       8      64                          Traveling         39 401320567309
## 1018      11     141                 Cutting Layup Shot         39 401320567310
## 1019       8     155                  Defensive Rebound         39 401320567311
## 1020       8     141                 Cutting Layup Shot         39 401320567312
## 1021       8      45                      Personal Foul         39 401320567314
## 1022      11      92                          Jump Shot         39 401320567316
## 1023       8     155                  Defensive Rebound         39 401320567317
## 1024       8     131                   Pullup Jump Shot         39 401320567318
## 1025      11     130                 Floating Jump Shot         41 401320567319
## 1026       8      42                     Offensive Foul         41 401320567320
## 1027       8      84            Offensive Foul Turnover         41 401320567322
## 1028       8     584                       Substitution         41 401320567323
## 1029       8      44                      Shooting Foul         41 401320567325
## 1030      11      98                Free Throw - 1 of 2         42 401320567327
## 1031      11      99                Free Throw - 2 of 2         42 401320567328
## 1032      11     156                  Offensive Rebound         42 401320567329
## 1033      11     113                  Running Jump Shot         44 401320567330
## 1034       8     110                 Driving Layup Shot         44 401320567331
## 1035      11      44                      Shooting Foul         44 401320567332
## 1036       8      97                Free Throw - 1 of 1         44 401320567334
## 1037      11     132                Step Back Jump Shot         47 401320567335
## 1038       8      92                          Jump Shot         47 401320567336
## 1039       8     156                  Offensive Rebound         47 401320567337
## 1040       8     584                       Substitution         47 401320567339
## 1041      11     584                       Substitution         47 401320567340
## 1042      11     584                       Substitution         47 401320567341
## 1043       8     141                 Cutting Layup Shot         47 401320567345
## 1044      11      44                      Shooting Foul         47 401320567347
## 1045       8      97                Free Throw - 1 of 1         47 401320567349
## 1046      11     155                  Defensive Rebound         47 401320567350
## 1047      11      92                          Jump Shot         50 401320567351
## 1048      11      45                      Personal Foul         50 401320567353
## 1049       8     147           Step Back Bank Jump Shot         50 401320567355
## 1050      11      92                          Jump Shot         50 401320567357
## 1051       8     155                  Defensive Rebound         50 401320567358
## 1052       8      62                 Bad Pass\nTurnover         50 401320567359
## 1053      11      92                          Jump Shot         50 401320567361
## 1054      11     156                  Offensive Rebound         50 401320567362
## 1055       8      44                      Shooting Foul         50 401320567363
## 1056      11      98                Free Throw - 1 of 2         50 401320567365
## 1057      11     156                  Offensive Rebound         50 401320567366
## 1058       8     584                       Substitution         50 401320567367
## 1059      11     584                       Substitution         50 401320567368
## 1060      11      99                Free Throw - 2 of 2         51 401320567371
## 1061       8      92                          Jump Shot         51 401320567372
## 1062      11      95                         Layup Shot         51 401320567374
## 1063       8     155                  Defensive Rebound         51 401320567375
## 1064       8      92                          Jump Shot         51 401320567376
## 1065      11     155                  Defensive Rebound         51 401320567377
## 1066       8     584                       Substitution         51 401320567379
## 1067       8     584                       Substitution         51 401320567380
## 1068      11     584                       Substitution         51 401320567381
## 1069      11     137     Turnaround Fade Away Jump Shot         51 401320567385
## 1070       8     155                  Defensive Rebound         51 401320567386
## 1071      11      45                      Personal Foul         51 401320567387
## 1072       8      98                Free Throw - 1 of 2         51 401320567389
## 1073       8      99                Free Throw - 2 of 2         51 401320567390
## 1074      11     111               Alley Oop Layup Shot         53 401320567391
## 1075       8      92                          Jump Shot         53 401320567393
## 1076      11     155                  Defensive Rebound         53 401320567394
## 1077       8      45                      Personal Foul         53 401320567395
## 1078      11      98                Free Throw - 1 of 2         54 401320567397
## 1079       8     584                       Substitution         54 401320567398
## 1080      11      99                Free Throw - 2 of 2         54 401320567400
## 1081       8     155                  Defensive Rebound         54 401320567401
## 1082       8      42                     Offensive Foul         54 401320567402
## 1083       8      84            Offensive Foul Turnover         54 401320567404
## 1084      11      95                         Layup Shot         56 401320567405
## 1085       8     110                 Driving Layup Shot         56 401320567407
## 1086      11      92                          Jump Shot         56 401320567409
## 1087       8     155                  Defensive Rebound         56 401320567410
## 1088    <NA>     412                         End Period         56 401320567411
## 1089       8     584                       Substitution         56 401320567412
## 1090      11     584                       Substitution         56 401320567413
## 1091      11      45                      Personal Foul         56 401320567417
## 1092       8      95                         Layup Shot         56 401320567419
## 1093      11     155                  Defensive Rebound         56 401320567420
## 1094      11     110                 Driving Layup Shot         56 401320567445
## 1095       8     155                  Defensive Rebound         56 401320567447
## 1096       8      92                          Jump Shot         56 401320567422
## 1097       8     615                           Jumpball         56 401320567424
## 1098       8     156                  Offensive Rebound         56 401320567427
## 1099       8      92                          Jump Shot         56 401320567428
## 1100      11     584                       Substitution         56 401320567431
## 1101       8      44                      Shooting Foul         56 401320567433
## 1102      11      98                Free Throw - 1 of 2         57 401320567435
## 1103      11      99                Free Throw - 2 of 2         58 401320567436
## 1104       8      62                 Bad Pass\nTurnover         58 401320567437
## 1105      11     110                 Driving Layup Shot         60 401320567439
## 1106       8      63                 Lost Ball Turnover         60 401320567440
## 1107      11      95                         Layup Shot         62 401320567442
## 1108       8      16                       Full Timeout         62 401320567444
## 1109       8     584                       Substitution         62 401320567448
## 1110       8     114               Turnaround Jump Shot         62 401320567451
## 1111      11     155                  Defensive Rebound         62 401320567453
## 1112      11     110                 Driving Layup Shot         62 401320567454
## 1113       8     155                  Defensive Rebound         62 401320567456
## 1114       8      92                          Jump Shot         62 401320567458
## 1115      11     155                  Defensive Rebound         62 401320567459
## 1116      11     110                 Driving Layup Shot         62 401320567460
## 1117      11     156                  Offensive Rebound         62 401320567461
## 1118      11      94                           Tip Shot         64 401320567462
## 1119      11      45                      Personal Foul         64 401320567463
## 1120       8      92                          Jump Shot         64 401320567465
## 1121       8     156                  Offensive Rebound         64 401320567467
## 1122       8      92                          Jump Shot         64 401320567469
## 1123       8      45                      Personal Foul         64 401320567471
## 1124      11      92                          Jump Shot         64 401320567473
## 1125       8     155                  Defensive Rebound         64 401320567474
## 1126       8     110                 Driving Layup Shot         64 401320567475
## 1127      11     155                  Defensive Rebound         64 401320567477
## 1128      11      95                         Layup Shot         64 401320567478
## 1129      11     156                  Offensive Rebound         64 401320567480
## 1130      11      62                 Bad Pass\nTurnover         64 401320567482
## 1131       8     110                 Driving Layup Shot         64 401320567484
## 1132       8     156                  Offensive Rebound         64 401320567486
## 1133       8      92                          Jump Shot         64 401320567488
## 1134      11     110                 Driving Layup Shot         66 401320567490
## 1135      11      45                      Personal Foul         66 401320567492
## 1136       8      95                         Layup Shot         66 401320567494
## 1137       8     156                  Offensive Rebound         66 401320567495
## 1138       8      92                          Jump Shot         66 401320567496
## 1139      11      62                 Bad Pass\nTurnover         66 401320567497
## 1140      11      44                      Shooting Foul         66 401320567499
## 1141       8      98                Free Throw - 1 of 2         66 401320567501
## 1142       8      99                Free Throw - 2 of 2         66 401320567502
## 1143      11     113                  Running Jump Shot         66 401320567503
## 1144       8     155                  Defensive Rebound         66 401320567504
## 1145       8      42                     Offensive Foul         66 401320567505
## 1146       8      84            Offensive Foul Turnover         66 401320567507
## 1147      11     113                  Running Jump Shot         66 401320567508
## 1148       8     155                  Defensive Rebound         66 401320567509
## 1149       8      92                          Jump Shot         66 401320567510
## 1150      11     155                  Defensive Rebound         66 401320567511
## 1151      11     111               Alley Oop Layup Shot         68 401320567512
## 1152       8     113                  Running Jump Shot         68 401320567514
## 1153       8      44                      Shooting Foul         68 401320567515
## 1154      11      98                Free Throw - 1 of 2         69 401320567517
## 1155       8     584                       Substitution         69 401320567518
## 1156      11      99                Free Throw - 2 of 2         69 401320567520
## 1157       8     155                  Defensive Rebound         69 401320567521
## 1158       8      95                         Layup Shot         69 401320567522
## 1159      11     155                  Defensive Rebound         69 401320567524
## 1160      11      92                          Jump Shot         69 401320567525
## 1161       8     155                  Defensive Rebound         69 401320567526
## 1162       8     131                   Pullup Jump Shot         69 401320567527
## 1163      11      92                          Jump Shot         69 401320567528
## 1164       8     155                  Defensive Rebound         69 401320567529
## 1165       8     113                  Running Jump Shot         69 401320567530
## 1166      11     155                  Defensive Rebound         69 401320567531
## 1167      11      95                         Layup Shot         71 401320567532
## 1168       8      44                      Shooting Foul         71 401320567534
## 1169    <NA>      19                   Official Timeout         71 401320567536
## 1170       8     584                       Substitution         71 401320567537
## 1171      11      97                Free Throw - 1 of 1         71 401320567539
## 1172       8     155                  Defensive Rebound         71 401320567540
## 1173       8      95                         Layup Shot         71 401320567541
## 1174      11      92                          Jump Shot         71 401320567542
## 1175      11     156                  Offensive Rebound         71 401320567543
## 1176      11      92                          Jump Shot         71 401320567544
## 1177       8     155                  Defensive Rebound         71 401320567545
## 1178      11      44                      Shooting Foul         71 401320567546
## 1179       8      98                Free Throw - 1 of 2         71 401320567548
## 1180       8      99                Free Throw - 2 of 2         71 401320567549
## 1181      11      95                         Layup Shot         73 401320567550
## 1182       8      16                       Full Timeout         73 401320567552
## 1183       8     141                 Cutting Layup Shot         73 401320567553
## 1184       8     156                  Offensive Rebound         73 401320567554
## 1185       8     125                 Layup Shot Putback         73 401320567555
## 1186      11      16                       Full Timeout         73 401320567556
## 1187       8      44                      Shooting Foul         73 401320567557
## 1188      11      98                Free Throw - 1 of 2         73 401320567559
## 1189      11     156                  Offensive Rebound         73 401320567560
## 1190      11      99                Free Throw - 2 of 2         74 401320567561
## 1191       8      17                      Short Timeout         74 401320567562
## 1192       8      63                 Lost Ball Turnover         74 401320567563
## 1193      11      92                          Jump Shot         77 401320567565
## 1194       8      17                      Short Timeout         77 401320567567
## 1195    <NA>     412                         End Period         77 401320567568
## 1196    <NA>     402                           End Game         77 401320567569
## 1197       6     615                           Jumpball          0   4013205684
## 1198       6     141                 Cutting Layup Shot          0   4013205687
## 1199       3      86      Out of Bounds - Step Turnover          0   4013205689
## 1200       6      92                          Jump Shot          0  40132056810
## 1201       3     155                  Defensive Rebound          0  40132056811
## 1202       3     131                   Pullup Jump Shot          0  40132056813
## 1203       6     155                  Defensive Rebound          0  40132056814
## 1204       6      92                          Jump Shot          0  40132056815
## 1205       3     155                  Defensive Rebound          0  40132056816
## 1206       3      87 Out of Bounds - Lost Ball Turnover          0  40132056817
## 1207       6     131                   Pullup Jump Shot          0  40132056818
## 1208       3      63                 Lost Ball Turnover          0  40132056819
## 1209       6     113                  Running Jump Shot          0  40132056821
## 1210       3     155                  Defensive Rebound          0  40132056822
## 1211       3      92                          Jump Shot          3  40132056823
## 1212       6      92                          Jump Shot          3  40132056825
## 1213       3     114               Turnaround Jump Shot          5  40132056826
## 1214       6      92                          Jump Shot          5  40132056828
## 1215       3     131                   Pullup Jump Shot          5  40132056830
## 1216       6     155                  Defensive Rebound          5  40132056831
## 1217       6      92                          Jump Shot          5  40132056832
## 1218       3      16                       Full Timeout          5  40132056833
## 1219       3     584                       Substitution          5  40132056834
## 1220       3      63                 Lost Ball Turnover          5  40132056836
## 1221       6      92                          Jump Shot          5  40132056838
## 1222       3     155                  Defensive Rebound          5  40132056839
## 1223       3      42                     Offensive Foul          5  40132056840
## 1224       3      84            Offensive Foul Turnover          5  40132056842
## 1225       6     584                       Substitution          5  40132056843
## 1226       6     584                       Substitution          5  40132056844
## 1227       3     584                       Substitution          5  40132056847
## 1228       3     584                       Substitution          5  40132056848
## 1229       6     131                   Pullup Jump Shot          5  40132056851
## 1230       6     615                           Jumpball          5  40132056852
## 1231       6     156                  Offensive Rebound          5  40132056855
## 1232       6     121                Fade Away Jump Shot          5  40132056856
## 1233       6      45                      Personal Foul          5  40132056857
## 1234       3     141                 Cutting Layup Shot          7  40132056859
## 1235       3      44                      Shooting Foul          7  40132056861
## 1236       6      98                Free Throw - 1 of 2          7  40132056863
## 1237       6     156                  Offensive Rebound          7  40132056864
## 1238       6      99                Free Throw - 2 of 2          7  40132056865
## 1239       3      62                 Bad Pass\nTurnover          7  40132056866
## 1240       6     113                  Running Jump Shot          7  40132056868
## 1241       3      42                     Offensive Foul          7  40132056872
## 1242       3      84            Offensive Foul Turnover          7  40132056874
## 1243       6     584                       Substitution          7  40132056875
## 1244       3     584                       Substitution          7  40132056881
## 1245       3     584                       Substitution          7  40132056882
## 1246       6      63                 Lost Ball Turnover          7  40132056877
## 1247       6      45                      Personal Foul          7  40132056879
## 1248       6     584                       Substitution          7  40132056885
## 1249       3      92                          Jump Shot          7  40132056891
## 1250       6     155                  Defensive Rebound          7  40132056892
## 1251       6      86      Out of Bounds - Step Turnover          7  40132056893
## 1252       3     120               Turnaround Hook Shot          9  40132056894
## 1253       6     110                 Driving Layup Shot          9  40132056896
## 1254       3      92                          Jump Shot         12  40132056898
## 1255       6      92                          Jump Shot         12 401320568100
## 1256       3     155                  Defensive Rebound         12 401320568101
## 1257       3      62                 Bad Pass\nTurnover         12 401320568102
## 1258       6      92                          Jump Shot         12 401320568104
## 1259       3     155                  Defensive Rebound         12 401320568105
## 1260       3      95                         Layup Shot         14 401320568106
## 1261       6      44                      Shooting Foul         14 401320568107
## 1262       6     584                       Substitution         14 401320568109
## 1263       3      97                Free Throw - 1 of 1         15 401320568111
## 1264       6      92                          Jump Shot         15 401320568112
## 1265       3     155                  Defensive Rebound         15 401320568113
## 1266       3      92                          Jump Shot         18 401320568114
## 1267       6      92                          Jump Shot         18 401320568115
## 1268       3     155                  Defensive Rebound         18 401320568116
## 1269       3      62                 Bad Pass\nTurnover         18 401320568118
## 1270       6      92                          Jump Shot         18 401320568120
## 1271       6     156                  Offensive Rebound         18 401320568121
## 1272       6     125                 Layup Shot Putback         18 401320568122
## 1273       3      64                          Traveling         18 401320568124
## 1274       6      92                          Jump Shot         18 401320568125
## 1275       3      62                 Bad Pass\nTurnover         18 401320568127
## 1276       6      42                     Offensive Foul         18 401320568129
## 1277       6      84            Offensive Foul Turnover         18 401320568131
## 1278       3     110                 Driving Layup Shot         20 401320568132
## 1279       3      44                      Shooting Foul         20 401320568133
## 1280       6      98                Free Throw - 1 of 2         20 401320568135
## 1281       6     584                       Substitution         20 401320568136
## 1282       6      99                Free Throw - 2 of 2         20 401320568138
## 1283       3      62                 Bad Pass\nTurnover         20 401320568139
## 1284       6      92                          Jump Shot         20 401320568141
## 1285       6     156                  Offensive Rebound         20 401320568142
## 1286       6     125                 Layup Shot Putback         20 401320568143
## 1287       3      92                          Jump Shot         20 401320568144
## 1288       3     156                  Offensive Rebound         20 401320568145
## 1289    <NA>     412                         End Period         20 401320568146
## 1290       6     584                       Substitution         20 401320568148
## 1291       3     584                       Substitution         20 401320568149
## 1292       3     584                       Substitution         20 401320568150
## 1293       6     584                       Substitution         22 401320568203
## 1294       3      97                Free Throw - 1 of 1         21 401320568158
## 1295       3     110                 Driving Layup Shot         23 401320568165
## 1296       6      44                      Shooting Foul         23 401320568169
## 1297       6     584                       Substitution         23 401320568208
## 1298       6      62                 Bad Pass\nTurnover         23 401320568325
## 1299       3     584                       Substitution         21 401320568159
## 1300       6      44                      Shooting Foul         23 401320568277
## 1301       3      98                Free Throw - 1 of 2         24 401320568279
## 1302       3      99                Free Throw - 2 of 2         25 401320568280
## 1303       6      92                          Jump Shot         21 401320568161
## 1304       3     155                  Defensive Rebound         21 401320568162
## 1305       6      44                      Shooting Foul         21 401320568163
## 1306       3     100                Free Throw - 1 of 3         24 401320568166
## 1307       3     101                Free Throw - 2 of 3         25 401320568167
## 1308       3     102                Free Throw - 3 of 3         26 401320568168
## 1309       6      64                          Traveling         26 401320568171
## 1310       3      63                 Lost Ball Turnover         26 401320568172
## 1311       6      95                         Layup Shot         27 401320568175
## 1312       6     156                  Offensive Rebound         26 401320568176
## 1313       6     125                 Layup Shot Putback         26 401320568177
## 1314       6      44                      Shooting Foul         27 401320568178
## 1315       3      98                Free Throw - 1 of 2         28 401320568180
## 1316       3      99                Free Throw - 2 of 2         28 401320568181
## 1317       6     141                 Cutting Layup Shot         29 401320568183
## 1318       3      62                 Bad Pass\nTurnover         28 401320568185
## 1319       3      45                      Personal Foul         28 401320568187
## 1320       3     584                       Substitution         28 401320568190
## 1321       6     584                       Substitution         30 401320568324
## 1322       6      92                          Jump Shot         28 401320568193
## 1323       3     155                  Defensive Rebound         28 401320568194
## 1324       3      92                          Jump Shot         28 401320568195
## 1325       6     155                  Defensive Rebound         28 401320568196
## 1326       6     584                       Substitution         28 401320568198
## 1327       6      92                          Jump Shot         28 401320568200
## 1328       3     155                  Defensive Rebound         28 401320568201
## 1329       3      42                     Offensive Foul         28 401320568202
## 1330       3      84            Offensive Foul Turnover         28 401320568205
## 1331       3     584                       Substitution         28 401320568206
## 1332       6      95                         Layup Shot         28 401320568210
## 1333       6     615                           Jumpball         28 401320568212
## 1334       6     156                  Offensive Rebound         28 401320568215
## 1335       6      95                         Layup Shot         28 401320568216
## 1336       6     156                  Offensive Rebound         28 401320568217
## 1337       6      92                          Jump Shot         28 401320568219
## 1338       3     155                  Defensive Rebound         28 401320568220
## 1339       3      92                          Jump Shot         30 401320568221
## 1340       3      44                      Shooting Foul         30 401320568222
## 1341       6      98                Free Throw - 1 of 2         30 401320568224
## 1342       6     584                       Substitution         30 401320568225
## 1343       3     584                       Substitution         30 401320568226
## 1344       6      99                Free Throw - 2 of 2         30 401320568229
## 1345       3      92                          Jump Shot         30 401320568230
## 1346       6     155                  Defensive Rebound         30 401320568231
## 1347       6      63                 Lost Ball Turnover         30 401320568232
## 1348       3      92                          Jump Shot         33 401320568234
## 1349       6      64                          Traveling         33 401320568237
## 1350    <NA>      19                   Official Timeout         33 401320568238
## 1351       3     584                       Substitution         33 401320568239
## 1352       3      92                          Jump Shot         33 401320568241
## 1353       6     155                  Defensive Rebound         33 401320568242
## 1354       6     141                 Cutting Layup Shot         33 401320568243
## 1355       3     155                  Defensive Rebound         33 401320568244
## 1356       3     131                   Pullup Jump Shot         35 401320568245
## 1357       6     110                 Driving Layup Shot         35 401320568246
## 1358       3      92                          Jump Shot         35 401320568247
## 1359       6     155                  Defensive Rebound         35 401320568248
## 1360       6      63                 Lost Ball Turnover         35 401320568249
## 1361       3      90  Out of Bounds - Bad Pass Turnover         35 401320568251
## 1362       6     584                       Substitution         35 401320568252
## 1363       6      92                          Jump Shot         35 401320568254
## 1364       3     155                  Defensive Rebound         35 401320568256
## 1365       3      42                     Offensive Foul         35 401320568257
## 1366       3      84            Offensive Foul Turnover         35 401320568259
## 1367       3     584                       Substitution         35 401320568260
## 1368       3      45                      Personal Foul         35 401320568262
## 1369       6      92                          Jump Shot         35 401320568264
## 1370       3     155                  Defensive Rebound         35 401320568265
## 1371       3     141                 Cutting Layup Shot         37 401320568266
## 1372       3      44                      Shooting Foul         37 401320568268
## 1373       6      98                Free Throw - 1 of 2         37 401320568270
## 1374       6     156                  Offensive Rebound         37 401320568271
## 1375       6      99                Free Throw - 2 of 2         37 401320568272
## 1376       3      92                          Jump Shot         37 401320568273
## 1377       3     156                  Offensive Rebound         37 401320568274
## 1378       3      87 Out of Bounds - Lost Ball Turnover         37 401320568275
## 1379       6      16                       Full Timeout         37 401320568276
## 1380       6     114               Turnaround Jump Shot         39 401320568281
## 1381       3     155                  Defensive Rebound         39 401320568282
## 1382       3     131                   Pullup Jump Shot         41 401320568283
## 1383       6      92                          Jump Shot         41 401320568284
## 1384       3     155                  Defensive Rebound         41 401320568285
## 1385       3      92                          Jump Shot         41 401320568287
## 1386       6     155                  Defensive Rebound         41 401320568288
## 1387       6     146           Running Pullup Jump Shot         41 401320568289
## 1388       6      44                      Shooting Foul         41 401320568291
## 1389       3      98                Free Throw - 1 of 2         42 401320568293
## 1390       6     584                       Substitution         42 401320568294
## 1391       6     584                       Substitution         42 401320568295
## 1392       6     584                       Substitution         42 401320568296
## 1393       3     584                       Substitution         42 401320568297
## 1394       3      99                Free Throw - 2 of 2         42 401320568302
## 1395       6     155                  Defensive Rebound         42 401320568303
## 1396       3      44                      Shooting Foul         42 401320568305
## 1397       6      98                Free Throw - 1 of 2         42 401320568307
## 1398       6     156                  Offensive Rebound         42 401320568308
## 1399       3     584                       Substitution         42 401320568309
## 1400       6      99                Free Throw - 2 of 2         42 401320568311
## 1401       3     155                  Defensive Rebound         42 401320568312
## 1402       3      62                 Bad Pass\nTurnover         42 401320568313
## 1403       6     109                 Running Layup Shot         42 401320568315
## 1404       3     132                Step Back Jump Shot         44 401320568317
## 1405       6     129          Running Finger Roll Layup         44 401320568318
## 1406       3     155                  Defensive Rebound         44 401320568319
## 1407       3      64                          Traveling         44 401320568320
## 1408       6      92                          Jump Shot         44 401320568321
## 1409       6     156                  Offensive Rebound         44 401320568322
## 1410    <NA>     412                         End Period         44 401320568323
## 1411       6     584                       Substitution         44 401320568327
## 1412       6     584                       Substitution         44 401320568328
## 1413       3     584                       Substitution         44 401320568329
## 1414       3     584                       Substitution         44 401320568330
## 1415       3     584                       Substitution         44 401320568331
## 1416       3      64                          Traveling         44 401320568338
## 1417       6     131                   Pullup Jump Shot         44 401320568340
## 1418       3     155                  Defensive Rebound         44 401320568341
## 1419       3     131                   Pullup Jump Shot         44 401320568342
## 1420       3     156                  Offensive Rebound         44 401320568343
## 1421       3     110                 Driving Layup Shot         44 401320568344
## 1422       6     155                  Defensive Rebound         44 401320568346
## 1423       6      92                          Jump Shot         44 401320568347
## 1424       3     155                  Defensive Rebound         44 401320568348
## 1425       3     146           Running Pullup Jump Shot         46 401320568349
## 1426       3      45                      Personal Foul         46 401320568350
## 1427       6     136          Turnaround Bank Jump Shot         46 401320568352
## 1428       3     128          Driving Finger Roll Layup         46 401320568353
## 1429       6     155                  Defensive Rebound         46 401320568354
## 1430       6      90  Out of Bounds - Bad Pass Turnover         46 401320568355
## 1431       3     131                   Pullup Jump Shot         48 401320568356
## 1432       6      92                          Jump Shot         48 401320568357
## 1433       3     155                  Defensive Rebound         48 401320568358
## 1434       3     109                 Running Layup Shot         50 401320568359
## 1435       6      44                      Shooting Foul         50 401320568360
## 1436       3      97                Free Throw - 1 of 1         51 401320568362
## 1437       6     110                 Driving Layup Shot         51 401320568363
## 1438       6     156                  Offensive Rebound         51 401320568364
## 1439       6     125                 Layup Shot Putback         51 401320568365
## 1440       3      63                 Lost Ball Turnover         51 401320568366
## 1441       3      44                      Shooting Foul         51 401320568368
## 1442       6      98                Free Throw - 1 of 2         51 401320568370
## 1443       6     156                  Offensive Rebound         51 401320568371
## 1444       3     584                       Substitution         51 401320568372
## 1445       3     584                       Substitution         51 401320568373
## 1446       6      99                Free Throw - 2 of 2         51 401320568376
## 1447       3      92                          Jump Shot         53 401320568377
## 1448       6      92                          Jump Shot         53 401320568378
## 1449       3      92                          Jump Shot         56 401320568380
## 1450       6      63                 Lost Ball Turnover         56 401320568381
## 1451       3     109                 Running Layup Shot         58 401320568383
## 1452       6      16                       Full Timeout         58 401320568385
## 1453       6     584                       Substitution         58 401320568386
## 1454       6     584                       Substitution         58 401320568387
## 1455       6     131                   Pullup Jump Shot         58 401320568390
## 1456       3     155                  Defensive Rebound         58 401320568391
## 1457       3      42                     Offensive Foul         58 401320568392
## 1458       3      84            Offensive Foul Turnover         58 401320568394
## 1459       3     584                       Substitution         58 401320568395
## 1460       6      87 Out of Bounds - Lost Ball Turnover         58 401320568397
## 1461       6      44                      Shooting Foul         58 401320568398
## 1462       3      98                Free Throw - 1 of 2         59 401320568400
## 1463       6     584                       Substitution         59 401320568401
## 1464       3      99                Free Throw - 2 of 2         60 401320568403
## 1465       6      62                 Bad Pass\nTurnover         60 401320568404
## 1466       3     109                 Running Layup Shot         62 401320568406
## 1467       6     131                   Pullup Jump Shot         62 401320568408
## 1468       3     155                  Defensive Rebound         62 401320568409
## 1469       3      42                     Offensive Foul         62 401320568410
## 1470       3      84            Offensive Foul Turnover         62 401320568412
## 1471       6      92                          Jump Shot         62 401320568413
## 1472       3     155                  Defensive Rebound         62 401320568414
## 1473       3      92                          Jump Shot         62 401320568415
## 1474       3     156                  Offensive Rebound         62 401320568416
## 1475       6      44                      Shooting Foul         62 401320568417
## 1476       3      98                Free Throw - 1 of 2         62 401320568419
## 1477       3     156                  Offensive Rebound         62 401320568420
## 1478       3     584                       Substitution         62 401320568421
## 1479       3      99                Free Throw - 2 of 2         63 401320568423
## 1480       6      92                          Jump Shot         63 401320568424
## 1481       3      62                 Bad Pass\nTurnover         63 401320568426
## 1482       6     110                 Driving Layup Shot         63 401320568429
## 1483       3      16                       Full Timeout         63 401320568431
## 1484       6     584                       Substitution         63 401320568432
## 1485       6     584                       Substitution         63 401320568433
## 1486       3      92                          Jump Shot         63 401320568436
## 1487       3     156                  Offensive Rebound         63 401320568437
## 1488       3      92                          Jump Shot         66 401320568438
## 1489       6      92                          Jump Shot         66 401320568440
## 1490       3      92                          Jump Shot         66 401320568442
## 1491       3     156                  Offensive Rebound         66 401320568443
## 1492       3      24                   Offensive Charge         66 401320568444
## 1493       3      84            Offensive Foul Turnover         66 401320568446
## 1494       6      92                          Jump Shot         66 401320568447
## 1495       3      92                          Jump Shot         66 401320568449
## 1496       6     155                  Defensive Rebound         66 401320568451
## 1497       6      62                 Bad Pass\nTurnover         66 401320568452
## 1498       3     110                 Driving Layup Shot         66 401320568454
## 1499       3     156                  Offensive Rebound         66 401320568455
## 1500       3     125                 Layup Shot Putback         68 401320568456
## 1501       6      93                          Hook Shot         68 401320568457
## 1502       3     155                  Defensive Rebound         68 401320568458
## 1503       6      44                      Shooting Foul         68 401320568459
## 1504       3      98                Free Throw - 1 of 2         69 401320568461
## 1505       6     584                       Substitution         69 401320568462
## 1506       3      99                Free Throw - 2 of 2         70 401320568464
## 1507       6      92                          Jump Shot         70 401320568465
## 1508       3     155                  Defensive Rebound         70 401320568466
## 1509    <NA>     412                         End Period         70 401320568467
## 1510       3     584                       Substitution         70 401320568468
## 1511       3     584                       Substitution         70 401320568469
## 1512       3     584                       Substitution         70 401320568470
## 1513       6     137     Turnaround Fade Away Jump Shot         70 401320568475
## 1514       3      92                          Jump Shot         70 401320568476
## 1515       6     155                  Defensive Rebound         70 401320568477
## 1516       6      43                    Loose Ball Foul         70 401320568480
## 1517       6      62                 Bad Pass\nTurnover         70 401320568484
## 1518       3      92                          Jump Shot         70 401320568483
## 1519       3     156                  Offensive Rebound         70 401320568485
## 1520       3      92                          Jump Shot         70 401320568486
## 1521       6     155                  Defensive Rebound         70 401320568487
## 1522       6     141                 Cutting Layup Shot         70 401320568488
## 1523       3     110                 Driving Layup Shot         70 401320568490
## 1524       6     155                  Defensive Rebound         70 401320568491
## 1525       6      92                          Jump Shot         70 401320568492
## 1526       3     155                  Defensive Rebound         70 401320568493
## 1527       3      92                          Jump Shot         73 401320568494
## 1528       6     110                 Driving Layup Shot         73 401320568496
## 1529       3     155                  Defensive Rebound         73 401320568497
## 1530       3     110                 Driving Layup Shot         75 401320568498
## 1531       6      44                      Shooting Foul         75 401320568499
## 1532       6     584                       Substitution         75 401320568501
## 1533       6     584                       Substitution         75 401320568502
## 1534       3     584                       Substitution         75 401320568503
## 1535       3      97                Free Throw - 1 of 1         75 401320568507
## 1536       3     156                  Offensive Rebound         75 401320568508
## 1537       3     131                   Pullup Jump Shot         77 401320568509
## 1538       6      92                          Jump Shot         77 401320568510
## 1539       3     155                  Defensive Rebound         77 401320568511
## 1540       6      12                        Kicked Ball         77 401320568512
## 1541       6      45                      Personal Foul         77 401320568513
## 1542       6      35                     Technical Foul         77 401320568515
## 1543       3     103             Free Throw - Technical         77 401320568516
## 1544       3     156                  Offensive Rebound         77 401320568517
## 1545       6     584                       Substitution         77 401320568518
## 1546       3     141                 Cutting Layup Shot         79 401320568520
## 1547       6      92                          Jump Shot         79 401320568522
## 1548       6     156                  Offensive Rebound         79 401320568523
## 1549       6      95                         Layup Shot         79 401320568524
## 1550       3     155                  Defensive Rebound         79 401320568526
## 1551       3     110                 Driving Layup Shot         79 401320568527
## 1552       6     584                       Substitution         79 401320568528
## 1553       6     615                           Jumpball         79 401320568530
## 1554       6     155                  Defensive Rebound         79 401320568533
## 1555       6      95                         Layup Shot         79 401320568534
## 1556       3     155                  Defensive Rebound         79 401320568535
## 1557       3     141                 Cutting Layup Shot         81 401320568536
## 1558       6      92                          Jump Shot         81 401320568538
## 1559       3     155                  Defensive Rebound         81 401320568539
## 1560       3     110                 Driving Layup Shot         81 401320568540
## 1561       6     155                  Defensive Rebound         81 401320568541
## 1562       6      92                          Jump Shot         81 401320568542
## 1563       3     155                  Defensive Rebound         81 401320568543
## 1564       3      92                          Jump Shot         81 401320568544
## 1565       6     155                  Defensive Rebound         81 401320568545
## 1566    <NA>      19                   Official Timeout         81 401320568546
## 1567       6     584                       Substitution         81 401320568547
## 1568       6     584                       Substitution         81 401320568548
## 1569       3     584                       Substitution         81 401320568549
## 1570       3     615                           Jumpball         81 401320568553
## 1571       6      63                 Lost Ball Turnover         81 401320568556
## 1572       3      95                         Layup Shot         83 401320568558
## 1573       6      95                         Layup Shot         83 401320568559
## 1574       3     155                  Defensive Rebound         83 401320568560
## 1575       3      92                          Jump Shot         83 401320568561
## 1576       6     155                  Defensive Rebound         83 401320568562
## 1577       6      92                          Jump Shot         83 401320568563
## 1578       6      44                      Shooting Foul         83 401320568565
## 1579       3      98                Free Throw - 1 of 2         84 401320568567
## 1580       6     584                       Substitution         84 401320568568
## 1581       3      99                Free Throw - 2 of 2         85 401320568570
## 1582       3      44                      Shooting Foul         85 401320568571
## 1583       3      16                       Full Timeout         85 401320568573
## 1584       3     584                       Substitution         85 401320568574
## 1585       6      98                Free Throw - 1 of 2         85 401320568576
## 1586       6     156                  Offensive Rebound         85 401320568577
## 1587       6      99                Free Throw - 2 of 2         85 401320568578
## 1588       3     110                 Driving Layup Shot         85 401320568579
## 1589       3     156                  Offensive Rebound         85 401320568580
## 1590       3      92                          Jump Shot         85 401320568582
## 1591       3     156                  Offensive Rebound         85 401320568583
## 1592       3      70                Shot Clock Turnover         85 401320568584
## 1593       3     584                       Substitution         85 401320568586
## 1594       6      92                          Jump Shot         85 401320568588
## 1595       3     155                  Defensive Rebound         85 401320568589
## 1596       3     131                   Pullup Jump Shot         87 401320568590
## 1597       6      92                          Jump Shot         87 401320568591
## 1598       6     156                  Offensive Rebound         87 401320568592
## 1599       6     112                 Reverse Layup Shot         87 401320568593
## 1600       3      17                      Short Timeout         87 401320568594
## 1601       6     584                       Substitution         87 401320568595
## 1602       6     584                       Substitution         87 401320568596
## 1603       3     584                       Substitution         87 401320568597
## 1604       3      92                          Jump Shot         87 401320568601
## 1605       6     155                  Defensive Rebound         87 401320568602
## 1606       6      92                          Jump Shot         87 401320568603
## 1607       3     155                  Defensive Rebound         87 401320568604
## 1608       3     132                Step Back Jump Shot         90 401320568605
## 1609       6      92                          Jump Shot         90 401320568606
## 1610       3     155                  Defensive Rebound         90 401320568607
## 1611       3     109                 Running Layup Shot         92 401320568608
## 1612       6      16                       Full Timeout         92 401320568610
## 1613       3     584                       Substitution         92 401320568611
## 1614       6     131                   Pullup Jump Shot         92 401320568613
## 1615       6     156                  Offensive Rebound         92 401320568614
## 1616       6     130                 Floating Jump Shot         92 401320568616
## 1617       3      95                         Layup Shot         92 401320568617
## 1618       6     155                  Defensive Rebound         92 401320568619
## 1619       6     146           Running Pullup Jump Shot         92 401320568620
## 1620       3     155                  Defensive Rebound         92 401320568621
## 1621       3      92                          Jump Shot         94 401320568622
## 1622       6      92                          Jump Shot         94 401320568624
## 1623       6     156                  Offensive Rebound         94 401320568625
## 1624    <NA>     412                         End Period         94 401320568626
## 1625    <NA>     402                           End Game         94 401320568627
## 1626      19     615                           Jumpball          0   4013205694
## 1627      19      62                 Bad Pass\nTurnover          0   4013205697
## 1628      16      92                          Jump Shot          0   4013205699
## 1629      19      95                         Layup Shot          0  40132056911
## 1630      16     155                  Defensive Rebound          0  40132056913
## 1631      16      92                          Jump Shot          0  40132056915
## 1632      19     155                  Defensive Rebound          0  40132056916
## 1633      19     141                 Cutting Layup Shot          2  40132056917
## 1634      16      92                          Jump Shot          2  40132056919
## 1635      19      92                          Jump Shot          5  40132056921
## 1636      16      78                   Palming Turnover          5  40132056924
## 1637      19      95                         Layup Shot          7  40132056925
## 1638      16      24                   Offensive Charge          7  40132056926
## 1639      16      84            Offensive Foul Turnover          7  40132056928
## 1640      19      92                          Jump Shot         10  40132056929
## 1641      16      62                 Bad Pass\nTurnover         10  40132056932
## 1642      19      95                         Layup Shot         12  40132056934
## 1643      19      45                      Personal Foul         12  40132056936
## 1644      16     137     Turnaround Fade Away Jump Shot         12  40132056938
## 1645      19     155                  Defensive Rebound         12  40132056939
## 1646      19      92                          Jump Shot         12  40132056940
## 1647      16     155                  Defensive Rebound         12  40132056941
## 1648      16      92                          Jump Shot         12  40132056942
## 1649      19     155                  Defensive Rebound         12  40132056943
## 1650      19     131                   Pullup Jump Shot         12  40132056944
## 1651      16     155                  Defensive Rebound         12  40132056945
## 1652      16      92                          Jump Shot         12  40132056946
## 1653      19      62                 Bad Pass\nTurnover         12  40132056948
## 1654      16     128          Driving Finger Roll Layup         12  40132056950
## 1655      19      62                 Bad Pass\nTurnover         12  40132056951
## 1656      16      92                          Jump Shot         12  40132056953
## 1657      19     155                  Defensive Rebound         12  40132056954
## 1658      19     141                 Cutting Layup Shot         14  40132056955
## 1659      16      92                          Jump Shot         14  40132056957
## 1660      19     155                  Defensive Rebound         14  40132056958
## 1661      19      62                 Bad Pass\nTurnover         14  40132056959
## 1662      19      45                      Personal Foul         14  40132056961
## 1663    <NA>      19                   Official Timeout         14  40132056963
## 1664      16     584                       Substitution         14  40132056964
## 1665      16     584                       Substitution         14  40132056965
## 1666      16     584                       Substitution         14  40132056966
## 1667      19     584                       Substitution         14  40132056967
## 1668      19     584                       Substitution         14  40132056968
## 1669      16     120               Turnaround Hook Shot         14  40132056974
## 1670      19      92                          Jump Shot         14  40132056975
## 1671      16     155                  Defensive Rebound         14  40132056976
## 1672      16     131                   Pullup Jump Shot         14  40132056977
## 1673      19     155                  Defensive Rebound         14  40132056978
## 1674      19     132                Step Back Jump Shot         14  40132056979
## 1675      16     155                  Defensive Rebound         14  40132056980
## 1676      16      92                          Jump Shot         14  40132056981
## 1677      19     155                  Defensive Rebound         14  40132056982
## 1678      19      62                 Bad Pass\nTurnover         14  40132056983
## 1679      16      95                         Layup Shot         14  40132056985
## 1680      19      64                          Traveling         14  40132056986
## 1681      19     584                       Substitution         14  40132056987
## 1682      19     584                       Substitution         14  40132056988
## 1683      19     584                       Substitution         14  40132056989
## 1684      16     137     Turnaround Fade Away Jump Shot         14  40132056993
## 1685      19      92                          Jump Shot         17  40132056995
## 1686      16      92                          Jump Shot         17  40132056997
## 1687      19      92                          Jump Shot         20  40132056999
## 1688      16      92                          Jump Shot         20 401320569101
## 1689      16     156                  Offensive Rebound         20 401320569102
## 1690      19      43                    Loose Ball Foul         20 401320569103
## 1691      16     584                       Substitution         20 401320569105
## 1692      16     584                       Substitution         20 401320569106
## 1693      16      68                  5-Second Turnover         20 401320569109
## 1694      19     130                 Floating Jump Shot         20 401320569111
## 1695      16     155                  Defensive Rebound         20 401320569112
## 1696      16     110                 Driving Layup Shot         20 401320569114
## 1697      19     155                  Defensive Rebound         20 401320569115
## 1698      19     142     Cutting Finger Roll Layup Shot         22 401320569116
## 1699      16      92                          Jump Shot         22 401320569118
## 1700      19     155                  Defensive Rebound         22 401320569119
## 1701      19     144         Driving Floating Jump Shot         22 401320569120
## 1702      16     155                  Defensive Rebound         22 401320569121
## 1703    <NA>     412                         End Period         22 401320569122
## 1704      16     584                       Substitution         22 401320569123
## 1705      16     584                       Substitution         22 401320569124
## 1706      19      45                      Personal Foul         22 401320569128
## 1707      16      92                          Jump Shot         22 401320569130
## 1708      16     156                  Offensive Rebound         22 401320569131
## 1709      19      44                      Shooting Foul         22 401320569132
## 1710      16      98                Free Throw - 1 of 2         22 401320569134
## 1711      16      99                Free Throw - 2 of 2         22 401320569135
## 1712      19     131                   Pullup Jump Shot         22 401320569136
## 1713      19     156                  Offensive Rebound         22 401320569137
## 1714      19     141                 Cutting Layup Shot         24 401320569138
## 1715      16     134             Driving Jump Shot Bank         24 401320569140
## 1716      19     155                  Defensive Rebound         24 401320569141
## 1717      19     141                 Cutting Layup Shot         26 401320569142
## 1718      19      45                      Personal Foul         26 401320569144
## 1719      16     584                       Substitution         26 401320569146
## 1720      19     584                       Substitution         26 401320569147
## 1721      19      44                      Shooting Foul         26 401320569150
## 1722      16      98                Free Throw - 1 of 2         26 401320569152
## 1723      16     156                  Offensive Rebound         26 401320569153
## 1724      16      99                Free Throw - 2 of 2         26 401320569154
## 1725      16      45                      Personal Foul         26 401320569155
## 1726      19     584                       Substitution         26 401320569157
## 1727      19      92                          Jump Shot         29 401320569159
## 1728      16      92                          Jump Shot         29 401320569161
## 1729      19     155                  Defensive Rebound         29 401320569162
## 1730      19     130                 Floating Jump Shot         29 401320569163
## 1731      16     155                  Defensive Rebound         29 401320569164
## 1732      16     120               Turnaround Hook Shot         29 401320569165
## 1733      16     156                  Offensive Rebound         29 401320569166
## 1734      16      95                         Layup Shot         29 401320569167
## 1735      19     155                  Defensive Rebound         29 401320569168
## 1736      19     124                  Finger Roll Layup         29 401320569169
## 1737      16     155                  Defensive Rebound         29 401320569170
## 1738      16     119                  Driving Hook Shot         29 401320569171
## 1739      16     156                  Offensive Rebound         29 401320569172
## 1740      16     125                 Layup Shot Putback         29 401320569173
## 1741      19      44                      Shooting Foul         29 401320569174
## 1742      19     584                       Substitution         29 401320569176
## 1743      19     584                       Substitution         29 401320569177
## 1744      16      97                Free Throw - 1 of 1         29 401320569180
## 1745      16      44                      Shooting Foul         29 401320569181
## 1746      19      98                Free Throw - 1 of 2         30 401320569183
## 1747      19      99                Free Throw - 2 of 2         31 401320569184
## 1748      16      90  Out of Bounds - Bad Pass Turnover         31 401320569185
## 1749      16      44                      Shooting Foul         31 401320569187
## 1750      19      98                Free Throw - 1 of 2         32 401320569189
## 1751      16     584                       Substitution         32 401320569190
## 1752      19      99                Free Throw - 2 of 2         33 401320569192
## 1753      16     144         Driving Floating Jump Shot         33 401320569193
## 1754      19     155                  Defensive Rebound         33 401320569194
## 1755      16      45                      Personal Foul         33 401320569195
## 1756      16      16                       Full Timeout         33 401320569197
## 1757      19      92                          Jump Shot         33 401320569199
## 1758      16     155                  Defensive Rebound         33 401320569200
## 1759      16      92                          Jump Shot         33 401320569201
## 1760      19     155                  Defensive Rebound         33 401320569202
## 1761      19     110                 Driving Layup Shot         33 401320569203
## 1762      19     156                  Offensive Rebound         33 401320569204
## 1763      16      45                      Personal Foul         33 401320569205
## 1764      19      98                Free Throw - 1 of 2         34 401320569207
## 1765      19      99                Free Throw - 2 of 2         35 401320569208
## 1766      16     110                 Driving Layup Shot         35 401320569209
## 1767      19     155                  Defensive Rebound         35 401320569211
## 1768      19     109                 Running Layup Shot         37 401320569212
## 1769      16     131                   Pullup Jump Shot         37 401320569214
## 1770      16     156                  Offensive Rebound         37 401320569215
## 1771      16      92                          Jump Shot         37 401320569216
## 1772      19     155                  Defensive Rebound         37 401320569218
## 1773      19      95                         Layup Shot         37 401320569219
## 1774      16     155                  Defensive Rebound         37 401320569220
## 1775      16      90  Out of Bounds - Bad Pass Turnover         37 401320569221
## 1776      19      16                       Full Timeout         37 401320569223
## 1777      16     584                       Substitution         37 401320569224
## 1778      19      92                          Jump Shot         40 401320569226
## 1779      19      45                      Personal Foul         40 401320569228
## 1780      16      98                Free Throw - 1 of 2         40 401320569230
## 1781      19     584                       Substitution         40 401320569231
## 1782      16      99                Free Throw - 2 of 2         40 401320569233
## 1783      19      63                 Lost Ball Turnover         40 401320569234
## 1784      16      62                 Bad Pass\nTurnover         40 401320569236
## 1785      16      44                      Shooting Foul         40 401320569238
## 1786      19      98                Free Throw - 1 of 2         41 401320569240
## 1787      19      99                Free Throw - 2 of 2         41 401320569241
## 1788      16     155                  Defensive Rebound         41 401320569242
## 1789      16     121                Fade Away Jump Shot         41 401320569244
## 1790      16     156                  Offensive Rebound         41 401320569245
## 1791      16      70                Shot Clock Turnover         41 401320569246
## 1792      16      45                      Personal Foul         41 401320569248
## 1793      19      98                Free Throw - 1 of 2         42 401320569250
## 1794      16     584                       Substitution         42 401320569251
## 1795      19      99                Free Throw - 2 of 2         43 401320569253
## 1796      16      95                         Layup Shot         43 401320569254
## 1797      19     155                  Defensive Rebound         43 401320569255
## 1798      19     130                 Floating Jump Shot         43 401320569256
## 1799      16     155                  Defensive Rebound         43 401320569257
## 1800      16      92                          Jump Shot         43 401320569258
## 1801      19     155                  Defensive Rebound         43 401320569259
## 1802      19     584                       Substitution         43 401320569261
## 1803      19     131                   Pullup Jump Shot         43 401320569263
## 1804      16     155                  Defensive Rebound         43 401320569264
## 1805      16     120               Turnaround Hook Shot         43 401320569265
## 1806      19     155                  Defensive Rebound         43 401320569266
## 1807      19     120               Turnaround Hook Shot         43 401320569267
## 1808      16     155                  Defensive Rebound         43 401320569268
## 1809      16     130                 Floating Jump Shot         43 401320569269
## 1810      16     156                  Offensive Rebound         43 401320569270
## 1811      19      45                      Personal Foul         43 401320569271
## 1812      16      98                Free Throw - 1 of 2         43 401320569273
## 1813      16     156                  Offensive Rebound         43 401320569274
## 1814      19     584                       Substitution         43 401320569275
## 1815      16      99                Free Throw - 2 of 2         43 401320569277
## 1816      19      92                          Jump Shot         43 401320569278
## 1817      16     155                  Defensive Rebound         43 401320569279
## 1818      16      86      Out of Bounds - Step Turnover         43 401320569280
## 1819      19     112                 Reverse Layup Shot         43 401320569282
## 1820      16     155                  Defensive Rebound         43 401320569283
## 1821      16     110                 Driving Layup Shot         43 401320569284
## 1822      19     155                  Defensive Rebound         43 401320569285
## 1823      19     109                 Running Layup Shot         45 401320569286
## 1824      16      44                      Shooting Foul         45 401320569288
## 1825      19     584                       Substitution         45 401320569290
## 1826      19     584                       Substitution         45 401320569292
## 1827      19      97                Free Throw - 1 of 1         46 401320569294
## 1828      16      16                       Full Timeout         46 401320569295
## 1829      16     584                       Substitution         46 401320569296
## 1830      16     584                       Substitution         46 401320569297
## 1831      19      44                      Shooting Foul         46 401320569300
## 1832      16      98                Free Throw - 1 of 2         46 401320569302
## 1833      16      99                Free Throw - 2 of 2         46 401320569303
## 1834      19      92                          Jump Shot         46 401320569304
## 1835      19     156                  Offensive Rebound         46 401320569305
## 1836    <NA>     412                         End Period         46 401320569306
## 1837      16     584                       Substitution         46 401320569307
## 1838      19     584                       Substitution         46 401320569308
## 1839      19     584                       Substitution         46 401320569309
## 1840      16     114               Turnaround Jump Shot         46 401320569314
## 1841      16      45                      Personal Foul         46 401320569316
## 1842      19      92                          Jump Shot         46 401320569318
## 1843      19     156                  Offensive Rebound         46 401320569319
## 1844      19      92                          Jump Shot         46 401320569320
## 1845      16     155                  Defensive Rebound         46 401320569321
## 1846      16      92                          Jump Shot         46 401320569322
## 1847      16     156                  Offensive Rebound         46 401320569323
## 1848      16     125                 Layup Shot Putback         46 401320569324
## 1849      19      92                          Jump Shot         46 401320569325
## 1850      16     155                  Defensive Rebound         46 401320569326
## 1851      16     131                   Pullup Jump Shot         46 401320569328
## 1852      19     155                  Defensive Rebound         46 401320569329
## 1853      16      45                      Personal Foul         46 401320569330
## 1854      19      62                 Bad Pass\nTurnover         46 401320569332
## 1855      16     109                 Running Layup Shot         46 401320569334
## 1856      19      16                       Full Timeout         46 401320569335
## 1857      16      44                      Shooting Foul         46 401320569336
## 1858      19      98                Free Throw - 1 of 2         46 401320569338
## 1859      19     156                  Offensive Rebound         46 401320569339
## 1860      19      99                Free Throw - 2 of 2         47 401320569340
## 1861      16      92                          Jump Shot         47 401320569341
## 1862      19     155                  Defensive Rebound         47 401320569342
## 1863      16      45                      Personal Foul         47 401320569343
## 1864      19     584                       Substitution         47 401320569345
## 1865      19     584                       Substitution         47 401320569346
## 1866      19     141                 Cutting Layup Shot         47 401320569349
## 1867      19     156                  Offensive Rebound         47 401320569351
## 1868      19      92                          Jump Shot         47 401320569352
## 1869      16     155                  Defensive Rebound         47 401320569353
## 1870      16      63                 Lost Ball Turnover         47 401320569355
## 1871      19      95                         Layup Shot         47 401320569357
## 1872      16     155                  Defensive Rebound         47 401320569359
## 1873      16      92                          Jump Shot         47 401320569360
## 1874      19     155                  Defensive Rebound         47 401320569361
## 1875      19      42                     Offensive Foul         47 401320569362
## 1876      19      84            Offensive Foul Turnover         47 401320569364
## 1877      16     584                       Substitution         47 401320569365
## 1878      16     584                       Substitution         47 401320569367
## 1879      16      92                          Jump Shot         47 401320569369
## 1880      16     156                  Offensive Rebound         47 401320569370
## 1881      19      43                    Loose Ball Foul         47 401320569371
## 1882      19     584                       Substitution         47 401320569373
## 1883      16      92                          Jump Shot         47 401320569375
## 1884      16     156                  Offensive Rebound         47 401320569376
## 1885      16      95                         Layup Shot         47 401320569377
## 1886      19     155                  Defensive Rebound         47 401320569378
## 1887      16      44                      Shooting Foul         47 401320569379
## 1888      19      98                Free Throw - 1 of 2         48 401320569381
## 1889      19     584                       Substitution         48 401320569382
## 1890      19      99                Free Throw - 2 of 2         49 401320569384
## 1891      16      92                          Jump Shot         49 401320569385
## 1892      19     155                  Defensive Rebound         49 401320569386
## 1893      19     144         Driving Floating Jump Shot         49 401320569387
## 1894      19     156                  Offensive Rebound         49 401320569389
## 1895      16      44                      Shooting Foul         49 401320569390
## 1896      19      98                Free Throw - 1 of 2         50 401320569392
## 1897      19      99                Free Throw - 2 of 2         51 401320569393
## 1898      16     119                  Driving Hook Shot         51 401320569394
## 1899      19     155                  Defensive Rebound         51 401320569395
## 1900      19      63                 Lost Ball Turnover         51 401320569396
## 1901      19      45                      Personal Foul         51 401320569398
## 1902      16      62                 Bad Pass\nTurnover         51 401320569551
## 1903      19      90  Out of Bounds - Bad Pass Turnover         51 401320569404
## 1904      16      95                         Layup Shot         51 401320569406
## 1905      19      92                          Jump Shot         51 401320569408
## 1906      16     155                  Defensive Rebound         51 401320569409
## 1907      16      24                   Offensive Charge         51 401320569410
## 1908      16      84            Offensive Foul Turnover         51 401320569412
## 1909      19      64                          Traveling         51 401320569413
## 1910      16     131                   Pullup Jump Shot         51 401320569414
## 1911      19     155                  Defensive Rebound         51 401320569415
## 1912      19      63                 Lost Ball Turnover         51 401320569416
## 1913      16      17                      Short Timeout         51 401320569418
## 1914      16      92                          Jump Shot         51 401320569419
## 1915      19     155                  Defensive Rebound         51 401320569420
## 1916      19     131                   Pullup Jump Shot         51 401320569421
## 1917      16     155                  Defensive Rebound         51 401320569422
## 1918      16     112                 Reverse Layup Shot         51 401320569423
## 1919      19      92                          Jump Shot         54 401320569425
## 1920      16     137     Turnaround Fade Away Jump Shot         54 401320569427
## 1921      19     155                  Defensive Rebound         54 401320569428
## 1922      19      92                          Jump Shot         57 401320569429
## 1923      16     131                   Pullup Jump Shot         57 401320569431
## 1924      19     155                  Defensive Rebound         57 401320569432
## 1925      19     131                   Pullup Jump Shot         57 401320569433
## 1926      16     155                  Defensive Rebound         57 401320569434
## 1927      16     144         Driving Floating Jump Shot         57 401320569435
## 1928      16     156                  Offensive Rebound         57 401320569436
## 1929      16      92                          Jump Shot         57 401320569437
## 1930      16     156                  Offensive Rebound         57 401320569438
## 1931    <NA>     412                         End Period         57 401320569439
## 1932      16     584                       Substitution         57 401320569440
## 1933      16     584                       Substitution         57 401320569441
## 1934      16     584                       Substitution         57 401320569442
## 1935      19     584                       Substitution         57 401320569443
## 1936      19     584                       Substitution         57 401320569444
## 1937      19     584                       Substitution         57 401320569445
## 1938      19     584                       Substitution         57 401320569446
## 1939      19     114               Turnaround Jump Shot         59 401320569455
## 1940      19      45                      Personal Foul         59 401320569457
## 1941      16      92                          Jump Shot         59 401320569459
## 1942      19     155                  Defensive Rebound         59 401320569460
## 1943      16      45                      Personal Foul         59 401320569461
## 1944      19      95                         Layup Shot         61 401320569463
## 1945      19      45                      Personal Foul         61 401320569465
## 1946      16     131                   Pullup Jump Shot         61 401320569467
## 1947      19     131                   Pullup Jump Shot         61 401320569469
## 1948      16     155                  Defensive Rebound         61 401320569470
## 1949      16     131                   Pullup Jump Shot         61 401320569471
## 1950      19     155                  Defensive Rebound         61 401320569472
## 1951      19      62                 Bad Pass\nTurnover         61 401320569473
## 1952      16      95                         Layup Shot         61 401320569475
## 1953      16     156                  Offensive Rebound         61 401320569476
## 1954      16      95                         Layup Shot         61 401320569477
## 1955      19      92                          Jump Shot         61 401320569478
## 1956      16     155                  Defensive Rebound         61 401320569479
## 1957      16      62                 Bad Pass\nTurnover         61 401320569480
## 1958      19     109                 Running Layup Shot         63 401320569482
## 1959      16      95                         Layup Shot         63 401320569484
## 1960      19     114               Turnaround Jump Shot         63 401320569486
## 1961      16     155                  Defensive Rebound         63 401320569487
## 1962      16     584                       Substitution         63 401320569489
## 1963      16     584                       Substitution         63 401320569490
## 1964      19     584                       Substitution         63 401320569491
## 1965      16      92                          Jump Shot         63 401320569495
## 1966      19     155                  Defensive Rebound         63 401320569496
## 1967      19     131                   Pullup Jump Shot         63 401320569498
## 1968      16     155                  Defensive Rebound         63 401320569499
## 1969      16      92                          Jump Shot         63 401320569500
## 1970      19     155                  Defensive Rebound         63 401320569501
## 1971      16      44                      Shooting Foul         63 401320569502
## 1972    <NA>      19                   Official Timeout         63 401320569504
## 1973      16     584                       Substitution         63 401320569509
## 1974      16     584                       Substitution         63 401320569510
## 1975      19     584                       Substitution         63 401320569511
## 1976      19      98                Free Throw - 1 of 2         64 401320569515
## 1977      19      99                Free Throw - 2 of 2         65 401320569516
## 1978      16      92                          Jump Shot         65 401320569517
## 1979      16     156                  Offensive Rebound         65 401320569518
## 1980      16      62                 Bad Pass\nTurnover         65 401320569519
## 1981      19      92                          Jump Shot         65 401320569521
## 1982      16     155                  Defensive Rebound         65 401320569522
## 1983      19      44                      Shooting Foul         65 401320569523
## 1984      16      98                Free Throw - 1 of 2         65 401320569525
## 1985      19     584                       Substitution         65 401320569526
## 1986      19     584                       Substitution         65 401320569527
## 1987      16      99                Free Throw - 2 of 2         65 401320569530
## 1988      19     141                 Cutting Layup Shot         67 401320569531
## 1989      19      44                      Shooting Foul         67 401320569533
## 1990      16      98                Free Throw - 1 of 2         67 401320569535
## 1991      16      99                Free Throw - 2 of 2         67 401320569536
## 1992      19      70                Shot Clock Turnover         67 401320569537
## 1993      16     584                       Substitution         67 401320569538
## 1994      16      42                     Offensive Foul         67 401320569540
## 1995      16      84            Offensive Foul Turnover         67 401320569542
## 1996      16     584                       Substitution         67 401320569543
## 1997      19      95                         Layup Shot         69 401320569545
## 1998      16      92                          Jump Shot         69 401320569547
## 1999      19     155                  Defensive Rebound         69 401320569548
## 2000      16      16                       Full Timeout         69 401320569550
## 2001      16     584                       Substitution         69 401320569553
## 2002      19     137     Turnaround Fade Away Jump Shot         69 401320569555
## 2003      16     155                  Defensive Rebound         69 401320569556
## 2004      16     131                   Pullup Jump Shot         69 401320569557
## 2005      19     155                  Defensive Rebound         69 401320569558
## 2006      16      44                      Shooting Foul         69 401320569559
## 2007      19      98                Free Throw - 1 of 2         69 401320569561
## 2008      19     156                  Offensive Rebound         69 401320569562
## 2009      19     584                       Substitution         69 401320569563
## 2010      19     584                       Substitution         69 401320569564
## 2011      19     584                       Substitution         69 401320569565
## 2012      19      99                Free Throw - 2 of 2         70 401320569569
## 2013      16      92                          Jump Shot         70 401320569570
## 2014      19      92                          Jump Shot         70 401320569571
## 2015      16     155                  Defensive Rebound         70 401320569572
## 2016      19      45                      Personal Foul         70 401320569573
## 2017      16      98                Free Throw - 1 of 2         70 401320569575
## 2018      16      99                Free Throw - 2 of 2         70 401320569576
## 2019      19      95                         Layup Shot         70 401320569577
## 2020      16     155                  Defensive Rebound         70 401320569578
## 2021      16     114               Turnaround Jump Shot         70 401320569579
## 2022      16     156                  Offensive Rebound         70 401320569580
## 2023      16     615                           Jumpball         70 401320569582
## 2024      16      63                 Lost Ball Turnover         70 401320569585
## 2025      19      92                          Jump Shot         70 401320569587
## 2026      16     155                  Defensive Rebound         70 401320569588
## 2027      16      92                          Jump Shot         70 401320569589
## 2028      16     156                  Offensive Rebound         70 401320569590
## 2029      16     119                  Driving Hook Shot         70 401320569591
## 2030      16     156                  Offensive Rebound         70 401320569592
## 2031      16     131                   Pullup Jump Shot         70 401320569593
## 2032      16     156                  Offensive Rebound         70 401320569594
## 2033      19      44                      Shooting Foul         70 401320569595
## 2034      16      98                Free Throw - 1 of 2         70 401320569597
## 2035      16     156                  Offensive Rebound         70 401320569598
## 2036      16      99                Free Throw - 2 of 2         70 401320569599
## 2037    <NA>     412                         End Period         70 401320569600
## 2038    <NA>     402                           End Game         70 401320569601
## 2039      17     615                           Jumpball          0   4013205704
## 2040      17      92                          Jump Shot          0   4013205707
## 2041      17     156                  Offensive Rebound          0   4013205708
## 2042      14      44                      Shooting Foul          0   4013205709
## 2043      17      98                Free Throw - 1 of 2          1  40132057011
## 2044      17      99                Free Throw - 2 of 2          2  40132057012
## 2045      14      92                          Jump Shot          2  40132057013
## 2046      17     155                  Defensive Rebound          2  40132057014
## 2047      17      92                          Jump Shot          2  40132057015
## 2048      17     156                  Offensive Rebound          2  40132057016
## 2049      14      43                    Loose Ball Foul          2  40132057017
## 2050      17      92                          Jump Shot          5  40132057020
## 2051      14      95                         Layup Shot          5  40132057022
## 2052      17     155                  Defensive Rebound          5  40132057023
## 2053      17      95                         Layup Shot          7  40132057024
## 2054      14      92                          Jump Shot          7  40132057026
## 2055      17      92                          Jump Shot          7  40132057028
## 2056      14     155                  Defensive Rebound          7  40132057029
## 2057      14      92                          Jump Shot          7  40132057030
## 2058      14     156                  Offensive Rebound          7  40132057031
## 2059      14      95                         Layup Shot          7  40132057032
## 2060      14     156                  Offensive Rebound          7  40132057034
## 2061      14      95                         Layup Shot          7  40132057035
## 2062      17      92                          Jump Shot          7  40132057036
## 2063      14     155                  Defensive Rebound          7  40132057037
## 2064      14      92                          Jump Shot          7  40132057038
## 2065      17     155                  Defensive Rebound          7  40132057039
## 2066      17      92                          Jump Shot          9  40132057040
## 2067      17      44                      Shooting Foul          9  40132057041
## 2068      14      98                Free Throw - 1 of 2          9  40132057043
## 2069      17     584                       Substitution          9  40132057044
## 2070      14      99                Free Throw - 2 of 2          9  40132057046
## 2071      17      92                          Jump Shot         11  40132057047
## 2072      14      92                          Jump Shot         11  40132057049
## 2073      17     155                  Defensive Rebound         11  40132057050
## 2074      17      92                          Jump Shot         11  40132057051
## 2075      14     155                  Defensive Rebound         11  40132057052
## 2076      14      92                          Jump Shot         11  40132057053
## 2077      17     155                  Defensive Rebound         11  40132057054
## 2078      17     122                     Jump Shot Bank         13  40132057055
## 2079      14      62                 Bad Pass\nTurnover         13  40132057056
## 2080      17      95                         Layup Shot         15  40132057057
## 2081      14      93                          Hook Shot         15  40132057059
## 2082      17     155                  Defensive Rebound         15  40132057060
## 2083      17      63                 Lost Ball Turnover         15  40132057061
## 2084      14      95                         Layup Shot         15  40132057063
## 2085      17      92                          Jump Shot         17  40132057064
## 2086      14     131                   Pullup Jump Shot         17  40132057066
## 2087      17      92                          Jump Shot         17  40132057067
## 2088      14     155                  Defensive Rebound         17  40132057068
## 2089      14      93                          Hook Shot         17  40132057069
## 2090      17     122                     Jump Shot Bank         19  40132057071
## 2091      14     110                 Driving Layup Shot         19  40132057072
## 2092      17      92                          Jump Shot         19  40132057073
## 2093      17     156                  Offensive Rebound         19  40132057074
## 2094      17      95                         Layup Shot         21  40132057075
## 2095      14      44                      Shooting Foul         21  40132057076
## 2096    <NA>      19                   Official Timeout         21  40132057078
## 2097      14     584                       Substitution         21  40132057079
## 2098      14     584                       Substitution         21  40132057080
## 2099      17     584                       Substitution         21  40132057081
## 2100      17     584                       Substitution         21  40132057082
## 2101      17     584                       Substitution         21  40132057083
## 2102      17      97                Free Throw - 1 of 1         22  40132057089
## 2103      14     110                 Driving Layup Shot         22  40132057090
## 2104      17     114               Turnaround Jump Shot         22  40132057091
## 2105      14     155                  Defensive Rebound         22  40132057092
## 2106      14      92                          Jump Shot         22  40132057093
## 2107      14     584                       Substitution         22  40132057096
## 2108      17     132                Step Back Jump Shot         24  40132057098
## 2109      14     136          Turnaround Bank Jump Shot         24 401320570100
## 2110      17      64                          Traveling         24 401320570102
## 2111      17     584                       Substitution         24 401320570103
## 2112      14     132                Step Back Jump Shot         24 401320570105
## 2113      17      92                          Jump Shot         24 401320570106
## 2114      17     156                  Offensive Rebound         24 401320570107
## 2115      17      92                          Jump Shot         24 401320570108
## 2116      14     155                  Defensive Rebound         24 401320570109
## 2117      14     584                       Substitution         24 401320570110
## 2118      14      95                         Layup Shot         24 401320570112
## 2119      17      92                          Jump Shot         26 401320570114
## 2120      14     122                     Jump Shot Bank         26 401320570115
## 2121    <NA>     412                         End Period         26 401320570117
## 2122      14      64                          Traveling         26 401320570119
## 2123      17      92                          Jump Shot         26 401320570120
## 2124      14     155                  Defensive Rebound         26 401320570121
## 2125      14      92                          Jump Shot         26 401320570122
## 2126      17      93                          Hook Shot         26 401320570124
## 2127      14     155                  Defensive Rebound         26 401320570126
## 2128      14      62                 Bad Pass\nTurnover         26 401320570127
## 2129      17      92                          Jump Shot         26 401320570129
## 2130      17     156                  Offensive Rebound         26 401320570130
## 2131      17      95                         Layup Shot         28 401320570131
## 2132      14      92                          Jump Shot         28 401320570132
## 2133      17      44                      Shooting Foul         28 401320570133
## 2134      17     584                       Substitution         28 401320570135
## 2135      14      97                Free Throw - 1 of 1         28 401320570137
## 2136      17      92                          Jump Shot         28 401320570138
## 2137      14     155                  Defensive Rebound         28 401320570139
## 2138      14      92                          Jump Shot         28 401320570140
## 2139      17     155                  Defensive Rebound         28 401320570141
## 2140      17      95                         Layup Shot         28 401320570142
## 2141      17     156                  Offensive Rebound         28 401320570143
## 2142      17      95                         Layup Shot         28 401320570238
## 2143      14     155                  Defensive Rebound         28 401320570239
## 2144      17      44                      Shooting Foul         28 401320570144
## 2145      14      98                Free Throw - 1 of 2         28 401320570146
## 2146      14     156                  Offensive Rebound         28 401320570147
## 2147      14     584                       Substitution         28 401320570148
## 2148      14     584                       Substitution         28 401320570149
## 2149      17     584                       Substitution         28 401320570150
## 2150      14      99                Free Throw - 2 of 2         28 401320570154
## 2151      17      95                         Layup Shot         28 401320570155
## 2152      14     155                  Defensive Rebound         28 401320570156
## 2153      14      92                          Jump Shot         28 401320570157
## 2154      14     156                  Offensive Rebound         28 401320570158
## 2155      14      92                          Jump Shot         28 401320570159
## 2156      17     155                  Defensive Rebound         28 401320570160
## 2157      14      45                      Personal Foul         28 401320570161
## 2158      17      95                         Layup Shot         30 401320570163
## 2159      14     132                Step Back Jump Shot         30 401320570165
## 2160      17      92                          Jump Shot         30 401320570166
## 2161      14     155                  Defensive Rebound         30 401320570167
## 2162      14      92                          Jump Shot         30 401320570168
## 2163      14      44                      Shooting Foul         30 401320570170
## 2164      14      16                       Full Timeout         30 401320570172
## 2165      14     584                       Substitution         30 401320570173
## 2166      17     584                       Substitution         30 401320570174
## 2167      17      98                Free Throw - 1 of 2         31 401320570177
## 2168      17      99                Free Throw - 2 of 2         32 401320570178
## 2169      14      92                          Jump Shot         32 401320570179
## 2170      17     155                  Defensive Rebound         32 401320570180
## 2171      14      12                        Kicked Ball         32 401320570181
## 2172      17      92                          Jump Shot         32 401320570182
## 2173      14     155                  Defensive Rebound         32 401320570184
## 2174      14      92                          Jump Shot         32 401320570185
## 2175      17     155                  Defensive Rebound         32 401320570186
## 2176      17      92                          Jump Shot         32 401320570187
## 2177      14     155                  Defensive Rebound         32 401320570188
## 2178      17      45                      Personal Foul         32 401320570189
## 2179      14     584                       Substitution         32 401320570191
## 2180      14     584                       Substitution         32 401320570192
## 2181      17     584                       Substitution         32 401320570195
## 2182      17      44                      Shooting Foul         32 401320570197
## 2183      14      98                Free Throw - 1 of 2         32 401320570199
## 2184      14     156                  Offensive Rebound         32 401320570200
## 2185      14      99                Free Throw - 2 of 2         32 401320570201
## 2186      17     131                   Pullup Jump Shot         32 401320570202
## 2187      14     155                  Defensive Rebound         32 401320570203
## 2188      14      90  Out of Bounds - Bad Pass Turnover         32 401320570204
## 2189      14     584                       Substitution         32 401320570205
## 2190      17      92                          Jump Shot         32 401320570207
## 2191      14     155                  Defensive Rebound         32 401320570208
## 2192      14      92                          Jump Shot         32 401320570209
## 2193      17      92                          Jump Shot         32 401320570211
## 2194      14     155                  Defensive Rebound         32 401320570212
## 2195      14      92                          Jump Shot         32 401320570213
## 2196      17      16                       Full Timeout         32 401320570216
## 2197      17     584                       Substitution         32 401320570217
## 2198      17     584                       Substitution         32 401320570247
## 2199      17      92                          Jump Shot         34 401320570219
## 2200      14      44                      Shooting Foul         34 401320570221
## 2201      17      97                Free Throw - 1 of 1         34 401320570223
## 2202      14     155                  Defensive Rebound         34 401320570224
## 2203      14      90  Out of Bounds - Bad Pass Turnover         34 401320570225
## 2204      17      95                         Layup Shot         36 401320570227
## 2205      14      92                          Jump Shot         36 401320570229
## 2206      17     155                  Defensive Rebound         36 401320570230
## 2207      17     113                  Running Jump Shot         38 401320570231
## 2208      14      92                          Jump Shot         38 401320570232
## 2209      17     155                  Defensive Rebound         38 401320570234
## 2210      17      92                          Jump Shot         38 401320570235
## 2211      14     155                  Defensive Rebound         38 401320570236
## 2212      14      92                          Jump Shot         38 401320570237
## 2213      17     155                  Defensive Rebound         38 401320570240
## 2214      17     110                 Driving Layup Shot         38 401320570241
## 2215      14     155                  Defensive Rebound         38 401320570242
## 2216      14      62                 Bad Pass\nTurnover         38 401320570243
## 2217      17      95                         Layup Shot         40 401320570245
## 2218      14      16                       Full Timeout         40 401320570246
## 2219      14     584                       Substitution         40 401320570249
## 2220      14      90  Out of Bounds - Bad Pass Turnover         40 401320570251
## 2221      17      95                         Layup Shot         40 401320570252
## 2222      14     155                  Defensive Rebound         40 401320570253
## 2223      14      92                          Jump Shot         40 401320570254
## 2224      17      62                 Bad Pass\nTurnover         40 401320570256
## 2225    <NA>     412                         End Period         40 401320570258
## 2226      14      92                          Jump Shot         40 401320570260
## 2227      17      92                          Jump Shot         40 401320570262
## 2228      14     155                  Defensive Rebound         40 401320570263
## 2229      14      92                          Jump Shot         40 401320570264
## 2230      17     155                  Defensive Rebound         40 401320570265
## 2231      17      92                          Jump Shot         40 401320570266
## 2232      14     155                  Defensive Rebound         40 401320570267
## 2233      14     114               Turnaround Jump Shot         40 401320570268
## 2234      14     615                           Jumpball         40 401320570269
## 2235      17      62                 Bad Pass\nTurnover         40 401320570272
## 2236      14      95                         Layup Shot         40 401320570274
## 2237      17      92                          Jump Shot         40 401320570276
## 2238      14     155                  Defensive Rebound         40 401320570277
## 2239      14     132                Step Back Jump Shot         40 401320570278
## 2240      17      16                       Full Timeout         40 401320570279
## 2241      14      12                        Kicked Ball         40 401320570281
## 2242      17      92                          Jump Shot         40 401320570282
## 2243      14     155                  Defensive Rebound         40 401320570283
## 2244      14      92                          Jump Shot         40 401320570284
## 2245      17     155                  Defensive Rebound         40 401320570285
## 2246      17      92                          Jump Shot         40 401320570286
## 2247      14     155                  Defensive Rebound         40 401320570288
## 2248      14     122                     Jump Shot Bank         40 401320570289
## 2249      17     155                  Defensive Rebound         40 401320570290
## 2250      14      45                      Personal Foul         40 401320570291
## 2251      17      92                          Jump Shot         42 401320570293
## 2252      14     123                     Hook Shot Bank         42 401320570295
## 2253      14      45                      Personal Foul         42 401320570297
## 2254      17     584                       Substitution         42 401320570299
## 2255      17     584                       Substitution         42 401320570300
## 2256      14     584                       Substitution         42 401320570303
## 2257      17      92                          Jump Shot         42 401320570305
## 2258      14     155                  Defensive Rebound         42 401320570307
## 2259      14      90  Out of Bounds - Bad Pass Turnover         42 401320570308
## 2260      17      92                          Jump Shot         45 401320570309
## 2261      17      45                      Personal Foul         45 401320570311
## 2262      14      92                          Jump Shot         45 401320570313
## 2263      17     155                  Defensive Rebound         45 401320570314
## 2264      17     131                   Pullup Jump Shot         47 401320570315
## 2265      14      92                          Jump Shot         47 401320570316
## 2266      17     155                  Defensive Rebound         47 401320570317
## 2267      14      44                      Shooting Foul         47 401320570318
## 2268      17      98                Free Throw - 1 of 2         48 401320570320
## 2269      14     584                       Substitution         48 401320570321
## 2270      17      99                Free Throw - 2 of 2         49 401320570323
## 2271      17      45                      Personal Foul         49 401320570324
## 2272      14     132                Step Back Jump Shot         49 401320570326
## 2273      17      62                 Bad Pass\nTurnover         49 401320570327
## 2274      17      44                      Shooting Foul         49 401320570329
## 2275      14      98                Free Throw - 1 of 2         49 401320570331
## 2276      14      99                Free Throw - 2 of 2         49 401320570332
## 2277      17     141                 Cutting Layup Shot         51 401320570333
## 2278      14      86      Out of Bounds - Step Turnover         51 401320570335
## 2279      14     584                       Substitution         51 401320570336
## 2280      17     584                       Substitution         51 401320570337
## 2281      17      92                          Jump Shot         53 401320570340
## 2282      14     141                 Cutting Layup Shot         53 401320570343
## 2283      17      92                          Jump Shot         53 401320570345
## 2284      14     155                  Defensive Rebound         53 401320570346
## 2285      14      63                 Lost Ball Turnover         53 401320570347
## 2286      17     109                 Running Layup Shot         53 401320570349
## 2287      14     155                  Defensive Rebound         53 401320570350
## 2288      14      92                          Jump Shot         53 401320570351
## 2289      17      92                          Jump Shot         53 401320570353
## 2290      14     155                  Defensive Rebound         53 401320570354
## 2291      17      44                      Shooting Foul         53 401320570355
## 2292      14      98                Free Throw - 1 of 2         53 401320570357
## 2293      14      99                Free Throw - 2 of 2         53 401320570358
## 2294      17      92                          Jump Shot         53 401320570359
## 2295      14     155                  Defensive Rebound         53 401320570360
## 2296      14      92                          Jump Shot         53 401320570361
## 2297      17     155                  Defensive Rebound         53 401320570362
## 2298      17      92                          Jump Shot         53 401320570363
## 2299      14     155                  Defensive Rebound         53 401320570364
## 2300      14     110                 Driving Layup Shot         53 401320570365
## 2301      17     155                  Defensive Rebound         53 401320570366
## 2302      17      95                         Layup Shot         55 401320570367
## 2303      14      92                          Jump Shot         55 401320570369
## 2304      17     155                  Defensive Rebound         55 401320570370
## 2305      17      92                          Jump Shot         57 401320570371
## 2306      17      45                      Personal Foul         57 401320570375
## 2307      14      98                Free Throw - 1 of 2         57 401320570378
## 2308      14     156                  Offensive Rebound         57 401320570379
## 2309      17     584                       Substitution         57 401320570380
## 2310      14      99                Free Throw - 2 of 2         57 401320570382
## 2311      14     156                  Offensive Rebound         57 401320570383
## 2312    <NA>      46                            No Foul         57 401320570374
## 2313    <NA>     412                         End Period         57 401320570385
## 2314      14     584                       Substitution         57 401320570386
## 2315      17      95                         Layup Shot         59 401320570389
## 2316      14      92                          Jump Shot         59 401320570391
## 2317      17     155                  Defensive Rebound         59 401320570393
## 2318      14      44                      Shooting Foul         59 401320570394
## 2319      17      98                Free Throw - 1 of 2         60 401320570396
## 2320      14     584                       Substitution         60 401320570397
## 2321      17      99                Free Throw - 2 of 2         61 401320570399
## 2322      14      95                         Layup Shot         61 401320570400
## 2323      17      92                          Jump Shot         61 401320570402
## 2324      17     156                  Offensive Rebound         61 401320570403
## 2325      17      92                          Jump Shot         63 401320570404
## 2326      14      92                          Jump Shot         63 401320570407
## 2327      17     155                  Defensive Rebound         63 401320570408
## 2328      17      95                         Layup Shot         63 401320570409
## 2329      14     155                  Defensive Rebound         63 401320570410
## 2330      17      44                      Shooting Foul         63 401320570411
## 2331      14      98                Free Throw - 1 of 2         63 401320570413
## 2332      14     584                       Substitution         63 401320570414
## 2333      14      99                Free Throw - 2 of 2         63 401320570416
## 2334      17      92                          Jump Shot         63 401320570417
## 2335      14     155                  Defensive Rebound         63 401320570418
## 2336      14      92                          Jump Shot         63 401320570419
## 2337      14     156                  Offensive Rebound         63 401320570420
## 2338      14     110                 Driving Layup Shot         63 401320570421
## 2339      17      92                          Jump Shot         65 401320570423
## 2340      14      62                 Bad Pass\nTurnover         65 401320570425
## 2341      17     109                 Running Layup Shot         67 401320570427
## 2342      14      92                          Jump Shot         67 401320570428
## 2343      17     110                 Driving Layup Shot         69 401320570430
## 2344      17      45                      Personal Foul         69 401320570431
## 2345      14     584                       Substitution         69 401320570433
## 2346      17     584                       Substitution         69 401320570434
## 2347      17     584                       Substitution         69 401320570435
## 2348      17     584                       Substitution         69 401320570436
## 2349      14      95                         Layup Shot         69 401320570441
## 2350      14      44                      Shooting Foul         69 401320570443
## 2351      17      98                Free Throw - 1 of 2         70 401320570445
## 2352      14     584                       Substitution         70 401320570446
## 2353      17      99                Free Throw - 2 of 2         70 401320570448
## 2354      14     155                  Defensive Rebound         70 401320570449
## 2355      14      92                          Jump Shot         70 401320570450
## 2356      17     155                  Defensive Rebound         70 401320570451
## 2357      17     114               Turnaround Jump Shot         70 401320570452
## 2358      14     155                  Defensive Rebound         70 401320570453
## 2359    <NA>      19                   Official Timeout         70 401320570455
## 2360      14     110                 Driving Layup Shot         70 401320570456
## 2361      17     155                  Defensive Rebound         70 401320570457
## 2362      17      92                          Jump Shot         73 401320570458
## 2363      14      92                          Jump Shot         73 401320570460
## 2364      17      92                          Jump Shot         75 401320570463
## 2365      14      92                          Jump Shot         75 401320570465
## 2366      17     155                  Defensive Rebound         75 401320570466
## 2367      17      42                     Offensive Foul         75 401320570467
## 2368      17      84            Offensive Foul Turnover         75 401320570469
## 2369      14     584                       Substitution         75 401320570470
## 2370      14     110                 Driving Layup Shot         75 401320570472
## 2371      17      95                         Layup Shot         75 401320570473
## 2372      14     155                  Defensive Rebound         75 401320570474
## 2373      14      92                          Jump Shot         75 401320570475
## 2374      17     155                  Defensive Rebound         75 401320570476
## 2375      17      92                          Jump Shot         75 401320570477
## 2376      14     155                  Defensive Rebound         75 401320570479
## 2377      14      95                         Layup Shot         75 401320570480
## 2378      17     131                   Pullup Jump Shot         77 401320570482
## 2379      14      92                          Jump Shot         77 401320570484
## 2380      14     156                  Offensive Rebound         77 401320570485
##                                                                                   text
## 1                    Teaira McCowan vs. Kylee Shook (Kelsey Mitchell gains possession)
## 2                                               Danielle Robinson misses driving layup
## 3                                                        Kylee Shook defensive rebound
## 4                                      Sabrina Ionescu misses 18-foot pullup jump shot
## 5                                                    Kelsey Mitchell defensive rebound
## 6                                      Danielle Robinson bad pass (Kylee Shook steals)
## 7          Michaela Onyenwere makes 26-foot three point jumper (Sami Whitcomb assists)
## 8                                        Kelsey Mitchell misses 10-foot two point shot
## 9                                                    Jantel Lavender offensive rebound
## 10                                  Victoria Vivians misses 25-foot three point jumper
## 11                                                     New York defensive team rebound
## 12                Sami Whitcomb makes 27-foot three point jumper (Kylee Shook assists)
## 13                                   Kelsey Mitchell misses 24-foot three point jumper
## 14                                                    Betnijah Laney defensive rebound
## 15                         Sami Whitcomb lost ball turnover (Danielle Robinson steals)
## 16                             Kelsey Mitchell makes layup (Danielle Robinson assists)
## 17                          Kylee Shook makes 17-foot jumper (Sabrina Ionescu assists)
## 18                                      Kelsey Mitchell makes 18-foot pullup jump shot
## 19                                                       Kelsey Mitchell shooting foul
## 20                                              Betnijah Laney makes free throw 1 of 2
## 21                                              Betnijah Laney makes free throw 2 of 2
## 22                                               Kelsey Mitchell misses 16-foot jumper
## 23                                                    Teaira McCowan offensive rebound
## 24                                                 Teaira McCowan makes two point shot
## 25                                Michaela Onyenwere misses 20-foot step back jumpshot
## 26                                                 Danielle Robinson defensive rebound
## 27                                    Danielle Robinson makes 13-foot pullup jump shot
## 28                                  Betnijah Laney bad pass (Danielle Robinson steals)
## 29                                               Danielle Robinson makes driving layup
## 30                         Sabrina Ionescu misses 25-foot three point pullup jump shot
## 31                                                   Jantel Lavender defensive rebound
## 32                              Teaira McCowan makes layup (Danielle Robinson assists)
## 33            Sami Whitcomb makes 24-foot three point jumper (Sabrina Ionescu assists)
## 34                                                     Danielle Robinson misses jumper
## 35                                                    Betnijah Laney defensive rebound
## 36                              Michaela Onyenwere makes layup (Sami Whitcomb assists)
## 37                                         Teaira McCowan misses 3-foot two point shot
## 38                                                     Sami Whitcomb defensive rebound
## 39                                                Betnijah Laney misses 20-foot jumper
## 40                                                    Teaira McCowan defensive rebound
## 41                                   Kelsey Mitchell misses 24-foot three point jumper
## 42                                                     Sami Whitcomb defensive rebound
## 43                                                     Danielle Robinson personal foul
## 44                                                                    Official timeout
## 45                                       Joyner Holmes enters the game for Kylee Shook
## 46                                     Jazmine Jones enters the game for Sami Whitcomb
## 47                                 Lindsay Allen enters the game for Danielle Robinson
## 48                                Tiffany Mitchell enters the game for Jantel Lavender
## 49                                Jessica Breland enters the game for Victoria Vivians
## 50        Betnijah Laney makes 26-foot three point jumper (Michaela Onyenwere assists)
## 51                                               Jessica Breland misses 20-foot jumper
## 52                                                Michaela Onyenwere defensive rebound
## 53                                                        Teaira McCowan shooting foul
## 54                                          Michaela Onyenwere makes free throw 1 of 2
## 55                                          Michaela Onyenwere makes free throw 2 of 2
## 56                                  Tiffany Mitchell misses 23-foot three point jumper
## 57                                                    Teaira McCowan offensive rebound
## 58                                                         Teaira McCowan misses layup
## 59                                                    Teaira McCowan offensive rebound
## 60                        Jazmine Jones blocks Teaira McCowan 's 2-foot two point shot
## 61                                                     Lindsay Allen offensive rebound
## 62                                   Kelsey Mitchell misses 25-foot three point jumper
## 63                                                Michaela Onyenwere defensive rebound
## 64           Betnijah Laney makes 24-foot three point jumper (Sabrina Ionescu assists)
## 65                                     Lindsay Allen misses 25-foot three point jumper
## 66                                                      Indiana offensive team rebound
## 67                                                       Joyner Holmes loose ball foul
## 68                                Teaira McCowan makes layup (Kelsey Mitchell assists)
## 69                                                Betnijah Laney misses 21-foot jumper
## 70                                                   Jessica Breland defensive rebound
## 71                                               Tiffany Mitchell misses driving layup
## 72                                                  Tiffany Mitchell offensive rebound
## 73                                                       Sabrina Ionescu shooting foul
## 74                                            Tiffany Mitchell makes free throw 1 of 2
## 75                                            Tiffany Mitchell makes free throw 2 of 2
## 76                               Layshia Clarendon enters the game for Sabrina Ionescu
## 77                                 Jantel Lavender enters the game for Kelsey Mitchell
## 78                                 Kysre Gondrezick enters the game for Teaira McCowan
## 79                                                    Layshia Clarendon offensive foul
## 80                                                          Layshia Clarendon turnover
## 81                                                        Betnijah Laney personal foul
## 82         Jantel Lavender makes 25-foot three point jumper (Tiffany Mitchell assists)
## 83             Betnijah Laney makes 25-foot three point jumper (Joyner Holmes assists)
## 84                                               Tiffany Mitchell misses driving layup
## 85                                                    Betnijah Laney defensive rebound
## 86                                    Betnijah Laney misses 26-foot three point jumper
## 87                                                  Kysre Gondrezick defensive rebound
## 88                                                        Kysre Gondrezick makes layup
## 89                                Michaela Onyenwere misses 25-foot three point jumper
## 90                                                   Jessica Breland defensive rebound
## 91                                               Jantel Lavender misses 19-foot jumper
## 92                                                Michaela Onyenwere defensive rebound
## 93                           Joyner Holmes lost ball turnover (Jessica Breland steals)
## 94                                Jantel Lavender bad pass (Michaela Onyenwere steals)
## 95                                                                   (00:00) [Indiana]
## 96                                                              End of the 1st Quarter
## 97                                Sami Whitcomb enters the game for Michaela Onyenwere
## 98                                    Reshanda Gray enters the game for Betnijah Laney
## 99                                                       Jessica Breland personal foul
## 100                                                            Jazmine Jones traveling
## 101          Kysre Gondrezick makes 24-foot three point jumper (Lindsay Allen assists)
## 102                                                        Layshia Clarendon traveling
## 103                              Sabrina Ionescu enters the game for Layshia Clarendon
## 104                                                        Jazmine Jones personal foul
## 105                                              Jantel Lavender misses 19-foot jumper
## 106                                                 Tiffany Mitchell offensive rebound
## 107                                 Tiffany Mitchell bad pass (Sabrina Ionescu steals)
## 108                                    Sami Whitcomb misses 26-foot three point jumper
## 109                                                    Lindsay Allen defensive rebound
## 110                                                  Lindsay Allen makes driving layup
## 111                                                        Jazmine Jones shooting foul
## 112                                      Kylee Shook enters the game for Jazmine Jones
## 113                               Michaela Onyenwere enters the game for Joyner Holmes
## 114                                   Betnijah Laney enters the game for Reshanda Gray
## 115                                              Lindsay Allen makes free throw 1 of 1
## 116                                                       Kylee Shook offensive charge
## 117                                                               Kylee Shook turnover
## 118                                                       Jantel Lavender misses layup
## 119                                                  Jantel Lavender offensive rebound
## 120                                                        Jantel Lavender makes layup
## 121                                                     Kysre Gondrezick shooting foul
## 122                                            Sabrina Ionescu makes free throw 1 of 2
## 123                                            Sabrina Ionescu makes free throw 2 of 2
## 124                                            Jantel Lavender misses 5-foot hook shot
## 125                                                      Kylee Shook defensive rebound
## 126                       Betnijah Laney makes driving layup (Sabrina Ionescu assists)
## 127                                 Tiffany Mitchell misses 24-foot step back jumpshot
## 128                                               Michaela Onyenwere defensive rebound
## 129                                     Betnijah Laney misses 16-foot pullup jump shot
## 130                                                  Jessica Breland defensive rebound
## 131                                              Tiffany Mitchell misses driving layup
## 132                                                    Sami Whitcomb defensive rebound
## 133                               Kelsey Mitchell enters the game for Kysre Gondrezick
## 134                                Danielle Robinson enters the game for Lindsay Allen
## 135                                 Teaira McCowan enters the game for Jantel Lavender
## 136                                  Chelsey Perry enters the game for Jessica Breland
## 137                              Victoria Vivians enters the game for Tiffany Mitchell
## 138          Sabrina Ionescu makes 25-foot three point jumper (Betnijah Laney assists)
## 139                                    Victoria Vivians makes 17-foot pullup jump shot
## 140                                  Sabrina Ionescu misses 26-foot three point jumper
## 141                                                  Kelsey Mitchell defensive rebound
## 142                                                 Chelsey Perry misses 6-foot jumper
## 143                                                  Sabrina Ionescu defensive rebound
## 144                                      Sabrina Ionescu misses 11-foot two point shot
## 145                                               Michaela Onyenwere offensive rebound
## 146                                    Michaela Onyenwere misses 6-foot two point shot
## 147                                                   Teaira McCowan defensive rebound
## 148                                              Victoria Vivians makes 18-foot jumper
## 149                                        Sami Whitcomb misses 11-foot two point shot
## 150                                                   Teaira McCowan defensive rebound
## 151                                 Victoria Vivians misses 23-foot three point jumper
## 152                                                  Sabrina Ionescu defensive rebound
## 153                                                    Danielle Robinson personal foul
## 154                                                              New York Full timeout
## 155          Betnijah Laney makes 24-foot three point jumper (Sabrina Ionescu assists)
## 156                                                       Chelsey Perry offensive foul
## 157                                                             Chelsey Perry turnover
## 158                                                     Victoria Vivians personal foul
## 159                                  Jessica Breland enters the game for Chelsey Perry
## 160                                    Sabrina Ionescu misses 18-foot pullup jump shot
## 161                                                 Victoria Vivians defensive rebound
## 162       Kelsey Mitchell makes 24-foot three point jumper (Danielle Robinson assists)
## 163                                                  Kylee Shook misses 16-foot jumper
## 164                                                  Jessica Breland defensive rebound
## 165                                  Danielle Robinson misses 19-foot pullup jump shot
## 166                                                    Sami Whitcomb defensive rebound
## 167                            Kylee Shook makes 4-foot layup (Betnijah Laney assists)
## 168                               Teaira McCowan makes layup (Kelsey Mitchell assists)
## 169                        Betnijah Laney makes 4-foot layup (Sabrina Ionescu assists)
## 170                                            Jessica Breland makes finger roll layup
## 171                                    Sami Whitcomb misses 25-foot three point jumper
## 172                                                   Teaira McCowan defensive rebound
## 173                                                   Michaela Onyenwere shooting foul
## 174                                                               Indiana Full timeout
## 175                                            Jessica Breland makes free throw 1 of 2
## 176                                            Jessica Breland makes free throw 2 of 2
## 177      Michaela Onyenwere makes 24-foot three point jumper (Sabrina Ionescu assists)
## 178                                 Victoria Vivians misses 24-foot three point jumper
## 179                                                     Indiana offensive team rebound
## 180                                                     Betnijah Laney loose ball foul
## 181                               Teaira McCowan makes layup (Jessica Breland assists)
## 182                                                Kylee Shook double dribble turnover
## 183                                                          Kylee Shook personal foul
## 184                                             Teaira McCowan makes free throw 1 of 2
## 185                                            Teaira McCowan misses free throw 2 of 2
## 186                                                   Betnijah Laney defensive rebound
## 187            Jessica Breland blocks Michaela Onyenwere 's 23-foot three point jumper
## 188                                                    New York offensive team rebound
## 189                                                Betnijah Laney makes 18-foot jumper
## 190                                                        Jessica Breland makes layup
## 191                                                    Danielle Robinson personal foul
## 192                                            Sabrina Ionescu makes free throw 1 of 2
## 193                                Lindsay Allen enters the game for Danielle Robinson
## 194                                            Sabrina Ionescu makes free throw 2 of 2
## 195                                                       Teaira McCowan misses jumper
## 196                                                     Indiana offensive team rebound
## 197                                                             End of the 2nd Quarter
## 198                              Danielle Robinson enters the game for Jessica Breland
## 199                                  Jantel Lavender enters the game for Lindsay Allen
## 200                                               Betnijah Laney misses 22-foot jumper
## 201                                                    Sami Whitcomb offensive rebound
## 202                                     Sabrina Ionescu makes 24-foot three point shot
## 203                                  Kelsey Mitchell misses 25-foot three point jumper
## 204                                                  Sabrina Ionescu defensive rebound
## 205                           Michaela Onyenwere makes layup (Sabrina Ionescu assists)
## 206                                 Victoria Vivians misses driving floating jump shot
## 207                                                   Teaira McCowan offensive rebound
## 208                                                        Teaira McCowan misses layup
## 209                                                  Jantel Lavender offensive rebound
## 210                                                        Jantel Lavender makes layup
## 211                                                   Kylee Shook misses 6-foot jumper
## 212                                                  Jantel Lavender defensive rebound
## 213                                  Danielle Robinson bad pass (Sami Whitcomb steals)
## 214                                              Sabrina Ionescu misses two point shot
## 215                                                   Teaira McCowan defensive rebound
## 216                                        Teaira McCowan misses 5-foot two point shot
## 217                                                  Sabrina Ionescu defensive rebound
## 218                       Betnijah Laney makes driving layup (Sabrina Ionescu assists)
## 219                             Teaira McCowan makes layup (Danielle Robinson assists)
## 220                                                      Jantel Lavender personal foul
## 221                           Kylee Shook makes 3-foot layup (Sabrina Ionescu assists)
## 222                              Tiffany Mitchell enters the game for Victoria Vivians
## 223                                  Kelsey Mitchell misses 25-foot step back jumpshot
## 224                                                  Jantel Lavender offensive rebound
## 225                                                       Jantel Lavender misses layup
## 226                                                   Teaira McCowan offensive rebound
## 227                                                         Teaira McCowan makes layup
## 228                                                              New York Full timeout
## 229                                  Sabrina Ionescu misses driving floating jump shot
## 230                                                Danielle Robinson defensive rebound
## 231                                   Tiffany Mitchell misses 18-foot pullup jump shot
## 232                                                 Tiffany Mitchell offensive rebound
## 233                                    Teaira McCowan out of bounds lost ball turnover
## 234          Michaela Onyenwere makes 23-foot three point jumper (Kylee Shook assists)
## 235                     Kelsey Mitchell makes 19-foot jumper (Jantel Lavender assists)
## 236                                            Michaela Onyenwere makes two point shot
## 237                                                      Jantel Lavender shooting foul
## 238                                         Michaela Onyenwere makes free throw 1 of 1
## 239                                               Kelsey Mitchell makes two point shot
## 240                                                Betnijah Laney misses driving layup
## 241                                                   Teaira McCowan defensive rebound
## 242                              Tiffany Mitchell makes layup (Teaira McCowan assists)
## 243                                                   Michaela Onyenwere shooting foul
## 244                                    Jazmine Jones enters the game for Sami Whitcomb
## 245                                           Tiffany Mitchell makes free throw 1 of 1
## 246                                            Michaela Onyenwere misses driving layup
## 247                                                   Teaira McCowan defensive rebound
## 248                                    Kelsey Mitchell out of bounds bad pass turnover
## 249                                      Kylee Shook misses 25-foot three point jumper
## 250                                                  Kelsey Mitchell defensive rebound
## 251                                    Kelsey Mitchell misses 19-foot pullup jump shot
## 252                                                  Jantel Lavender offensive rebound
## 253                    Danielle Robinson makes driving layup (Jantel Lavender assists)
## 254                                                  Kylee Shook misses 10-foot jumper
## 255                                                   Teaira McCowan defensive rebound
## 256                                              Tiffany Mitchell misses driving layup
## 257                                                  Jantel Lavender offensive rebound
## 258                                                       Jantel Lavender misses layup
## 259                                                      Kylee Shook defensive rebound
## 260                                                     Tiffany Mitchell personal foul
## 261                                      Reshanda Gray enters the game for Kylee Shook
## 262                                Jessica Breland enters the game for Jantel Lavender
## 263                               Michaela Onyenwere misses 25-foot three point jumper
## 264                                                     Indiana defensive team rebound
## 265                                                      Reshanda Gray loose ball foul
## 266                               DiDi Richards enters the game for Michaela Onyenwere
## 267                                                           Teaira McCowan traveling
## 268                                     Sabrina Ionescu makes 10-foot pullup jump shot
## 269                                  Kelsey Mitchell misses 26-foot three point jumper
## 270                                                   Betnijah Laney defensive rebound
## 271                                               Betnijah Laney misses 10-foot jumper
## 272                                                     Indiana defensive team rebound
## 273                               Kysre Gondrezick enters the game for Kelsey Mitchell
## 274                                       Jessica Breland misses 8-foot two point shot
## 275                                                    DiDi Richards defensive rebound
## 276                                Reshanda Gray makes layup (Sabrina Ionescu assists)
## 277                                              Tiffany Mitchell makes two point shot
## 278                                                            Reshanda Gray traveling
## 279                                 Jantel Lavender enters the game for Teaira McCowan
## 280                                             Kysre Gondrezick misses 16-foot jumper
## 281                                                  Sabrina Ionescu defensive rebound
## 282                                                     Kysre Gondrezick personal foul
## 283                                                Betnijah Laney makes 18-foot jumper
## 284                                              Jessica Breland misses 15-foot jumper
## 285                                                    Jazmine Jones defensive rebound
## 286                                                       Jazmine Jones offensive foul
## 287                                                             Jazmine Jones turnover
## 288                                             Kysre Gondrezick misses 21-foot jumper
## 289                                                     Indiana offensive team rebound
## 290                                                             End of the 3rd Quarter
## 291                                                                shot clock turnover
## 292                                               Sabrina Ionescu makes 15-foot jumper
## 293                                Danielle Robinson misses driving floating jump shot
## 294                                                    Reshanda Gray defensive rebound
## 295                                                      Betnijah Laney offensive foul
## 296                                                            Betnijah Laney turnover
## 297                                Danielle Robinson misses 24-foot three point jumper
## 298                                                  Sabrina Ionescu defensive rebound
## 299                                         Betnijah Laney makes 8-foot two point shot
## 300                                                               Indiana Full timeout
## 301                                 Teaira McCowan enters the game for Jantel Lavender
## 302                                                      Teaira McCowan offensive foul
## 303                                                            Teaira McCowan turnover
## 304                                       Sabrina Ionescu misses 9-foot two point shot
## 305                                                 Tiffany Mitchell defensive rebound
## 306                             Jessica Breland makes layup (Kysre Gondrezick assists)
## 307                                                       Teaira McCowan shooting foul
## 308                                             Reshanda Gray misses free throw 1 of 2
## 309                                                    New York offensive team rebound
## 310                              Kelsey Mitchell enters the game for Danielle Robinson
## 311                              Victoria Vivians enters the game for Tiffany Mitchell
## 312                                              Reshanda Gray makes free throw 2 of 2
## 313                                   Kelsey Mitchell makes 18-foot step back jumpshot
## 314                                                      Kelsey Mitchell personal foul
## 315                                Jantel Lavender enters the game for Jessica Breland
## 316                                             Victoria Vivians kicked ball violation
## 317                                    Jazmine Jones misses 25-foot three point jumper
## 318                                                 Victoria Vivians defensive rebound
## 319                                     Teaira McCowan bad pass (DiDi Richards steals)
## 320                                       DiDi Richards makes 12-foot pullup jump shot
## 321                                                        Reshanda Gray personal foul
## 322                                    Sami Whitcomb enters the game for Jazmine Jones
## 323                                 Kysre Gondrezick misses 25-foot step back jumpshot
## 324                                                    New York defensive team rebound
## 325                                  Sabrina Ionescu misses 24-foot three point jumper
## 326                                                    DiDi Richards offensive rebound
## 327                                            Sami Whitcomb misses three point jumper
## 328                                                    New York offensive team rebound
## 329                                                    Kelsey Mitchell loose ball foul
## 330                                Teaira McCowan blocks Reshanda Gray 's 3-foot layup
## 331                                                   Teaira McCowan vs. Reshanda Gray
## 332                                                     Indiana defensive team rebound
## 333                                                        Reshanda Gray personal foul
## 334                             Danielle Robinson enters the game for Kysre Gondrezick
## 335                                                       Jantel Lavender misses layup
## 336                                                   Teaira McCowan offensive rebound
## 337                                                Teaira McCowan makes two point shot
## 338                                    DiDi Richards bad pass (Kelsey Mitchell steals)
## 339                                                Kelsey Mitchell makes driving layup
## 340                                                      Sabrina Ionescu shooting foul
## 341                                                              New York Full timeout
## 342                               Michaela Onyenwere enters the game for Reshanda Gray
## 343                                      Kylee Shook enters the game for DiDi Richards
## 344                                            Kelsey Mitchell makes free throw 1 of 1
## 345                                Sabrina Ionescu bad pass (Danielle Robinson steals)
## 346                                     Kelsey Mitchell makes 16-foot pullup jump shot
## 347                                                Sabrina Ionescu makes driving layup
## 348                                                       Teaira McCowan shooting foul
## 349                                            Sabrina Ionescu makes free throw 1 of 1
## 350                                                        Teaira McCowan misses layup
## 351                                                  Jantel Lavender offensive rebound
## 352                                                       Jantel Lavender misses layup
## 353                                                    New York defensive team rebound
## 354                                                Betnijah Laney makes 14-foot jumper
## 355                      Kylee Shook blocks Danielle Robinson 's 8-foot two point shot
## 356                                                   Teaira McCowan offensive rebound
## 357                                                         Teaira McCowan makes layup
## 358                                  Sabrina Ionescu misses 25-foot three point jumper
## 359                                                   Teaira McCowan defensive rebound
## 360                                                      Sabrina Ionescu personal foul
## 361                                                                   Official timeout
## 362                              Tiffany Mitchell enters the game for Victoria Vivians
## 363                                                   Michaela Onyenwere shooting foul
## 364                                            Teaira McCowan misses free throw 1 of 2
## 365                                                     Indiana offensive team rebound
## 366                                             Teaira McCowan makes free throw 2 of 2
## 367                                                     Tiffany Mitchell personal foul
## 368                                            Betnijah Laney misses free throw 1 of 2
## 369                                                    New York offensive team rebound
## 370                                             Betnijah Laney makes free throw 2 of 2
## 371                               Teaira McCowan makes layup (Jantel Lavender assists)
## 372                      Sabrina Ionescu lost ball turnover (Danielle Robinson steals)
## 373                                             Danielle Robinson misses driving layup
## 374                                                  Jantel Lavender offensive rebound
## 375                                                        Jantel Lavender makes layup
## 376                                              Sabrina Ionescu misses 18-foot jumper
## 377                                                  Kelsey Mitchell defensive rebound
## 378                                               Kelsey Mitchell makes 20-foot jumper
## 379                                                              New York Full timeout
## 380                                                    Danielle Robinson personal foul
## 381                                            Betnijah Laney misses free throw 1 of 2
## 382                                                    New York offensive team rebound
## 383                               Reshanda Gray enters the game for Michaela Onyenwere
## 384                                             Betnijah Laney makes free throw 2 of 2
## 385                                 Tiffany Mitchell misses 25-foot three point jumper
## 386                                                    New York defensive team rebound
## 387                                                                  (01:12) [Indiana]
## 388                                  Teaira McCowan blocks Kylee Shook 's 3-foot layup
## 389                                                     Indiana defensive team rebound
## 390                                                       Kelsey Mitchell makes jumper
## 391                                   Sabrina Ionescu makes 25-foot three point jumper
## 392                                                        Sami Whitcomb shooting foul
## 393                                           Kelsey Mitchell misses free throw 1 of 2
## 394                                                     Indiana offensive team rebound
## 395                                            Kelsey Mitchell makes free throw 2 of 2
## 396                                                     Tiffany Mitchell personal foul
## 397                                            Sabrina Ionescu makes free throw 1 of 2
## 398                                            Sabrina Ionescu makes free throw 2 of 2
## 399                                                               Indiana Full timeout
## 400                                  DiDi Richards enters the game for Sabrina Ionescu
## 401                                    Jazmine Jones enters the game for Sami Whitcomb
## 402                                                          Kelsey Mitchell traveling
## 403                                                           New York 20 Sec. timeout
## 404                                  Sabrina Ionescu enters the game for DiDi Richards
## 405                               Michaela Onyenwere enters the game for Jazmine Jones
## 406                                 Jessica Breland enters the game for Teaira McCowan
## 407             Sabrina Ionescu makes 25-foot three point jumper (Kylee Shook assists)
## 408                                                            Indiana 20 Sec. timeout
## 409                                    DiDi Richards enters the game for Reshanda Gray
## 410                                  Jazmine Jones enters the game for Sabrina Ionescu
## 411                                                             End of the 4th Quarter
## 412                                                                        End of Game
## 413               Jonquel Jones vs. Elizabeth Williams (Odyssey Sims gains possession)
## 414                                                           Tianna Hawkins traveling
## 415                                       DeWanna Bonner misses 11-foot two point shot
## 416                                                     Atlanta defensive team rebound
## 417                                                      Brionna Jones loose ball foul
## 418                                   Tianna Hawkins misses 26-foot three point jumper
## 419                                                 Natisha Hiedeman defensive rebound
## 420                Jonquel Jones makes 12-foot two point shot (DeWanna Bonner assists)
## 421                                  Courtney Williams misses 22-foot pullup jump shot
## 422                                                   Briann January defensive rebound
## 423                         Briann January misses 23-foot three point pullup jump shot
## 424                                                     Odyssey Sims defensive rebound
## 425                                       Odyssey Sims misses 11-foot pullup jump shot
## 426                                               Elizabeth Williams offensive rebound
## 427                                            Elizabeth Williams makes two point shot
## 428                                                      Chennedy Carter shooting foul
## 429                                              Jonquel Jones makes free throw 1 of 2
## 430                                              Jonquel Jones makes free throw 2 of 2
## 431                                                     Natisha Hiedeman personal foul
## 432                                  Courtney Williams bad pass (Brionna Jones steals)
## 433                                  Jonquel Jones makes layup (Brionna Jones assists)
## 434                                                     Natisha Hiedeman shooting foul
## 435                                            Chennedy Carter makes free throw 1 of 2
## 436                                 Kaila Charles enters the game for Natisha Hiedeman
## 437                                            Chennedy Carter makes free throw 2 of 2
## 438                                     Jonquel Jones out of bounds lost ball turnover
## 439          Odyssey Sims makes 24-foot three point jumper (Courtney Williams assists)
## 440                                                      Chennedy Carter personal foul
## 441                               Aari McDonald enters the game for Elizabeth Williams
## 442                               Monique Billings enters the game for Chennedy Carter
## 443                                                     Monique Billings personal foul
## 444                                                        Aari McDonald personal foul
## 445                                 DeWanna Bonner makes layup (Jonquel Jones assists)
## 446                                                        Kaila Charles shooting foul
## 447                                               Odyssey Sims makes free throw 1 of 2
## 448                                               Odyssey Sims makes free throw 2 of 2
## 449             Jonquel Jones makes 23-foot three point jumper (Kaila Charles assists)
## 450                                                        Brionna Jones personal foul
## 451                                           Monique Billings makes free throw 1 of 2
## 452                              Shekinna Stricklen enters the game for Tianna Hawkins
## 453                              Beatrice Mompremier enters the game for Brionna Jones
## 454                                           Monique Billings makes free throw 2 of 2
## 455                                   DeWanna Bonner misses 23-foot three point jumper
## 456                                                    Kaila Charles offensive rebound
## 457                                  Jonquel Jones makes layup (Kaila Charles assists)
## 458                                Courtney Williams misses 24-foot three point jumper
## 459                                                    Jonquel Jones defensive rebound
## 460                                                 Jonquel Jones makes two point shot
## 461                                                   Shekinna Stricklen shooting foul
## 462                                                                   Official timeout
## 463                                             Jonquel Jones misses free throw 1 of 1
## 464                                                    Aari McDonald defensive rebound
## 465                         Monique Billings lost ball turnover (Kaila Charles steals)
## 466                                      Monique Billings blocks Jonquel Jones's layup
## 467                                                 Monique Billings defensive rebound
## 468                                                       Briann January shooting foul
## 469                                           Monique Billings makes free throw 1 of 2
## 470                                           Monique Billings makes free throw 2 of 2
## 471                                                   Shekinna Stricklen personal foul
## 472                                       Beatrice Mompremier misses free throw 1 of 2
## 473                                                 Connecticut offensive team rebound
## 474                                       Beatrice Mompremier misses free throw 2 of 2
## 475                                                 Monique Billings defensive rebound
## 476           Courtney Williams makes 13-foot pullup jump shot (Aari McDonald assists)
## 477                                                        Aari McDonald personal foul
## 478                                             DeWanna Bonner makes free throw 1 of 2
## 479                                             DeWanna Bonner makes free throw 2 of 2
## 480                                  Courtney Williams misses 17-foot pullup jump shot
## 481                                                    Kaila Charles defensive rebound
## 482                         Jonquel Jones lost ball turnover (Monique Billings steals)
## 483                                                             Odyssey Sims traveling
## 484                        Jonquel Jones makes two point shot (DeWanna Bonner assists)
## 485                               Shekinna Stricklen misses 25-foot three point jumper
## 486                                                   Briann January defensive rebound
## 487                            Beatrice Mompremier makes layup (Jonquel Jones assists)
## 488                                                               Atlanta Full timeout
## 489                               Elizabeth Williams enters the game for Aari McDonald
## 490                                Tianna Hawkins enters the game for Monique Billings
## 491                             Chennedy Carter enters the game for Shekinna Stricklen
## 492                              DiJonai Carrington enters the game for DeWanna Bonner
## 493                       Odyssey Sims lost ball turnover (Beatrice Mompremier steals)
## 494                                DiJonai Carrington bad pass (Tianna Hawkins steals)
## 495                                            Elizabeth Williams misses driving layup
## 496                                                    Jonquel Jones defensive rebound
## 497                                    Kaila Charles misses 11-foot step back jumpshot
## 498                                                 Connecticut offensive team rebound
## 499                                                  Courtney Williams loose ball foul
## 500                                             Jonquel Jones misses free throw 1 of 2
## 501                                                 Connecticut offensive team rebound
## 502                                     Aari McDonald enters the game for Odyssey Sims
## 503                                Natisha Hiedeman enters the game for Briann January
## 504                                              Jonquel Jones makes free throw 2 of 2
## 505                           Elizabeth Williams makes layup (Chennedy Carter assists)
## 506                                    Jonquel Jones misses 25-foot three point jumper
## 507                                                    Kaila Charles offensive rebound
## 508                                                Kaila Charles misses two point shot
## 509                                              Beatrice Mompremier offensive rebound
## 510              Courtney Williams blocks Beatrice Mompremier 's 4-foot two point shot
## 511                                                     Atlanta defensive team rebound
## 512                                    Chennedy Carter misses 19-foot pullup jump shot
## 513                                                     Atlanta offensive team rebound
## 514                                                             End of the 1st Quarter
## 515                              Brionna Jones enters the game for Beatrice Mompremier
## 516                                  Stephanie Jones enters the game for Jonquel Jones
## 517                                                       Tianna Hawkins shooting foul
## 518                                              Brionna Jones makes free throw 1 of 2
## 519                                              Brionna Jones makes free throw 2 of 2
## 520                                  Courtney Williams misses 20-foot pullup jump shot
## 521                                                 Natisha Hiedeman defensive rebound
## 522                                                        Kaila Charles misses jumper
## 523                                               DiJonai Carrington offensive rebound
## 524                                 DiJonai Carrington bad pass (Aari McDonald steals)
## 525                    Tianna Hawkins makes two point shot (Courtney Williams assists)
## 526                                 Kaila Charles bad pass (Elizabeth Williams steals)
## 527                                              Chennedy Carter misses two point shot
## 528                                                    Kaila Charles defensive rebound
## 529            Natisha Hiedeman makes 24-foot three point shot (Kaila Charles assists)
## 530                                   Chennedy Carter out of bounds lost ball turnover
## 531                                 Odyssey Sims enters the game for Courtney Williams
## 532                                   DeWanna Bonner enters the game for Kaila Charles
## 533                                                        Aari McDonald shooting foul
## 534                                           Natisha Hiedeman makes free throw 1 of 3
## 535                                          Natisha Hiedeman misses free throw 2 of 3
## 536                                                 Connecticut offensive team rebound
## 537                                 Crystal Bradford enters the game for Aari McDonald
## 538                                           Natisha Hiedeman makes free throw 3 of 3
## 539                                     Odyssey Sims misses 22-foot three point jumper
## 540                                                   DeWanna Bonner defensive rebound
## 541                                       DeWanna Bonner misses 15-foot two point shot
## 542                                                    Brionna Jones offensive rebound
## 543                                                 Brionna Jones makes two point shot
## 544                                   Chennedy Carter makes driving floating jump shot
## 545                                               DeWanna Bonner misses 14-foot jumper
## 546                                                 Crystal Bradford defensive rebound
## 547                       Odyssey Sims makes two point shot (Crystal Bradford assists)
## 548                             Stephanie Jones makes layup (Natisha Hiedeman assists)
## 549                                                          Odyssey Sims misses layup
## 550                                                  Stephanie Jones defensive rebound
## 551                                  Natisha Hiedeman out of bounds lost ball turnover
## 552                            Monique Billings enters the game for Elizabeth Williams
## 553                              Courtney Williams enters the game for Chennedy Carter
## 554                              Briann January enters the game for DiJonai Carrington
## 555                     Tianna Hawkins makes 19-foot jumper (Crystal Bradford assists)
## 556         Briann January makes 24-foot three point jumper (Natisha Hiedeman assists)
## 557               Tianna Hawkins makes 17-foot pullup jump shot (Odyssey Sims assists)
## 558                                                         Brionna Jones misses layup
## 559                                                   Briann January offensive rebound
## 560                             Monique Billings blocks Brionna Jones's two point shot
## 561                                                 Crystal Bradford defensive rebound
## 562                                  Courtney Williams misses 25-foot three point shot
## 563                                                 Natisha Hiedeman defensive rebound
## 564                                 Brionna Jones makes layup (DeWanna Bonner assists)
## 565                                   Tianna Hawkins misses 24-foot three point jumper
## 566                                                     Atlanta offensive team rebound
## 567                                                      Brionna Jones loose ball foul
## 568                                                               Atlanta Full timeout
## 569                                    Jonquel Jones enters the game for Brionna Jones
## 570                                                               shot clock turnover 
## 571                                 DeWanna Bonner bad pass (Courtney Williams steals)
## 572                                  Courtney Williams misses running pullup jump shot
## 573                                                   DeWanna Bonner defensive rebound
## 574                                   Briann January misses driving floating jump shot
## 575                                                 Monique Billings defensive rebound
## 576                                                        Jonquel Jones personal foul
## 577                                                       Briann January personal foul
## 578                                       DeWanna Bonner blocks Tianna Hawkins's layup
## 579                                                   Tianna Hawkins offensive rebound
## 580                                                Tianna Hawkins makes two point shot
## 581                       Natisha Hiedeman misses 23-foot three point pullup jump shot
## 582                                                 Crystal Bradford defensive rebound
## 583                                             Monique Billings misses 13-foot jumper
## 584                                                   DeWanna Bonner defensive rebound
## 585                                                           Connecticut Full timeout
## 586                                   Chennedy Carter enters the game for Odyssey Sims
## 587                        Jonquel Jones lost ball turnover (Courtney Williams steals)
## 588                         Monique Billings lost ball turnover (Jonquel Jones steals)
## 589                                Stephanie Jones makes layup (Jonquel Jones assists)
## 590                                   Tianna Hawkins misses 25-foot three point jumper
## 591                                                 Natisha Hiedeman defensive rebound
## 592                                                    Courtney Williams personal foul
## 593                                             Briann January misses pullup jump shot
## 594                                                 Crystal Bradford defensive rebound
## 595                        Chennedy Carter misses 25-foot three point pullup jump shot
## 596                                                  Stephanie Jones defensive rebound
## 597                   DeWanna Bonner makes three point jumper (Briann January assists)
## 598                                                            Atlanta 20 Sec. timeout
## 599                                 Chennedy Carter bad pass (Natisha Hiedeman steals)
## 600                        DeWanna Bonner lost ball turnover (Crystal Bradford steals)
## 601                                   Crystal Bradford misses running pullup jump shot
## 602                                                     Atlanta offensive team rebound
## 603                                                        Jonquel Jones personal foul
## 604                    Chennedy Carter makes driving layup (Courtney Williams assists)
## 605                           Jonquel Jones lost ball turnover (Tianna Hawkins steals)
## 606                                                       Briann January shooting foul
## 607                                          Courtney Williams makes free throw 1 of 2
## 608                                          Courtney Williams makes free throw 2 of 2
## 609                                                             End of the 2nd Quarter
## 610                            Elizabeth Williams enters the game for Crystal Bradford
## 611                                  Odyssey Sims enters the game for Monique Billings
## 612                                  Brionna Jones enters the game for Stephanie Jones
## 613                                    Natisha Hiedeman bad pass (Odyssey Sims steals)
## 614                                              Chennedy Carter misses 13-foot jumper
## 615                                                 Natisha Hiedeman defensive rebound
## 616                                                Brionna Jones misses 14-foot jumper
## 617                                               Elizabeth Williams defensive rebound
## 618                    Natisha Hiedeman blocks Chennedy Carter 's 4-foot driving layup
## 619                                                 Natisha Hiedeman defensive rebound
## 620                                                         Natisha Hiedeman traveling
## 621                                   Tianna Hawkins misses 24-foot three point jumper
## 622                                                     Odyssey Sims offensive rebound
## 623                                                 Odyssey Sims misses two point shot
## 624                                                   Briann January defensive rebound
## 625                              Briann January makes 24-foot running pullup jump shot
## 626                                                   Odyssey Sims makes driving layup
## 627                                                      Chennedy Carter shooting foul
## 628                                             Jonquel Jones misses free throw 1 of 2
## 629                                                 Connecticut offensive team rebound
## 630                                              Jonquel Jones makes free throw 2 of 2
## 631                                                Chennedy Carter makes driving layup
## 632                    Elizabeth Williams blocks Brionna Jones 's 3-foot driving layup
## 633                                               Elizabeth Williams defensive rebound
## 634                                                       Briann January shooting foul
## 635                                              Odyssey Sims misses free throw 1 of 2
## 636                                                     Atlanta offensive team rebound
## 637                                               Odyssey Sims makes free throw 2 of 2
## 638                       Jonquel Jones lost ball turnover (Elizabeth Williams steals)
## 639                                                   Odyssey Sims makes driving layup
## 640                                      Brionna Jones out of bounds bad pass turnover
## 641                                                           Connecticut Full timeout
## 642                                               Chennedy Carter misses driving layup
## 643                                                    Brionna Jones defensive rebound
## 644                                   DeWanna Bonner bad pass (Chennedy Carter steals)
## 645                                                        Courtney Williams traveling
## 646           DeWanna Bonner makes 24-foot three point jumper (Briann January assists)
## 647                                                  Elizabeth Williams offensive foul
## 648                                                        Elizabeth Williams turnover
## 649                                   DeWanna Bonner misses 22-foot three point jumper
## 650                                                 Natisha Hiedeman offensive rebound
## 651                                   Briann January misses 25-foot three point jumper
## 652                                               Elizabeth Williams defensive rebound
## 653                                    Chennedy Carter misses 10-foot pullup jump shot
## 654                                                    Jonquel Jones defensive rebound
## 655          Natisha Hiedeman makes 25-foot three point jumper (Brionna Jones assists)
## 656                                                Connecticut delay of game violation
## 657                                   Tianna Hawkins misses 23-foot three point jumper
## 658                                                 Natisha Hiedeman defensive rebound
## 659                                 Natisha Hiedeman misses 26-foot three point jumper
## 660                                                     Odyssey Sims defensive rebound
## 661                                       Odyssey Sims out of bounds bad pass turnover
## 662                              Shekinna Stricklen enters the game for Tianna Hawkins
## 663                               Aari McDonald enters the game for Elizabeth Williams
## 664                                  Monique Billings enters the game for Odyssey Sims
## 665                                                         Brionna Jones misses layup
## 666                                                    Brionna Jones offensive rebound
## 667                                                 Brionna Jones makes two point shot
## 668                                      Aari McDonald misses 19-foot pullup jump shot
## 669                                                   DeWanna Bonner defensive rebound
## 670                                    Jonquel Jones misses 25-foot three point jumper
## 671                                                    Aari McDonald defensive rebound
## 672                        Chennedy Carter misses 24-foot three point pullup jump shot
## 673                                                 Connecticut defensive team rebound
## 674                                         Brionna Jones misses 7-foot two point shot
## 675                                                    Jonquel Jones offensive rebound
## 676                             Monique Billings blocks Jonquel Jones 's 3-foot jumper
## 677                                                    Jonquel Jones offensive rebound
## 678                                                 Jonquel Jones makes two point shot
## 679                                             Courtney Williams makes 18-foot jumper
## 680                                  Briann January bad pass (Monique Billings steals)
## 681                                              Monique Billings makes two point shot
## 682                                                 Jonquel Jones misses driving layup
## 683                                                    Jonquel Jones offensive rebound
## 684                                                 Jonquel Jones makes two point shot
## 685                                    Chennedy Carter bad pass (Brionna Jones steals)
## 686                                                    Courtney Williams shooting foul
## 687                                             DeWanna Bonner makes free throw 1 of 2
## 688                                 Tianna Hawkins enters the game for Chennedy Carter
## 689                                   Kaila Charles enters the game for Briann January
## 690                              Beatrice Mompremier enters the game for Jonquel Jones
## 691                                             DeWanna Bonner makes free throw 2 of 2
## 692        Courtney Williams makes 23-foot three point jumper (Tianna Hawkins assists)
## 693                                                   Shekinna Stricklen personal foul
## 694                                            DeWanna Bonner misses free throw 1 of 2
## 695                                                 Connecticut offensive team rebound
## 696                                             DeWanna Bonner makes free throw 2 of 2
## 697          Courtney Williams makes 21-foot pullup jump shot (Tianna Hawkins assists)
## 698                       Natisha Hiedeman misses 30-foot three point pullup jump shot
## 699                                                 Connecticut offensive team rebound
## 700                                                             End of the 3rd Quarter
## 701                               Shekinna Stricklen misses 24-foot three point jumper
## 702                                                 Monique Billings offensive rebound
## 703                                            Courtney Williams misses 11-foot jumper
## 704                                              Beatrice Mompremier defensive rebound
## 705                                  DeWanna Bonner bad pass (Monique Billings steals)
## 706                               Shekinna Stricklen misses 24-foot three point jumper
## 707                                                Courtney Williams offensive rebound
## 708                                    Aari McDonald misses 25-foot three point jumper
## 709                                                   DeWanna Bonner defensive rebound
## 710                                    DeWanna Bonner makes 25-foot three point jumper
## 711                                                  Beatrice Mompremier shooting foul
## 712                                           Monique Billings makes free throw 1 of 2
## 713                                           Monique Billings makes free throw 2 of 2
## 714                      Beatrice Mompremier lost ball turnover (Aari McDonald steals)
## 715                                                        Kaila Charles personal foul
## 716                                    Monique Billings misses 6-foot pullup jump shot
## 717                                                   DeWanna Bonner defensive rebound
## 718                     DeWanna Bonner makes 14-foot jumper (Natisha Hiedeman assists)
## 719                                             Monique Billings misses 19-foot jumper
## 720                                              Beatrice Mompremier defensive rebound
## 721                                Tianna Hawkins blocks Brionna Jones 's 1-foot layup
## 722                                                 Connecticut offensive team rebound
## 723                            Elizabeth Williams enters the game for Monique Billings
## 724                                    Jonquel Jones enters the game for Brionna Jones
## 725                                                       Tianna Hawkins personal foul
## 726                  Beatrice Mompremier makes 15-foot jumper (DeWanna Bonner assists)
## 727                                                 Aari McDonald misses driving layup
## 728                                                    Jonquel Jones defensive rebound
## 729                                 Natisha Hiedeman misses 23-foot three point jumper
## 730                                                Courtney Williams defensive rebound
## 731                                    Aari McDonald misses 23-foot three point jumper
## 732                                                 Connecticut defensive team rebound
## 733                                   Briann January enters the game for Kaila Charles
## 734                                                   Elizabeth Williams shooting foul
## 735                                          Natisha Hiedeman misses free throw 1 of 2
## 736                                                 Connecticut offensive team rebound
## 737                                     Odyssey Sims enters the game for Aari McDonald
## 738                                           Natisha Hiedeman makes free throw 2 of 2
## 739            Elizabeth Williams makes 4-foot two point shot (Tianna Hawkins assists)
## 740            Jonquel Jones makes 23-foot three point jumper (Briann January assists)
## 741                                                     Natisha Hiedeman personal foul
## 742                                                                   Official timeout
## 743                             Chennedy Carter enters the game for Shekinna Stricklen
## 744                         DiJonai Carrington enters the game for Beatrice Mompremier
## 745                               Stephanie Jones enters the game for Natisha Hiedeman
## 746                                                       Briann January personal foul
## 747          Courtney Williams makes 23-foot three point jumper (Odyssey Sims assists)
## 748                                   DeWanna Bonner misses 23-foot three point jumper
## 749                                                     Odyssey Sims defensive rebound
## 750                           DeWanna Bonner blocks Courtney Williams's two point shot
## 751                                                Courtney Williams offensive rebound
## 752                DeWanna Bonner vs. Tianna Hawkins (Briann January gains possession)
## 753                                 Courtney Williams bad pass (DeWanna Bonner steals)
## 754                         Briann January misses 25-foot three point pullup jump shot
## 755                                                    Jonquel Jones offensive rebound
## 756                                                          Stephanie Jones traveling
## 757                                                  Odyssey Sims misses driving layup
## 758                                                Courtney Williams offensive rebound
## 759                   DeWanna Bonner blocks Courtney Williams 's 5-foot two point shot
## 760                                                   DeWanna Bonner defensive rebound
## 761                        Jonquel Jones makes two point shot (DeWanna Bonner assists)
## 762                                                               Atlanta Full timeout
## 763                                  Aleah Goodman enters the game for Stephanie Jones
## 764                                    Tianna Hawkins misses 7-foot step back jumpshot
## 765                                                  Chennedy Carter offensive rebound
## 766                       Tianna Hawkins makes driving layup (Chennedy Carter assists)
## 767                                                       DeWanna Bonner shooting foul
## 768                            Monique Billings enters the game for Elizabeth Williams
## 769                                             Tianna Hawkins makes free throw 1 of 1
## 770                                   Briann January misses 27-foot three point jumper
## 771                                                 Connecticut offensive team rebound
## 772                                                               shot clock turnover 
## 773                                Crystal Bradford enters the game for Tianna Hawkins
## 774                            Chennedy Carter makes 9-foot driving floating jump shot
## 775            DeWanna Bonner makes 25-foot three point jumper (Aleah Goodman assists)
## 776                               Odyssey Sims makes layup (Courtney Williams assists)
## 777                                            DiJonai Carrington misses driving layup
## 778                                                 Crystal Bradford defensive rebound
## 779                                                       DeWanna Bonner personal foul
## 780                                           Crystal Bradford makes free throw 1 of 2
## 781                                Aari McDonald enters the game for Courtney Williams
## 782                             Beatrice Mompremier enters the game for Briann January
## 783                                 Stephanie Jones enters the game for DeWanna Bonner
## 784                                    Kaila Charles enters the game for Jonquel Jones
## 785                                           Crystal Bradford makes free throw 2 of 2
## 786                                                DiJonai Carrington offensive charge
## 787                                                        DiJonai Carrington turnover
## 788                                                        Aleah Goodman shooting foul
## 789                                              Aari McDonald makes free throw 1 of 2
## 790                                             Aari McDonald misses free throw 2 of 2
## 791                                               DiJonai Carrington defensive rebound
## 792                            Monique Billings blocks Stephanie Jones 's 2-foot layup
## 793                                                 Monique Billings defensive rebound
## 794                                                   DiJonai Carrington shooting foul
## 795                                           Crystal Bradford makes free throw 1 of 2
## 796                                          Crystal Bradford misses free throw 2 of 2
## 797                                                    Kaila Charles defensive rebound
## 798                                                             End of the 4th Quarter
## 799                                                                        End of Game
## 800                 Brittney Griner vs. Sylvia Fowles (Aerial Powers gains possession)
## 801                        Sylvia Fowles makes 17-foot jumper (Damiris Dantas assists)
## 802                              Brittney Griner bad pass (Crystal Dangerfield steals)
## 803                                           Crystal Dangerfield makes two point shot
## 804                                          Skylar Diggins-Smith misses 4-foot jumper
## 805                                                   Damiris Dantas defensive rebound
## 806                                       Brittney Griner blocks Sylvia Fowles's layup
## 807                                                     Phoenix defensive team rebound
## 808                                Sylvia Fowles blocks Brianna Turner 's 3-foot layup
## 809                                                    Sylvia Fowles defensive rebound
## 810                                       Brittney Griner blocks Aerial Powers's layup
## 811                                                    Diana Taurasi defensive rebound
## 812                                      Diana Taurasi misses 20-foot pullup jump shot
## 813                                                    Aerial Powers defensive rebound
## 814                                                Aerial Powers misses 21-foot jumper
## 815                                                    Diana Taurasi defensive rebound
## 816                                                    Kia Nurse misses two point shot
## 817                                                    Aerial Powers defensive rebound
## 818                              Crystal Dangerfield misses 25-foot three point jumper
## 819                                                    Diana Taurasi defensive rebound
## 820                  Skylar Diggins-Smith makes two point shot (Diana Taurasi assists)
## 821                   Kayla McBride makes 23-foot jumper (Crystal Dangerfield assists)
## 822                                      Diana Taurasi bad pass (Sylvia Fowles steals)
## 823                                                Sylvia Fowles misses 13-foot jumper
## 824                                                   Brianna Turner defensive rebound
## 825                                                        Aerial Powers shooting foul
## 826                                                  Kia Nurse makes free throw 1 of 2
## 827                                  Natalie Achonwa enters the game for Aerial Powers
## 828                                Bridget Carleton enters the game for Damiris Dantas
## 829                                                 Kia Nurse misses free throw 2 of 2
## 830                                                     Phoenix offensive team rebound
## 831                                    Diana Taurasi misses 24-foot three point jumper
## 832                                                   Minnesota defensive team rebound
## 833                                                         Sylvia Fowles misses layup
## 834                                                    Diana Taurasi defensive rebound
## 835                                                      Natalie Achonwa personal foul
## 836                                Diana Taurasi makes layup (Brittney Griner assists)
## 837                                          Crystal Dangerfield misses two point shot
## 838                                             Skylar Diggins-Smith defensive rebound
## 839                                                   Skylar Diggins-Smith makes layup
## 840                                                Kayla McBride misses 20-foot jumper
## 841                                                    Diana Taurasi defensive rebound
## 842                                                Diana Taurasi misses 12-foot jumper
## 843                                                   Minnesota defensive team rebound
## 844                                                                   Official timeout
## 845                              Rachel Banham enters the game for Crystal Dangerfield
## 846                                  Jessica Shepard enters the game for Sylvia Fowles
## 847                                Sophie Cunningham enters the game for Diana Taurasi
## 848                                 Bridget Carleton misses 25-foot three point jumper
## 849                                                        Kia Nurse defensive rebound
## 850                                          Skylar Diggins-Smith misses 8-foot jumper
## 851                                                   Brianna Turner offensive rebound
## 852                                                     Sophie Cunningham misses layup
## 853                                                    Kayla McBride defensive rebound
## 854                                              Natalie Achonwa misses 15-foot jumper
## 855                                                   Minnesota offensive team rebound
## 856                                    Rachel Banham misses 25-foot three point jumper
## 857                                             Skylar Diggins-Smith defensive rebound
## 858                  Brittney Griner makes 5-foot layup (Skylar Diggins-Smith assists)
## 859                                                     Natalie Achonwa offensive foul
## 860                                                           Natalie Achonwa turnover
## 861                                  Sylvia Fowles enters the game for Natalie Achonwa
## 862                             Diana Taurasi enters the game for Skylar Diggins-Smith
## 863                                        Kia Nurse misses 27-foot three point jumper
## 864                                                  Jessica Shepard defensive rebound
## 865                                     Kayla McBride makes 25-foot three point jumper
## 866                                                        Brianna Turner misses layup
## 867                                                    Sylvia Fowles defensive rebound
## 868                                   Bridget Carleton misses 12-foot pullup jump shot
## 869                                                  Brittney Griner defensive rebound
## 870                                 Brianna Turner makes layup (Diana Taurasi assists)
## 871                                                       Sylvia Fowles offensive foul
## 872                                                             Sylvia Fowles turnover
## 873                                           Shey Peddy enters the game for Kia Nurse
## 874                                    Alanna Smith enters the game for Brianna Turner
## 875                                    Diana Taurasi misses 23-foot three point jumper
## 876                                                   Minnesota defensive team rebound
## 877                                                       Alanna Smith loose ball foul
## 878                                                Sylvia Fowles misses 18-foot jumper
## 879                                                  Brittney Griner defensive rebound
## 880                                Sophie Cunningham misses 25-foot three point jumper
## 881                                                   Minnesota defensive team rebound
## 882                                                       Alanna Smith loose ball foul
## 883                                    Cierra Burdick enters the game for Alanna Smith
## 884                                                            Sylvia Fowles traveling
## 885                                     Cierra Burdick out of bounds bad pass turnover
## 886                                                      Brittney Griner personal foul
## 887                                             Sylvia Fowles misses free throw 1 of 2
## 888                                                   Minnesota offensive team rebound
## 889                              Crystal Dangerfield enters the game for Rachel Banham
## 890                                              Sylvia Fowles makes free throw 2 of 2
## 891                                                     Bridget Carleton personal foul
## 892                                                        Kayla McBride personal foul
## 893                                              Diana Taurasi makes free throw 1 of 2
## 894                                             Diana Taurasi misses free throw 2 of 2
## 895                                                  Brittney Griner offensive rebound
## 896                                    Diana Taurasi misses 24-foot three point jumper
## 897                                                    Sylvia Fowles defensive rebound
## 898                                Crystal Dangerfield misses 15-foot pullup jump shot
## 899                                                     Phoenix defensive team rebound
## 900                      Brittney Griner makes 18-foot jumper (Cierra Burdick assists)
## 901                                          Crystal Dangerfield misses two point shot
## 902                                                  Brittney Griner defensive rebound
## 903                                                             End of the 1st Quarter
## 904                                  Aerial Powers enters the game for Jessica Shepard
## 905                                   Damiris Dantas enters the game for Kayla McBride
## 906                         Skylar Diggins-Smith enters the game for Sophie Cunningham
## 907                                  Skylar Diggins-Smith misses 8-foot two point shot
## 908                                                   Cierra Burdick offensive rebound
## 909                      Brittney Griner makes 18-foot jumper (Cierra Burdick assists)
## 910                                      Bridget Carleton bad pass (Shey Peddy steals)
## 911                          Cierra Burdick makes layup (Skylar Diggins-Smith assists)
## 912                                                             Minnesota Full timeout
## 913                                 Rachel Banham enters the game for Bridget Carleton
## 914                                                         Sylvia Fowles misses layup
## 915                                                   Damiris Dantas offensive rebound
## 916                          Damiris Dantas lost ball turnover (Cierra Burdick steals)
## 917                     Skylar Diggins-Smith makes 20-foot jumper (Shey Peddy assists)
## 918                                       Aerial Powers makes 15-foot pullup jump shot
## 919                                  Brittney Griner misses 10-foot step back jumpshot
## 920                                                   Damiris Dantas defensive rebound
## 921                                   Damiris Dantas misses 25-foot three point jumper
## 922                                                  Brittney Griner defensive rebound
## 923                             Skylar Diggins-Smith misses 23-foot three point jumper
## 924                                                   Cierra Burdick offensive rebound
## 925                                               Shey Peddy misses three point jumper
## 926                                                   Minnesota defensive team rebound
## 927                                    Kayla McBride enters the game for Rachel Banham
## 928                                 Brianna Turner enters the game for Brittney Griner
## 929                                 Sylvia Fowles makes layup (Damiris Dantas assists)
## 930                                                Cierra Burdick misses 8-foot jumper
## 931                                                    Kayla McBride defensive rebound
## 932                                                       Cierra Burdick shooting foul
## 933                                              Kayla McBride makes free throw 1 of 2
## 934                                        Kia Nurse enters the game for Diana Taurasi
## 935                                              Kayla McBride makes free throw 2 of 2
## 936                                                                 Kia Nurse bad pass
## 937                                                     Brianna Turner loose ball foul
## 938                                 Brittney Griner enters the game for Cierra Burdick
## 939                                    Aerial Powers misses 27-foot three point jumper
## 940                                                  Brittney Griner defensive rebound
## 941                                                  Crystal Dangerfield personal foul
## 942                         Skylar Diggins-Smith makes layup (Brittney Griner assists)
## 943                                              Kayla McBride misses pullup jump shot
## 944                                                   Brianna Turner defensive rebound
## 945                                                     Kia Nurse makes two point shot
## 946                                         Crystal Dangerfield makes pullup jump shot
## 947         Shey Peddy makes 24-foot three point jumper (Skylar Diggins-Smith assists)
## 948                                          Crystal Dangerfield misses two point shot
## 949                                                   Brianna Turner defensive rebound
## 950                                                      Kia Nurse makes driving layup
## 951                                                             Minnesota Full timeout
## 952                                  Natalie Achonwa enters the game for Sylvia Fowles
## 953                    Kayla McBride makes driving layup (Crystal Dangerfield assists)
## 954                                                      Brianna Turner offensive foul
## 955                                                            Brianna Turner turnover
## 956                                   Damiris Dantas misses 24-foot three point jumper
## 957                                                  Brittney Griner defensive rebound
## 958                                                  Crystal Dangerfield personal foul
## 959                                        Kia Nurse misses 23-foot three point jumper
## 960                                                    Kayla McBride defensive rebound
## 961                                              Natalie Achonwa misses 21-foot jumper
## 962                                                       Shey Peddy defensive rebound
## 963                                          Skylar Diggins-Smith misses driving layup
## 964                                                   Damiris Dantas defensive rebound
## 965                                                        Aerial Powers misses jumper
## 966                                                   Damiris Dantas offensive rebound
## 967                         Aerial Powers makes driving layup (Damiris Dantas assists)
## 968                                                  Brittney Griner 3 second turnover
## 969                                       Diana Taurasi enters the game for Shey Peddy
## 970                              Brittney Griner blocks Aerial Powers 's 9-foot jumper
## 971                                                        Kia Nurse defensive rebound
## 972                                    Kayla McBride blocks Kia Nurse 's 4-foot jumper
## 973                                                    Kayla McBride defensive rebound
## 974                                                        Aerial Powers misses jumper
## 975                                                   Damiris Dantas offensive rebound
## 976                                                Damiris Dantas makes two point shot
## 977                                                               Phoenix Full timeout
## 978                                 Bridget Carleton enters the game for Aerial Powers
## 979                                Brittney Griner makes layup (Diana Taurasi assists)
## 980                                    Kayla McBride misses 26-foot three point jumper
## 981                                                  Brittney Griner defensive rebound
## 982                             Skylar Diggins-Smith misses 23-foot three point jumper
## 983                                                   Brianna Turner offensive rebound
## 984                              Skylar Diggins-Smith out of bounds lost ball turnover
## 985                                    Kayla McBride misses 23-foot step back jumpshot
## 986                                                   Brianna Turner defensive rebound
## 987                                                       Brittney Griner misses layup
## 988                                                  Brittney Griner offensive rebound
## 989                                                     Brittney Griner makes tip shot
## 990                                                             End of the 2nd Quarter
## 991                                  Aerial Powers enters the game for Natalie Achonwa
## 992                                 Sylvia Fowles enters the game for Bridget Carleton
## 993                                Brittney Griner makes layup (Diana Taurasi assists)
## 994            Damiris Dantas makes 26-foot three point jumper (Aerial Powers assists)
## 995                                                     Kia Nurse misses driving layup
## 996                                                        Kia Nurse offensive rebound
## 997                                                          Brittney Griner traveling
## 998                                     Aerial Powers makes 25-foot three point jumper
## 999                                                        Sylvia Fowles shooting foul
## 1000                                             Diana Taurasi makes free throw 1 of 2
## 1001                                             Diana Taurasi makes free throw 2 of 2
## 1002                                  Damiris Dantas misses 23-foot three point jumper
## 1003                                                   Aerial Powers offensive rebound
## 1004      Crystal Dangerfield makes 25-foot three point jumper (Aerial Powers assists)
## 1005                                          Skylar Diggins-Smith makes driving layup
## 1006                                    Aerial Powers out of bounds lost ball turnover
## 1007                      Aerial Powers blocks Kia Nurse 's 25-foot three point jumper
## 1008                                                   Aerial Powers defensive rebound
## 1009                                                       Diana Taurasi shooting foul
## 1010                                             Aerial Powers makes free throw 1 of 2
## 1011                                             Aerial Powers makes free throw 2 of 2
## 1012                              Skylar Diggins-Smith misses 18-foot pullup jump shot
## 1013                                                   Sylvia Fowles defensive rebound
## 1014                  Sylvia Fowles makes 15-foot jumper (Crystal Dangerfield assists)
## 1015                                                              Phoenix Full timeout
## 1016                                         Kia Nurse bad pass (Sylvia Fowles steals)
## 1017                                                           Sylvia Fowles traveling
## 1018                                                      Brittney Griner misses layup
## 1019                                                   Kayla McBride defensive rebound
## 1020                           Crystal Dangerfield makes layup (Sylvia Fowles assists)
## 1021                                                       Sylvia Fowles personal foul
## 1022                                   Diana Taurasi misses 24-foot three point jumper
## 1023                                                   Aerial Powers defensive rebound
## 1024                                      Aerial Powers makes 15-foot pullup jump shot
## 1025                                 Skylar Diggins-Smith makes 15-foot two point shot
## 1026                                                     Damiris Dantas offensive foul
## 1027                                                           Damiris Dantas turnover
## 1028                                 Natalie Achonwa enters the game for Sylvia Fowles
## 1029                                                     Natalie Achonwa shooting foul
## 1030                                      Skylar Diggins-Smith makes free throw 1 of 2
## 1031                                     Skylar Diggins-Smith misses free throw 2 of 2
## 1032                                                 Brittney Griner offensive rebound
## 1033                                                    Kia Nurse makes two point shot
## 1034                                                 Aerial Powers makes driving layup
## 1035                                                     Brittney Griner shooting foul
## 1036                                             Aerial Powers makes free throw 1 of 1
## 1037                                    Diana Taurasi makes 25-foot step back jumpshot
## 1038                                               Kayla McBride misses 13-foot jumper
## 1039                                                  Minnesota offensive team rebound
## 1040                                Bridget Carleton enters the game for Aerial Powers
## 1041                                  Cierra Burdick enters the game for Diana Taurasi
## 1042                                    Shey Peddy enters the game for Brittney Griner
## 1043                    Crystal Dangerfield makes 2-foot layup (Kayla McBride assists)
## 1044                                                          Shey Peddy shooting foul
## 1045                                      Crystal Dangerfield misses free throw 1 of 1
## 1046                                            Skylar Diggins-Smith defensive rebound
## 1047        Skylar Diggins-Smith makes 27-foot three point jumper (Shey Peddy assists)
## 1048                                                Skylar Diggins-Smith personal foul
## 1049              Damiris Dantas makes 6-foot two point shot (Natalie Achonwa assists)
## 1050                                      Shey Peddy misses 24-foot three point jumper
## 1051                                                 Natalie Achonwa defensive rebound
## 1052                                       Natalie Achonwa bad pass (Kia Nurse steals)
## 1053                                       Kia Nurse misses 24-foot three point jumper
## 1054                                                  Brianna Turner offensive rebound
## 1055                                                      Damiris Dantas shooting foul
## 1056                                           Brianna Turner misses free throw 1 of 2
## 1057                                                    Phoenix offensive team rebound
## 1058                                  Sylvia Fowles enters the game for Damiris Dantas
## 1059                                Brittney Griner enters the game for Cierra Burdick
## 1060                                            Brianna Turner makes free throw 2 of 2
## 1061                        Kayla McBride makes 19-foot jumper (Sylvia Fowles assists)
## 1062                                                      Brittney Griner misses layup
## 1063                                                   Sylvia Fowles defensive rebound
## 1064                                Bridget Carleton misses 26-foot three point jumper
## 1065                                                 Brittney Griner defensive rebound
## 1066                             Aerial Powers enters the game for Crystal Dangerfield
## 1067                                   Rachel Banham enters the game for Kayla McBride
## 1068                            Diana Taurasi enters the game for Skylar Diggins-Smith
## 1069                                             Brittney Griner misses two point shot
## 1070                                                 Natalie Achonwa defensive rebound
## 1071                                                           Kia Nurse personal foul
## 1072                                           Natalie Achonwa makes free throw 1 of 2
## 1073                                           Natalie Achonwa makes free throw 2 of 2
## 1074                      Brianna Turner makes alley oop layup (Diana Taurasi assists)
## 1075                                               Sylvia Fowles misses 18-foot jumper
## 1076                                                       Kia Nurse defensive rebound
## 1077                                                     Natalie Achonwa personal foul
## 1078                                                 Kia Nurse makes free throw 1 of 2
## 1079                                Damiris Dantas enters the game for Natalie Achonwa
## 1080                                                Kia Nurse misses free throw 2 of 2
## 1081                                                Bridget Carleton defensive rebound
## 1082                                                   Bridget Carleton offensive foul
## 1083                                                         Bridget Carleton turnover
## 1084                              Brittney Griner makes layup (Brianna Turner assists)
## 1085                        Aerial Powers makes driving layup (Damiris Dantas assists)
## 1086                                               Diana Taurasi misses 10-foot jumper
## 1087                                                   Sylvia Fowles defensive rebound
## 1088                                                            End of the 3rd Quarter
## 1089                                Kayla McBride enters the game for Bridget Carleton
## 1090                                Skylar Diggins-Smith enters the game for Kia Nurse
## 1091                                                Skylar Diggins-Smith personal foul
## 1092                                                        Aerial Powers misses layup
## 1093                                                   Diana Taurasi defensive rebound
## 1094                       Aerial Powers blocks Brianna Turner 's 6-foot driving layup
## 1095                                                  Minnesota defensive team rebound
## 1096                               Diana Taurasi blocks Aerial Powers 's 7-foot jumper
## 1097                  Diana Taurasi vs. Aerial Powers (Aerial Powers gains possession)
## 1098                                                  Minnesota offensive team rebound
## 1099            Rachel Banham makes 27-foot three point jumper (Aerial Powers assists)
## 1100                                          Kia Nurse enters the game for Shey Peddy
## 1101                                                       Rachel Banham shooting foul
## 1102                                             Diana Taurasi makes free throw 1 of 2
## 1103                                             Diana Taurasi makes free throw 2 of 2
## 1104                              Sylvia Fowles bad pass (Skylar Diggins-Smith steals)
## 1105                                          Skylar Diggins-Smith makes driving layup
## 1106                               Aerial Powers lost ball turnover (Kia Nurse steals)
## 1107                                    Brianna Turner makes layup (Kia Nurse assists)
## 1108                                                            Minnesota Full timeout
## 1109                             Crystal Dangerfield enters the game for Rachel Banham
## 1110                     Brianna Turner blocks Damiris Dantas 's 6-foot two point shot
## 1111                                                   Diana Taurasi defensive rebound
## 1112                       Kayla McBride blocks Brianna Turner 's 5-foot driving layup
## 1113                                                  Minnesota defensive team rebound
## 1114                                          Damiris Dantas misses three point jumper
## 1115                                                  Brianna Turner defensive rebound
## 1116                                                Diana Taurasi misses driving layup
## 1117                                                  Brianna Turner offensive rebound
## 1118                                                     Brianna Turner makes tip shot
## 1119                                                       Diana Taurasi personal foul
## 1120                            Brianna Turner blocks Damiris Dantas 's 17-foot jumper
## 1121                                                  Minnesota offensive team rebound
## 1122                  Kayla McBride makes 18-foot jumper (Crystal Dangerfield assists)
## 1123                                                       Aerial Powers personal foul
## 1124                                    Skylar Diggins-Smith misses three point jumper
## 1125                                                   Sylvia Fowles defensive rebound
## 1126                  Diana Taurasi blocks Crystal Dangerfield 's 7-foot driving layup
## 1127                                                   Diana Taurasi defensive rebound
## 1128                                    Sylvia Fowles blocks Kia Nurse 's 4-foot layup
## 1129                                                    Phoenix offensive team rebound
## 1130                              Skylar Diggins-Smith bad pass (Sylvia Fowles steals)
## 1131                                Diana Taurasi blocks Kayla McBride's driving layup
## 1132                                                  Minnesota offensive team rebound
## 1133                  Crystal Dangerfield makes 17-foot jumper (Kayla McBride assists)
## 1134                            Brianna Turner makes driving layup (Kia Nurse assists)
## 1135                                                       Diana Taurasi personal foul
## 1136                                                        Sylvia Fowles misses layup
## 1137                                                   Sylvia Fowles offensive rebound
## 1138                                                        Sylvia Fowles makes jumper
## 1139                               Diana Taurasi bad pass (Crystal Dangerfield steals)
## 1140                                                      Brianna Turner shooting foul
## 1141                                             Kayla McBride makes free throw 1 of 2
## 1142                                             Kayla McBride makes free throw 2 of 2
## 1143                                        Diana Taurasi misses 8-foot two point shot
## 1144                                                   Sylvia Fowles defensive rebound
## 1145                                                      Aerial Powers offensive foul
## 1146                                                            Aerial Powers turnover
## 1147                                       Diana Taurasi misses 12-foot two point shot
## 1148                                                   Sylvia Fowles defensive rebound
## 1149                             Crystal Dangerfield misses 24-foot three point jumper
## 1150                                                       Kia Nurse defensive rebound
## 1151               Brianna Turner makes alley oop layup (Skylar Diggins-Smith assists)
## 1152                                  Crystal Dangerfield makes 10-foot two point shot
## 1153                                                       Sylvia Fowles shooting foul
## 1154                                             Diana Taurasi makes free throw 1 of 2
## 1155                                 Natalie Achonwa enters the game for Sylvia Fowles
## 1156                                            Diana Taurasi misses free throw 2 of 2
## 1157                                                   Aerial Powers defensive rebound
## 1158                             Brianna Turner blocks Natalie Achonwa 's 2-foot layup
## 1159                                                  Brianna Turner defensive rebound
## 1160                            Skylar Diggins-Smith misses 26-foot three point jumper
## 1161                                                   Kayla McBride defensive rebound
## 1162                                Crystal Dangerfield makes 14-foot pullup jump shot
## 1163                                       Kia Nurse misses 23-foot three point jumper
## 1164                                                 Natalie Achonwa defensive rebound
## 1165                                 Crystal Dangerfield misses 14-foot two point shot
## 1166                                                 Brittney Griner defensive rebound
## 1167                                   Kia Nurse makes layup (Brittney Griner assists)
## 1168                                                     Natalie Achonwa shooting foul
## 1169                                                                  Official timeout
## 1170                                 Sylvia Fowles enters the game for Natalie Achonwa
## 1171                                                Kia Nurse misses free throw 1 of 1
## 1172                                             Crystal Dangerfield defensive rebound
## 1173                                                         Aerial Powers makes layup
## 1174                                                Skylar Diggins-Smith misses jumper
## 1175                                                       Kia Nurse offensive rebound
## 1176                                               Diana Taurasi misses 21-foot jumper
## 1177                                                  Damiris Dantas defensive rebound
## 1178                                                     Brittney Griner shooting foul
## 1179                                             Kayla McBride makes free throw 1 of 2
## 1180                                             Kayla McBride makes free throw 2 of 2
## 1181                        Brittney Griner makes layup (Skylar Diggins-Smith assists)
## 1182                                                            Minnesota Full timeout
## 1183                                                        Aerial Powers misses layup
## 1184                                                   Sylvia Fowles offensive rebound
## 1185                                                Sylvia Fowles makes two point shot
## 1186                                                              Phoenix Full timeout
## 1187                                                       Aerial Powers shooting foul
## 1188                                          Brittney Griner misses free throw 1 of 2
## 1189                                                    Phoenix offensive team rebound
## 1190                                           Brittney Griner makes free throw 2 of 2
## 1191                                                         Minnesota 20 Sec. timeout
## 1192                    Crystal Dangerfield lost ball turnover (Brianna Turner steals)
## 1193                                    Diana Taurasi makes 28-foot three point jumper
## 1194                                                         Minnesota 20 Sec. timeout
## 1195                                                            End of the 4th Quarter
## 1196                                                                       End of Game
## 1197                  Allisha Gray vs. Nneka Ogwumike (Erica Wheeler gains possession)
## 1198                         Nneka Ogwumike makes 3-foot layup (Erica Wheeler assists)
## 1199                                     Arike Ogunbowale steps out of bounds turnover
## 1200                                  Brittney Sykes misses 26-foot three point jumper
## 1201                                                  Kayla Thornton defensive rebound
## 1202                                      Allisha Gray misses 19-foot pullup jump shot
## 1203                                                  Brittney Sykes defensive rebound
## 1204                                   Erica Wheeler misses 25-foot three point jumper
## 1205                                                  Charli Collier defensive rebound
## 1206                                 Moriah Jefferson out of bounds lost ball turnover
## 1207                                      Erica Wheeler makes 15-foot pullup jump shot
## 1208                       Arike Ogunbowale lost ball turnover (Brittney Sykes steals)
## 1209                                    Kristi Toliver misses 27-foot three point shot
## 1210                                                  Kayla Thornton defensive rebound
## 1211        Moriah Jefferson makes 26-foot three point jumper (Kayla Thornton assists)
## 1212                                               Brittney Sykes makes 21-foot jumper
## 1213                 Charli Collier makes 2-foot two point shot (Allisha Gray assists)
## 1214                     Chiney Ogwumike makes 20-foot jumper (Kristi Toliver assists)
## 1215                                      Allisha Gray misses 19-foot pullup jump shot
## 1216                                                 Chiney Ogwumike defensive rebound
## 1217                                   Kristi Toliver makes 27-foot three point jumper
## 1218                                                               Dallas Full timeout
## 1219                              Isabelle Harrison enters the game for Charli Collier
## 1220                           Allisha Gray lost ball turnover (Kristi Toliver steals)
## 1221                                  Brittney Sykes misses 23-foot three point jumper
## 1222                                               Isabelle Harrison defensive rebound
## 1223                                                  Isabelle Harrison offensive foul
## 1224                                                        Isabelle Harrison turnover
## 1225                                   Te'a Cooper enters the game for Chiney Ogwumike
## 1226                                      Nia Coffey enters the game for Erica Wheeler
## 1227                                Tyasha Harris enters the game for Moriah Jefferson
## 1228                                    Marina Mabrey enters the game for Allisha Gray
## 1229                                        Nia Coffey misses 11-foot pullup jump shot
## 1230            Isabelle Harrison vs. Nneka Ogwumike (Kristi Toliver gains possession)
## 1231                                                Los Angeles offensive team rebound
## 1232                                       Kristi Toliver makes 13-foot two point shot
## 1233                                                      Kristi Toliver personal foul
## 1234                             Isabelle Harrison makes layup (Tyasha Harris assists)
## 1235                                                    Arike Ogunbowale shooting foul
## 1236                                              Te'a Cooper misses free throw 1 of 2
## 1237                                                Los Angeles offensive team rebound
## 1238                                               Te'a Cooper makes free throw 2 of 2
## 1239                                       Marina Mabrey bad pass (Te'a Cooper steals)
## 1240               Nneka Ogwumike makes 2-foot two point shot (Kristi Toliver assists)
## 1241                                                   Arike Ogunbowale offensive foul
## 1242                                                         Arike Ogunbowale turnover
## 1243                                    Bria Holmes enters the game for Kristi Toliver
## 1244                                 Charli Collier enters the game for Kayla Thornton
## 1245                                 Allisha Gray enters the game for Arike Ogunbowale
## 1246                         Nneka Ogwumike lost ball turnover (Charli Collier steals)
## 1247                                                         Te'a Cooper personal foul
## 1248                                 Jasmine Walker enters the game for Brittney Sykes
## 1249                                           Isabelle Harrison misses 22-foot jumper
## 1250                                                  Nneka Ogwumike defensive rebound
## 1251                                       Jasmine Walker steps out of bounds turnover
## 1252                    Isabelle Harrison makes two point shot (Marina Mabrey assists)
## 1253                          Nneka Ogwumike makes driving layup (Bria Holmes assists)
## 1254            Marina Mabrey makes 25-foot three point jumper (Tyasha Harris assists)
## 1255                                                         Bria Holmes misses jumper
## 1256                                                   Marina Mabrey defensive rebound
## 1257                                       Marina Mabrey bad pass (Te'a Cooper steals)
## 1258                                                 Te'a Cooper misses 12-foot jumper
## 1259                                                  Charli Collier defensive rebound
## 1260                                  Allisha Gray makes layup (Marina Mabrey assists)
## 1261                                                          Nia Coffey shooting foul
## 1262                                Chiney Ogwumike enters the game for Nneka Ogwumike
## 1263                                              Allisha Gray makes free throw 1 of 1
## 1264                                             Chiney Ogwumike misses 13-foot jumper
## 1265                                               Isabelle Harrison defensive rebound
## 1266            Marina Mabrey makes 26-foot three point jumper (Tyasha Harris assists)
## 1267                                  Jasmine Walker misses 27-foot three point jumper
## 1268                                                     Dallas defensive team rebound
## 1269                                       Tyasha Harris bad pass (Bria Holmes steals)
## 1270                                                  Te'a Cooper misses 9-foot jumper
## 1271                                                      Nia Coffey offensive rebound
## 1272                                                   Nia Coffey makes two point shot
## 1273                                                       Isabelle Harrison traveling
## 1274            Chiney Ogwumike makes 27-foot three point jumper (Te'a Cooper assists)
## 1275                                         Allisha Gray bad pass (Nia Coffey steals)
## 1276                                                    Chiney Ogwumike offensive foul
## 1277                                                          Chiney Ogwumike turnover
## 1278                                                 Marina Mabrey makes driving layup
## 1279                                                   Isabelle Harrison shooting foul
## 1280                                               Bria Holmes makes free throw 1 of 2
## 1281                                    Brittney Sykes enters the game for Te'a Cooper
## 1282                                               Bria Holmes makes free throw 2 of 2
## 1283                                   Charli Collier bad pass (Jasmine Walker steals)
## 1284                                              Nia Coffey misses three point jumper
## 1285                                                 Chiney Ogwumike offensive rebound
## 1286                                              Chiney Ogwumike makes two point shot
## 1287                                   Tyasha Harris misses 52-foot three point jumper
## 1288                                                     Dallas offensive team rebound
## 1289                                                            End of the 1st Quarter
## 1290                               Arella Guirantes enters the game for Brittney Sykes
## 1291                            Moriah Jefferson enters the game for Isabelle Harrison
## 1292                                  Kayla Thornton enters the game for Tyasha Harris
## 1293                                      Erica Wheeler enters the game for Nia Coffey
## 1294                                              Allisha Gray makes free throw 1 of 1
## 1295                                                  Allisha Gray makes driving layup
## 1296                                                     Chiney Ogwumike shooting foul
## 1297                                     Nia Coffey enters the game for Jasmine Walker
## 1298                                         Nia Coffey bad pass (Allisha Gray steals)
## 1299                                Arike Ogunbowale enters the game for Marina Mabrey
## 1300                                                          Nia Coffey shooting foul
## 1301                                            Kayla Thornton makes free throw 1 of 2
## 1302                                            Kayla Thornton makes free throw 2 of 2
## 1303                                Arella Guirantes misses 25-foot three point jumper
## 1304                                                    Allisha Gray defensive rebound
## 1305                                                       Erica Wheeler shooting foul
## 1306                                          Arike Ogunbowale makes free throw 1 of 3
## 1307                                          Arike Ogunbowale makes free throw 2 of 3
## 1308                                          Arike Ogunbowale makes free throw 3 of 3
## 1309                                                              Nia Coffey traveling
## 1310                       Kayla Thornton lost ball turnover (Arella Guirantes steals)
## 1311                                                          Bria Holmes misses layup
## 1312                                                      Nia Coffey offensive rebound
## 1313                                                   Nia Coffey makes two point shot
## 1314                                                         Bria Holmes shooting foul
## 1315                                              Allisha Gray makes free throw 1 of 2
## 1316                                              Allisha Gray makes free throw 2 of 2
## 1317                     Arella Guirantes makes 2-foot layup (Chiney Ogwumike assists)
## 1318                                    Arike Ogunbowale bad pass (Bria Holmes steals)
## 1319                                                      Charli Collier personal foul
## 1320                                Tyasha Harris enters the game for Moriah Jefferson
## 1321                                     Nneka Ogwumike enters the game for Nia Coffey
## 1322                                           Erica Wheeler misses three point jumper
## 1323                                                    Allisha Gray defensive rebound
## 1324                                    Allisha Gray misses 25-foot three point jumper
## 1325                                                Los Angeles defensive team rebound
## 1326                                    Kristi Toliver enters the game for Bria Holmes
## 1327                                               Nneka Ogwumike misses 9-foot jumper
## 1328                                                  Charli Collier defensive rebound
## 1329                                                   Arike Ogunbowale offensive foul
## 1330                                                         Arike Ogunbowale turnover
## 1331                                Marina Mabrey enters the game for Arike Ogunbowale
## 1332                              Charli Collier blocks Nneka Ogwumike 's 4-foot layup
## 1333                Charli Collier vs. Nneka Ogwumike (Erica Wheeler gains possession)
## 1334                                                Los Angeles offensive team rebound
## 1335                                                        Erica Wheeler misses layup
## 1336                                                Los Angeles offensive team rebound
## 1337                                                     Chiney Ogwumike misses jumper
## 1338                                                  Charli Collier defensive rebound
## 1339                       Charli Collier makes 21-foot jumper (Tyasha Harris assists)
## 1340                                                      Charli Collier shooting foul
## 1341                                            Nneka Ogwumike makes free throw 1 of 2
## 1342                               Brittney Sykes enters the game for Arella Guirantes
## 1343                              Isabelle Harrison enters the game for Charli Collier
## 1344                                            Nneka Ogwumike makes free throw 2 of 2
## 1345                                                       Tyasha Harris misses jumper
## 1346                                                 Chiney Ogwumike defensive rebound
## 1347                            Erica Wheeler lost ball turnover (Allisha Gray steals)
## 1348           Kayla Thornton makes 23-foot three point jumper (Tyasha Harris assists)
## 1349                                                          Kristi Toliver traveling
## 1350                                                                  Official timeout
## 1351                                Bella Alarie enters the game for Isabelle Harrison
## 1352                                                       Marina Mabrey misses jumper
## 1353                                                 Chiney Ogwumike defensive rebound
## 1354                                                      Chiney Ogwumike misses layup
## 1355                                                  Kayla Thornton defensive rebound
## 1356                                       Allisha Gray makes 14-foot pullup jump shot
## 1357                                                 Erica Wheeler makes driving layup
## 1358                                    Allisha Gray misses 25-foot three point jumper
## 1359                                                   Erica Wheeler defensive rebound
## 1360                           Erica Wheeler lost ball turnover (Marina Mabrey steals)
## 1361                                     Marina Mabrey out of bounds bad pass turnover
## 1362                                Jasmine Walker enters the game for Chiney Ogwumike
## 1363                                       Bella Alarie blocks Jasmine Walker's jumper
## 1364                                                  Kayla Thornton defensive rebound
## 1365                                                      Marina Mabrey offensive foul
## 1366                                                            Marina Mabrey turnover
## 1367                                Moriah Jefferson enters the game for Marina Mabrey
## 1368                                                      Kayla Thornton personal foul
## 1369                                  Jasmine Walker misses 24-foot three point jumper
## 1370                                                    Bella Alarie defensive rebound
## 1371                           Allisha Gray makes 2-foot layup (Tyasha Harris assists)
## 1372                                                    Moriah Jefferson shooting foul
## 1373                                           Brittney Sykes misses free throw 1 of 2
## 1374                                                Los Angeles offensive team rebound
## 1375                                            Brittney Sykes makes free throw 2 of 2
## 1376                                                Allisha Gray misses 13-foot jumper
## 1377                                                    Bella Alarie offensive rebound
## 1378                                 Moriah Jefferson out of bounds lost ball turnover
## 1379                                                          Los Angeles Full timeout
## 1380                                      Nneka Ogwumike misses 11-foot two point shot
## 1381                                                  Kayla Thornton defensive rebound
## 1382                                      Tyasha Harris makes 12-foot pullup jump shot
## 1383                                              Nneka Ogwumike misses 20-foot jumper
## 1384                                                     Dallas defensive team rebound
## 1385                                Moriah Jefferson misses 27-foot three point jumper
## 1386                                                  Brittney Sykes defensive rebound
## 1387    Kristi Toliver makes 25-foot running pullup jump shot (Brittney Sykes assists)
## 1388                                                       Erica Wheeler shooting foul
## 1389                                              Allisha Gray makes free throw 1 of 2
## 1390                                 Chiney Ogwumike enters the game for Erica Wheeler
## 1391                                     Nia Coffey enters the game for Nneka Ogwumike
## 1392                                    Te'a Cooper enters the game for Jasmine Walker
## 1393                                   Marina Mabrey enters the game for Tyasha Harris
## 1394                                             Allisha Gray misses free throw 2 of 2
## 1395                                                 Chiney Ogwumike defensive rebound
## 1396                                                    Moriah Jefferson shooting foul
## 1397                                               Nia Coffey misses free throw 1 of 2
## 1398                                                Los Angeles offensive team rebound
## 1399                                Tyasha Harris enters the game for Moriah Jefferson
## 1400                                               Nia Coffey misses free throw 2 of 2
## 1401                                                  Kayla Thornton defensive rebound
## 1402                                    Allisha Gray bad pass (Chiney Ogwumike steals)
## 1403                     Brittney Sykes makes two point shot (Kristi Tolliver assists)
## 1404                                     Allisha Gray makes 18-foot step back jumpshot
## 1405                                                 Te'a Cooper misses two point shot
## 1406                                                  Kayla Thornton defensive rebound
## 1407                                                            Bella Alarie traveling
## 1408                                     Te'a Cooper misses 27-foot three point jumper
## 1409                                                Los Angeles offensive team rebound
## 1410                                                            End of the 2nd Quarter
## 1411                                     Erica Wheeler enters the game for Te'a Cooper
## 1412                                     Nneka Ogwumike enters the game for Nia Coffey
## 1413                                Moriah Jefferson enters the game for Marina Mabrey
## 1414                                 Arike Ogunbowale enters the game for Bella Alarie
## 1415                                  Charli Collier enters the game for Tyasha Harris
## 1416                                                        Moriah Jefferson traveling
## 1417                                      Erica Wheeler misses 3-foot pullup jump shot
## 1418                                                  Charli Collier defensive rebound
## 1419                                          Arike Ogunbowale misses pullup jump shot
## 1420                                                  Kayla Thornton offensive rebound
## 1421                      Brittney Sykes blocks Charli Collier 's 3-foot driving layup
## 1422                                                   Erica Wheeler defensive rebound
## 1423                                 Chiney Ogwumike misses 25-foot three point jumper
## 1424                                                    Allisha Gray defensive rebound
## 1425                               Allisha Gray makes 17-foot running pullup jump shot
## 1426                                                      Kayla Thornton personal foul
## 1427                                        Nneka Ogwumike makes 4-foot two point shot
## 1428                                            Arike Ogunbowale misses two point shot
## 1429                                                  Nneka Ogwumike defensive rebound
## 1430                                    Brittney Sykes out of bounds bad pass turnover
## 1431                                           Moriah Jefferson makes pullup jump shot
## 1432                                  Kristi Toliver misses 25-foot three point jumper
## 1433                                                  Charli Collier defensive rebound
## 1434                                             Arike Ogunbowale makes two point shot
## 1435                                                       Erica Wheeler shooting foul
## 1436                                          Arike Ogunbowale makes free throw 1 of 1
## 1437                                               Nneka Ogwumike misses driving layup
## 1438                                                  Nneka Ogwumike offensive rebound
## 1439                                               Nneka Ogwumike makes two point shot
## 1440                         Charli Collier lost ball turnover (Brittney Sykes steals)
## 1441                                                    Moriah Jefferson shooting foul
## 1442                                           Kristi Toliver misses free throw 1 of 2
## 1443                                                Los Angeles offensive team rebound
## 1444                                  Tyasha Harris enters the game for Kayla Thornton
## 1445                            Isabelle Harrison enters the game for Moriah Jefferson
## 1446                                            Kristi Toliver makes free throw 2 of 2
## 1447                 Arike Ogunbowale makes 18-foot jumper (Isabelle Harrison assists)
## 1448          Chiney Ogwumike makes 26-foot three point jumper (Erica Wheeler assists)
## 1449                                 Arike Ogunbowale makes 25-foot three point jumper
## 1450                            Erica Wheeler lost ball turnover (Allisha Gray steals)
## 1451                      Arike Ogunbowale makes two point shot (Allisha Gray assists)
## 1452                                                          Los Angeles Full timeout
## 1453                                     Te'a Cooper enters the game for Erica Wheeler
## 1454                                     Nia Coffey enters the game for Kristi Toliver
## 1455                                            Brittney Sykes misses pullup jump shot
## 1456                                               Isabelle Harrison defensive rebound
## 1457                                                   Arike Ogunbowale offensive foul
## 1458                                                         Arike Ogunbowale turnover
## 1459                                Marina Mabrey enters the game for Arike Ogunbowale
## 1460                                       Nia Coffey out of bounds lost ball turnover
## 1461                                                     Chiney Ogwumike shooting foul
## 1462                                            Charli Collier makes free throw 1 of 2
## 1463                                Jasmine Walker enters the game for Chiney Ogwumike
## 1464                                            Charli Collier makes free throw 2 of 2
## 1465                                       Te'a Cooper bad pass (Tyasha Harris steals)
## 1466                    Isabelle Harrison makes two point shot (Tyasha Harris assists)
## 1467                                        Nia Coffey misses 17-foot pullup jump shot
## 1468                                                   Marina Mabrey defensive rebound
## 1469                                                  Isabelle Harrison offensive foul
## 1470                                                        Isabelle Harrison turnover
## 1471                                  Brittney Sykes misses 24-foot three point jumper
## 1472                                                    Allisha Gray defensive rebound
## 1473                                   Tyasha Harris misses 24-foot three point jumper
## 1474                                                   Marina Mabrey offensive rebound
## 1475                                                      Jasmine Walker shooting foul
## 1476                                           Charli Collier misses free throw 1 of 2
## 1477                                                     Dallas offensive team rebound
## 1478                              Kayla Thornton enters the game for Isabelle Harrison
## 1479                                            Charli Collier makes free throw 2 of 2
## 1480                 Te'a Cooper makes 26-foot three point jumper (Nia Coffey assists)
## 1481                                    Tyasha Harris bad pass (Jasmine Walker steals)
## 1482                       Nneka Ogwumike makes driving layup (Brittney Sykes assists)
## 1483                                                               Dallas Full timeout
## 1484                                    Bria Holmes enters the game for Brittney Sykes
## 1485                                Chiney Ogwumike enters the game for Nneka Ogwumike
## 1486                                   Marina Mabrey misses 26-foot three point jumper
## 1487                                                  Kayla Thornton offensive rebound
## 1488            Tyasha Harris makes 24-foot three point jumper (Marina Mabrey assists)
## 1489              Nia Coffey makes 24-foot three point jumper (Jasmine Walker assists)
## 1490                                              Kayla Thornton misses 15-foot jumper
## 1491                                                  Charli Collier offensive rebound
## 1492                                                   Kayla Thornton offensive charge
## 1493                                                           Kayla Thornton turnover
## 1494                 Nia Coffey makes 25-foot three point jumper (Bria Holmes assists)
## 1495                                  Nia Coffey blocks Allisha Gray 's 15-foot jumper
## 1496                                                      Nia Coffey defensive rebound
## 1497                                         Nia Coffey bad pass (Allisha Gray steals)
## 1498                                                 Allisha Gray misses driving layup
## 1499                                                  Charli Collier offensive rebound
## 1500                                               Charli Collier makes two point shot
## 1501                                                      Te'a Cooper misses hook shot
## 1502                                                  Charli Collier defensive rebound
## 1503                                                         Te'a Cooper shooting foul
## 1504                                              Allisha Gray makes free throw 1 of 2
## 1505                                    Kristi Toliver enters the game for Te'a Cooper
## 1506                                              Allisha Gray makes free throw 2 of 2
## 1507                                             Chiney Ogwumike misses 19-foot jumper
## 1508                                                    Allisha Gray defensive rebound
## 1509                                                            End of the 3rd Quarter
## 1510                                 Moriah Jefferson enters the game for Allisha Gray
## 1511                               Arike Ogunbowale enters the game for Charli Collier
## 1512                               Isabelle Harrison enters the game for Tyasha Harris
## 1513                                        Kristi Toliver makes 8-foot two point shot
## 1514                                   Marina Mabrey misses 26-foot three point jumper
## 1515                                                      Nia Coffey defensive rebound
## 1516                                                       Bria Holmes loose ball foul
## 1517                                                           Kristi Toliver bad pass
## 1518                                            Moriah Jefferson misses 20-foot jumper
## 1519                                               Isabelle Harrison offensive rebound
## 1520                                                   Isabelle Harrison misses jumper
## 1521                                                 Chiney Ogwumike defensive rebound
## 1522                              Chiney Ogwumike makes layup (Jasmine Walker assists)
## 1523                                                Marina Mabrey misses driving layup
## 1524                                                  Jasmine Walker defensive rebound
## 1525                                      Nia Coffey misses 25-foot three point jumper
## 1526                                                  Kayla Thornton defensive rebound
## 1527         Marina Mabrey makes 24-foot three point jumper (Arike Ogunbowale assists)
## 1528                                                  Bria Holmes misses driving layup
## 1529                                               Isabelle Harrison defensive rebound
## 1530                                              Arike Ogunbowale makes driving layup
## 1531                                                         Bria Holmes shooting foul
## 1532                                      Erica Wheeler enters the game for Nia Coffey
## 1533                                Nneka Ogwumike enters the game for Chiney Ogwumike
## 1534                                    Allisha Gray enters the game for Marina Mabrey
## 1535                                         Arike Ogunbowale misses free throw 1 of 1
## 1536                                                  Kayla Thornton offensive rebound
## 1537                                   Arike Ogunbowale makes 13-foot pullup jump shot
## 1538                                   Erica Wheeler misses 25-foot three point jumper
## 1539                                                    Allisha Gray defensive rebound
## 1540                                               Erica Wheeler kicked ball violation
## 1541                                                       Erica Wheeler personal foul
## 1542                                 Erica Wheeler technical foul (1st technical foul)
## 1543                                      Arike Ogunbowale misses technical free throw
## 1544                                                     Dallas offensive team rebound
## 1545                                 Brittney Sykes enters the game for Jasmine Walker
## 1546                              Allisha Gray makes layup (Isabelle Harrison assists)
## 1547                                     Bria Holmes misses 25-foot three point jumper
## 1548                                                  Nneka Ogwumike offensive rebound
## 1549                              Isabelle Harrison blocks Bria Holmes 's 4-foot layup
## 1550                                               Isabelle Harrison defensive rebound
## 1551                                             Arike Ogunbowale misses driving layup
## 1552                                       Te'a Cooper enters the game for Bria Holmes
## 1553             Isabelle Harrison vs. Nneka Ogwumike (Erica Wheeler gains possession)
## 1554                                                Los Angeles defensive team rebound
## 1555                                                       Nneka Ogwumike misses layup
## 1556                                               Isabelle Harrison defensive rebound
## 1557                      Kayla Thornton makes 3-foot layup (Moriah Jefferson assists)
## 1558                                   Erica Wheeler misses 26-foot three point jumper
## 1559                                               Isabelle Harrison defensive rebound
## 1560                                             Arike Ogunbowale misses driving layup
## 1561                                                  Nneka Ogwumike defensive rebound
## 1562                                     Te'a Cooper misses 24-foot three point jumper
## 1563                                                Arike Ogunbowale defensive rebound
## 1564                                    Allisha Gray misses 25-foot three point jumper
## 1565                                                  Nneka Ogwumike defensive rebound
## 1566                                                                  Official timeout
## 1567                                Arella Guirantes enters the game for Erica Wheeler
## 1568                                   Chiney Ogwumike enters the game for Te'a Cooper
## 1569                                 Charli Collier enters the game for Kayla Thornton
## 1570          Moriah Jefferson vs. Kristi Toliver (Isabelle Harrison gains possession)
## 1571                       Kristi Toliver lost ball turnover (Moriah Jefferson steals)
## 1572                                                     Isabelle Harrison makes layup
## 1573                                                      Chiney Ogwumike misses layup
## 1574                                                  Charli Collier defensive rebound
## 1575                                            Arike Ogunbowale misses 17-foot jumper
## 1576                                                  Nneka Ogwumike defensive rebound
## 1577                      Nneka Ogwumike makes 15-foot jumper (Brittney Sykes assists)
## 1578                                                     Chiney Ogwumike shooting foul
## 1579                                              Allisha Gray makes free throw 1 of 2
## 1580                                    Te'a Cooper enters the game for Kristi Toliver
## 1581                                              Allisha Gray makes free throw 2 of 2
## 1582                                                        Allisha Gray shooting foul
## 1583                                                               Dallas Full timeout
## 1584                                Tyasha Harris enters the game for Moriah Jefferson
## 1585                                           Brittney Sykes misses free throw 1 of 2
## 1586                                                Los Angeles offensive team rebound
## 1587                                            Brittney Sykes makes free throw 2 of 2
## 1588                                               Charli Collier misses driving layup
## 1589                                                     Dallas offensive team rebound
## 1590                                Arike Ogunbowale misses 23-foot three point jumper
## 1591                                                     Dallas offensive team rebound
## 1592                                                              shot clock turnover 
## 1593                               Chelsea Dungee enters the game for Arike Ogunbowale
## 1594                                                 Te'a Cooper misses 18-foot jumper
## 1595                                               Isabelle Harrison defensive rebound
## 1596                                      Tyasha Harris makes 14-foot pullup jump shot
## 1597                                  Brittney Sykes misses 25-foot three point jumper
## 1598                                                  Nneka Ogwumike offensive rebound
## 1599                                               Nneka Ogwumike makes two point shot
## 1600                                                            Dallas 20 Sec. timeout
## 1601                                    Nia Coffey enters the game for Chiney Ogwumike
## 1602                                 Jasmine Walker enters the game for Nneka Ogwumike
## 1603                                      Dana Evans enters the game for Tyasha Harris
## 1604                                                  Dana Evans misses 12-foot jumper
## 1605                                                     Te'a Cooper defensive rebound
## 1606                                  Jasmine Walker misses 27-foot three point jumper
## 1607                                                    Allisha Gray defensive rebound
## 1608                                   Chelsea Dungee makes 25-foot step back jumpshot
## 1609                                                         Te'a Cooper misses jumper
## 1610                                                    Allisha Gray defensive rebound
## 1611                     Isabelle Harrison makes two point shot (Allisha Gray assists)
## 1612                                                          Los Angeles Full timeout
## 1613                                Bella Alarie enters the game for Isabelle Harrison
## 1614                                  Arella Guirantes misses 17-foot pullup jump shot
## 1615                                                Los Angeles offensive team rebound
## 1616                                      Arella Guirantes makes 4-foot two point shot
## 1617                                    Nia Coffey blocks Bella Alarie 's 4-foot layup
## 1618                                                  Jasmine Walker defensive rebound
## 1619                                       Te'a Cooper misses running pullup jump shot
## 1620                                                    Allisha Gray defensive rebound
## 1621                        Charli Collier makes 19-foot jumper (Allisha Gray assists)
## 1622                                Arella Guirantes misses 27-foot three point jumper
## 1623                                                Los Angeles offensive team rebound
## 1624                                                            End of the 4th Quarter
## 1625                                                                       End of Game
## 1626                Stefanie Dolson vs. Tina Charles (Candace Parker gains possession)
## 1627                           Courtney Vandersloot bad pass (Leilani Mitchell steals)
## 1628             Ariel Atkins makes 27-foot three point jumper (Natasha Cloud assists)
## 1629                               Ariel Atkins blocks Stefanie Dolson 's 8-foot layup
## 1630                                               Theresa Plaisance defensive rebound
## 1631                               Theresa Plaisance misses 26-foot three point jumper
## 1632                                                 Stefanie Dolson defensive rebound
## 1633                               Candace Parker makes layup (Kahleah Copper assists)
## 1634     Theresa Plaisance makes 27-foot three point jumper (Leilani Mitchell assists)
## 1635    Candace Parker makes 27-foot three point jumper (Courtney Vandersloot assists)
## 1636                                                     Tina Charles palming turnover
## 1637                                                     Diamond DeShields makes layup
## 1638                                                     Ariel Atkins offensive charge
## 1639                                                             Ariel Atkins turnover
## 1640          Kahleah Copper makes 23-foot three point jumper (Candace Parker assists)
## 1641                             Theresa Plaisance bad pass (Diamond DeShields steals)
## 1642                            Kahleah Copper makes layup (Diamond DeShields assists)
## 1643                                                      Kahleah Copper personal foul
## 1644                                        Tina Charles misses 16-foot two point shot
## 1645                                                  Kahleah Copper defensive rebound
## 1646                                             Stefanie Dolson misses 20-foot jumper
## 1647                                               Theresa Plaisance defensive rebound
## 1648                               Theresa Plaisance misses 25-foot three point jumper
## 1649                                                  Kahleah Copper defensive rebound
## 1650                     Diamond DeShields misses 24-foot three point pullup jump shot
## 1651                                                    Tina Charles defensive rebound
## 1652                 Theresa Plaisance makes 13-foot jumper (Leilani Mitchell assists)
## 1653                               Stefanie Dolson bad pass (Theresa Plaisance steals)
## 1654                                         Natasha Cloud makes 3-foot two point shot
## 1655                              Courtney Vandersloot bad pass (Natasha Cloud steals)
## 1656                                   Natasha Cloud misses 25-foot three point jumper
## 1657                                                  Candace Parker defensive rebound
## 1658                  Kahleah Copper makes 3-foot layup (Courtney Vandersloot assists)
## 1659                                        Leilani Mitchell misses three point jumper
## 1660                                            Courtney Vandersloot defensive rebound
## 1661                                    Stefanie Dolson bad pass (Ariel Atkins steals)
## 1662                                                   Diamond DeShields personal foul
## 1663                                                                  Official timeout
## 1664                                 Erica McCall enters the game for Leilani Mitchell
## 1665                                Kiara Leslie enters the game for Theresa Plaisance
## 1666                                 Shavonte Zellous enters the game for Ariel Atkins
## 1667                                    Astou Ndour enters the game for Candace Parker
## 1668                               Allie Quigley enters the game for Diamond DeShields
## 1669                                                 Tina Charles makes two point shot
## 1670                                             Stefanie Dolson misses 21-foot jumper
## 1671                                                   Natasha Cloud defensive rebound
## 1672                                      Kiara Leslie misses 19-foot pullup jump shot
## 1673                                                 Stefanie Dolson defensive rebound
## 1674                                  Kahleah Copper misses 14-foot step back jumpshot
## 1675                                                   Natasha Cloud defensive rebound
## 1676                                    Kiara Leslie misses 25-foot three point jumper
## 1677                                                  Kahleah Copper defensive rebound
## 1678                                     Kahleah Copper bad pass (Kiara Leslie steals)
## 1679                                   Kiara Leslie makes layup (Erica McCall assists)
## 1680                                                             Astou Ndour traveling
## 1681                            Brittany Boyd-Jones enters the game for Kahleah Copper
## 1682                             Ruthy Hebard enters the game for Courtney Vandersloot
## 1683                             Diamond DeShields enters the game for Stefanie Dolson
## 1684                                          Tina Charles makes 8-foot two point shot
## 1685      Allie Quigley makes 23-foot three point jumper (Brittany Boyd-Jones assists)
## 1686             Tina Charles makes 27-foot three point jumper (Natasha Cloud assists)
## 1687      Brittany Boyd-Jones makes 26-foot three point jumper (Allie Quigley assists)
## 1688                                   Natasha Cloud misses 27-foot three point jumper
## 1689                                                 Washington offensive team rebound
## 1690                                                      Ruthy Hebard loose ball foul
## 1691                               Theresa Plaisance enters the game for Natasha Cloud
## 1692                                 Leilani Mitchell enters the game for Tina Charles
## 1693                                                                5 second violation
## 1694                                        Ruthy Hebard misses 11-foot two point shot
## 1695                                               Theresa Plaisance defensive rebound
## 1696                                                 Erica McCall misses driving layup
## 1697                                                    Ruthy Hebard defensive rebound
## 1698                             Diamond DeShields makes layup (Allie Quigley assists)
## 1699                                Shavonte Zellous misses 26-foot three point jumper
## 1700                                                    Ruthy Hebard defensive rebound
## 1701                                   Allie Quigley misses driving floating jump shot
## 1702                                                    Erica McCall defensive rebound
## 1703                                                            End of the 1st Quarter
## 1704                                     Ariel Atkins enters the game for Kiara Leslie
## 1705                                     Tina Charles enters the game for Erica McCall
## 1706                                                         Astou Ndour personal foul
## 1707                                Leilani Mitchell misses 23-foot three point jumper
## 1708                                                Shavonte Zellous offensive rebound
## 1709                                                        Ruthy Hebard shooting foul
## 1710                                          Shavonte Zellous makes free throw 1 of 2
## 1711                                          Shavonte Zellous makes free throw 2 of 2
## 1712                               Brittany Boyd-Jones misses 19-foot pullup jump shot
## 1713                                                   Allie Quigley offensive rebound
## 1714                      Astou Ndour makes 4-foot layup (Brittany Boyd-Jones assists)
## 1715                                        Tina Charles misses 10-foot two point shot
## 1716                                                    Ruthy Hebard defensive rebound
## 1717                        Astou Ndour makes 3-foot layup (Diamond DeShields assists)
## 1718                                                 Brittany Boyd-Jones personal foul
## 1719                                Natasha Cloud enters the game for Shavonte Zellous
## 1720                                   Candace Parker enters the game for Ruthy Hebard
## 1721                                                         Astou Ndour shooting foul
## 1722                                             Tina Charles misses free throw 1 of 2
## 1723                                                 Washington offensive team rebound
## 1724                                              Tina Charles makes free throw 2 of 2
## 1725                                                        Ariel Atkins personal foul
## 1726                      Courtney Vandersloot enters the game for Brittany Boyd-Jones
## 1727    Candace Parker makes 27-foot three point jumper (Courtney Vandersloot assists)
## 1728                                       Theresa Plaisance misses three point jumper
## 1729                                                  Candace Parker defensive rebound
## 1730                                    Diamond DeShields misses 6-foot two point shot
## 1731                                               Theresa Plaisance defensive rebound
## 1732                                        Tina Charles misses 10-foot two point shot
## 1733                                                    Ariel Atkins offensive rebound
## 1734                                                         Ariel Atkins misses layup
## 1735                                                  Candace Parker defensive rebound
## 1736                                     Courtney Vandersloot misses finger roll layup
## 1737                                               Theresa Plaisance defensive rebound
## 1738                                         Tina Charles misses 7-foot two point shot
## 1739                                                    Tina Charles offensive rebound
## 1740                                                 Tina Charles makes two point shot
## 1741                                                         Astou Ndour shooting foul
## 1742                                 Stefanie Dolson enters the game for Allie Quigley
## 1743                                    Kahleah Copper enters the game for Astou Ndour
## 1744                                              Tina Charles makes free throw 1 of 1
## 1745                                                   Theresa Plaisance shooting foul
## 1746                                           Stefanie Dolson makes free throw 1 of 2
## 1747                                           Stefanie Dolson makes free throw 2 of 2
## 1748                                      Tina Charles out of bounds bad pass turnover
## 1749                                                   Theresa Plaisance shooting foul
## 1750                                            Kahleah Copper makes free throw 1 of 2
## 1751                                Erica McCall enters the game for Theresa Plaisance
## 1752                                            Kahleah Copper makes free throw 2 of 2
## 1753                                Leilani Mitchell misses driving floating jump shot
## 1754                                                 Stefanie Dolson defensive rebound
## 1755                                                        Erica McCall personal foul
## 1756                                                           Washington Full timeout
## 1757                                             Stefanie Dolson misses 19-foot jumper
## 1758                                                   Natasha Cloud defensive rebound
## 1759                                Leilani Mitchell misses 24-foot three point jumper
## 1760                                                  Candace Parker defensive rebound
## 1761                                               Kahleah Copper misses driving layup
## 1762                                                    Chicago offensive team rebound
## 1763                                                        Erica McCall personal foul
## 1764                                            Candace Parker makes free throw 1 of 2
## 1765                                            Candace Parker makes free throw 2 of 2
## 1766                       Candace Parker blocks Natasha Cloud 's 8-foot driving layup
## 1767                                                  Candace Parker defensive rebound
## 1768                      Kahleah Copper makes two point shot (Candace Parker assists)
## 1769                          Ariel Atkins misses 25-foot three point pullup jump shot
## 1770                                                    Tina Charles offensive rebound
## 1771                               Candace Parker blocks Ariel Atkins 's 6-foot jumper
## 1772                                               Diamond DeShields defensive rebound
## 1773                                                       Kahleah Copper misses layup
## 1774                                                    Tina Charles defensive rebound
## 1775                                  Leilani Mitchell out of bounds bad pass turnover
## 1776                                                              Chicago Full timeout
## 1777                                     Kiara Leslie enters the game for Ariel Atkins
## 1778       Candace Parker makes 26-foot three point jumper (Diamond DeShields assists)
## 1779                                                   Diamond DeShields personal foul
## 1780                                             Natasha Cloud makes free throw 1 of 2
## 1781                               Allie Quigley enters the game for Diamond DeShields
## 1782                                             Natasha Cloud makes free throw 2 of 2
## 1783                          Candace Parker lost ball turnover (Natasha Cloud steals)
## 1784                              Natasha Cloud bad pass (Courtney Vandersloot steals)
## 1785                                                        Kiara Leslie shooting foul
## 1786                                            Kahleah Copper makes free throw 1 of 2
## 1787                                           Kahleah Copper misses free throw 2 of 2
## 1788                                                Leilani Mitchell defensive rebound
## 1789                                       Natasha Cloud misses 15-foot two point shot
## 1790                                                 Washington offensive team rebound
## 1791                                                              shot clock turnover 
## 1792                                                        Kiara Leslie personal foul
## 1793                                             Allie Quigley makes free throw 1 of 2
## 1794                             Shavonte Zellous enters the game for Leilani Mitchell
## 1795                                             Allie Quigley makes free throw 2 of 2
## 1796                                                         Tina Charles misses layup
## 1797                                                 Stefanie Dolson defensive rebound
## 1798                                      Stefanie Dolson misses 8-foot two point shot
## 1799                                                    Tina Charles defensive rebound
## 1800                                            Tina Charles misses three point jumper
## 1801                                                    Chicago defensive team rebound
## 1802                             Diamond DeShields enters the game for Stefanie Dolson
## 1803                                     Allie Quigley misses 18-foot pullup jump shot
## 1804                                                Shavonte Zellous defensive rebound
## 1805                                         Tina Charles misses 9-foot two point shot
## 1806                                                   Allie Quigley defensive rebound
## 1807                                       Candace Parker misses 8-foot two point shot
## 1808                                                    Erica McCall defensive rebound
## 1809                                         Erica McCall misses 8-foot two point shot
## 1810                                                    Erica McCall offensive rebound
## 1811                                                   Diamond DeShields personal foul
## 1812                                             Tina Charles misses free throw 1 of 2
## 1813                                                 Washington offensive team rebound
## 1814                             Stefanie Dolson enters the game for Diamond DeShields
## 1815                                              Tina Charles makes free throw 2 of 2
## 1816                                              Candace Parker misses 22-foot jumper
## 1817                                                   Natasha Cloud defensive rebound
## 1818                                         Erica McCall steps out of bounds turnover
## 1819                                        Allie Quigley misses 9-foot two point shot
## 1820                                                    Erica McCall defensive rebound
## 1821                                                 Tina Charles misses driving layup
## 1822                                                  Candace Parker defensive rebound
## 1823                      Kahleah Copper makes two point shot (Candace Parker assists)
## 1824                                                       Natasha Cloud shooting foul
## 1825                      Brittany Boyd-Jones enters the game for Courtney Vandersloot
## 1826                                 Stephanie Watts enters the game for Allie Quigley
## 1827                                            Kahleah Copper makes free throw 1 of 1
## 1828                                                           Washington Full timeout
## 1829                                     Ariel Atkins enters the game for Kiara Leslie
## 1830                                Theresa Plaisance enters the game for Erica McCall
## 1831                                                 Brittany Boyd-Jones shooting foul
## 1832                                             Natasha Cloud makes free throw 1 of 2
## 1833                                             Natasha Cloud makes free throw 2 of 2
## 1834                                  Candace Parker misses 23-foot three point jumper
## 1835                                                    Chicago offensive team rebound
## 1836                                                            End of the 2nd Quarter
## 1837                             Leilani Mitchell enters the game for Shavonte Zellous
## 1838                             Diamond DeShields enters the game for Stephanie Watts
## 1839                      Courtney Vandersloot enters the game for Brittany Boyd-Jones
## 1840         Theresa Plaisance makes 16-foot two point shot (Leilani Mitchell assists)
## 1841                                                        Ariel Atkins personal foul
## 1842                                  Kahleah Copper misses 26-foot three point jumper
## 1843                                               Diamond DeShields offensive rebound
## 1844                            Courtney Vandersloot misses 25-foot three point jumper
## 1845                                                    Ariel Atkins defensive rebound
## 1846                               Theresa Plaisance misses 28-foot three point jumper
## 1847                                                    Ariel Atkins offensive rebound
## 1848                                                 Ariel Atkins makes two point shot
## 1849                                              Candace Parker misses 23-foot jumper
## 1850                                                 Washington defensive team rebound
## 1851                                 Theresa Plaisance misses 18-foot pullup jump shot
## 1852                                                  Kahleah Copper defensive rebound
## 1853                                                   Theresa Plaisance personal foul
## 1854                                    Kahleah Copper bad pass (Natasha Cloud steals)
## 1855                                                Natasha Cloud makes two point shot
## 1856                                                              Chicago Full timeout
## 1857                                                   Theresa Plaisance shooting foul
## 1858                                           Candace Parker misses free throw 1 of 2
## 1859                                                    Chicago offensive team rebound
## 1860                                            Candace Parker makes free throw 2 of 2
## 1861                                   Natasha Cloud misses 28-foot three point jumper
## 1862                                                  Kahleah Copper defensive rebound
## 1863                                                    Leilani Mitchell personal foul
## 1864                                  Allie Quigley enters the game for Candace Parker
## 1865                                 Astou Ndour enters the game for Diamond DeShields
## 1866                         Theresa Plaisance blocks Stefanie Dolson 's 12-foot layup
## 1867                                                    Chicago offensive team rebound
## 1868                                                Courtney Vandersloot misses jumper
## 1869                                                 Washington defensive team rebound
## 1870                           Ariel Atkins lost ball turnover (Kahleah Copper steals)
## 1871                          Theresa Plaisance blocks Stefanie Dolson 's 8-foot layup
## 1872                                                    Ariel Atkins defensive rebound
## 1873                               Theresa Plaisance misses 26-foot three point jumper
## 1874                                                  Kahleah Copper defensive rebound
## 1875                                                    Stefanie Dolson offensive foul
## 1876                                                          Stefanie Dolson turnover
## 1877                                Erica McCall enters the game for Theresa Plaisance
## 1878                               Stella Johnson enters the game for Leilani Mitchell
## 1879                                   Natasha Cloud misses 28-foot three point jumper
## 1880                                                 Washington offensive team rebound
## 1881                                                   Stefanie Dolson loose ball foul
## 1882                                Candace Parker enters the game for Stefanie Dolson
## 1883                                    Tina Charles misses 26-foot three point jumper
## 1884                                                   Natasha Cloud offensive rebound
## 1885                                                        Natasha Cloud misses layup
## 1886                                            Courtney Vandersloot defensive rebound
## 1887                                                      Stella Johnson shooting foul
## 1888                                               Astou Ndour makes free throw 1 of 2
## 1889                              Diamond DeShields enters the game for Kahleah Copper
## 1890                                               Astou Ndour makes free throw 2 of 2
## 1891                                  Stella Johnson misses 27-foot three point jumper
## 1892                                                     Astou Ndour defensive rebound
## 1893          Stella Johnson blocks Allie Quigley 's 5-foot driving floating jump shot
## 1894                                                     Astou Ndour offensive rebound
## 1895                                                        Ariel Atkins shooting foul
## 1896                                               Astou Ndour makes free throw 1 of 2
## 1897                                               Astou Ndour makes free throw 2 of 2
## 1898                                         Tina Charles misses 6-foot two point shot
## 1899                                                     Astou Ndour defensive rebound
## 1900                           Candace Parker lost ball turnover (Ariel Atkins steals)
## 1901                                                      Candace Parker personal foul
## 1902                                     Erica McCall bad pass (Candace Parker steals)
## 1903                                    Candace Parker out of bounds bad pass turnover
## 1904                                  Erica McCall makes layup (Natasha Cloud assists)
## 1905                                   Allie Quigley misses 26-foot three point jumper
## 1906                                                    Tina Charles defensive rebound
## 1907                                                     Erica McCall offensive charge
## 1908                                                             Erica McCall turnover
## 1909                                                       Diamond DeShields traveling
## 1910                                      Ariel Atkins misses 17-foot pullup jump shot
## 1911                                                     Astou Ndour defensive rebound
## 1912                          Candace Parker lost ball turnover (Natasha Cloud steals)
## 1913                                                        Washington 20 Sec. timeout
## 1914                                          Stella Johnson misses three point jumper
## 1915                                                  Candace Parker defensive rebound
## 1916                                 Diamond DeShields misses 14-foot pullup jump shot
## 1917                                                    Erica McCall defensive rebound
## 1918                          Tina Charles makes two point shot (Ariel Atkins assists)
## 1919 Courtney Vandersloot makes 23-foot three point jumper (Diamond DeShields assists)
## 1920                                        Tina Charles misses 14-foot two point shot
## 1921                                            Courtney Vandersloot defensive rebound
## 1922       Diamond DeShields makes 24-foot three point jumper (Candace Parker assists)
## 1923                                     Natasha Cloud misses 20-foot pullup jump shot
## 1924                                                  Candace Parker defensive rebound
## 1925                     Diamond DeShields misses 25-foot three point pullup jump shot
## 1926                                                   Natasha Cloud defensive rebound
## 1927                                  Stella Johnson misses driving floating jump shot
## 1928                                                    Ariel Atkins offensive rebound
## 1929                                    Ariel Atkins misses 25-foot three point jumper
## 1930                                                    Ariel Atkins offensive rebound
## 1931                                                            End of the 3rd Quarter
## 1932                                Theresa Plaisance enters the game for Ariel Atkins
## 1933                                    Kiara Leslie enters the game for Natasha Cloud
## 1934                                 Leilani Mitchell enters the game for Tina Charles
## 1935                                Stefanie Dolson enters the game for Candace Parker
## 1936                      Brittany Boyd-Jones enters the game for Courtney Vandersloot
## 1937                                    Kahleah Copper enters the game for Astou Ndour
## 1938                                Ruthy Hebard enters the game for Diamond DeShields
## 1939               Allie Quigley makes 16-foot two point shot (Kahleah Copper assists)
## 1940                                                      Kahleah Copper personal foul
## 1941                               Theresa Plaisance misses 27-foot three point jumper
## 1942                                                  Kahleah Copper defensive rebound
## 1943                                                      Stella Johnson personal foul
## 1944                               Stefanie Dolson makes layup (Allie Quigley assists)
## 1945                                                     Stefanie Dolson personal foul
## 1946         Theresa Plaisance makes 12-foot pullup jump shot (Stella Johnson assists)
## 1947                   Brittany Boyd-Jones misses 26-foot three point pullup jump shot
## 1948                                               Theresa Plaisance defensive rebound
## 1949                      Leilani Mitchell misses 26-foot three point pullup jump shot
## 1950                                             Brittany Boyd-Jones defensive rebound
## 1951                                 Allie Quigley bad pass (Theresa Plaisance steals)
## 1952                                                         Erica McCall misses layup
## 1953                                                    Erica McCall offensive rebound
## 1954                                                          Erica McCall makes layup
## 1955                                   Allie Quigley misses 25-foot three point jumper
## 1956                                               Theresa Plaisance defensive rebound
## 1957                            Leilani Mitchell bad pass (Brittany Boyd-Jones steals)
## 1958                 Kahleah Copper makes two point shot (Brittany Boyd-Jones assists)
## 1959                              Erica McCall makes layup (Theresa Plaisance assists)
## 1960                                       Allie Quigley misses 17-foot two point shot
## 1961                                                 Washington defensive team rebound
## 1962                                   Tina Charles enters the game for Stella Johnson
## 1963                                 Shavonte Zellous enters the game for Erica McCall
## 1964                                   Astou Ndour enters the game for Stefanie Dolson
## 1965                                Leilani Mitchell misses 24-foot three point jumper
## 1966                                                    Chicago defensive team rebound
## 1967                                    Kahleah Copper misses 16-foot pullup jump shot
## 1968                                                    Kiara Leslie defensive rebound
## 1969                                       Theresa Plaisance misses three point jumper
## 1970                                                  Kahleah Copper defensive rebound
## 1971                                                    Shavonte Zellous shooting foul
## 1972                                                                  Official timeout
## 1973                                Natasha Cloud enters the game for Leilani Mitchell
## 1974                             Jillian Alleyne enters the game for Theresa Plaisance
## 1975                      Courtney Vandersloot enters the game for Brittany Boyd-Jones
## 1976                                            Kahleah Copper makes free throw 1 of 2
## 1977                                            Kahleah Copper makes free throw 2 of 2
## 1978                                             Jillian Alleyne misses 18-foot jumper
## 1979                                                   Natasha Cloud offensive rebound
## 1980                                     Kiara Leslie bad pass (Kahleah Copper steals)
## 1981                                     Astou Ndour misses 27-foot three point jumper
## 1982                                                    Kiara Leslie defensive rebound
## 1983                                                Courtney Vandersloot shooting foul
## 1984                                              Kiara Leslie makes free throw 1 of 2
## 1985                                  Candace Parker enters the game for Allie Quigley
## 1986                                 Diamond DeShields enters the game for Astou Ndour
## 1987                                              Kiara Leslie makes free throw 2 of 2
## 1988                       Ruthy Hebard makes 5-foot layup (Diamond DeShields assists)
## 1989                                                        Ruthy Hebard shooting foul
## 1990                                              Kiara Leslie makes free throw 1 of 2
## 1991                                              Kiara Leslie makes free throw 2 of 2
## 1992                                                              shot clock turnover 
## 1993                                     Sydney Wiese enters the game for Kiara Leslie
## 1994                                                       Tina Charles offensive foul
## 1995                                                             Tina Charles turnover
## 1996                                     Erica McCall enters the game for Tina Charles
## 1997                         Candace Parker makes layup (Courtney Vandersloot assists)
## 1998                                    Erica McCall misses 26-foot three point jumper
## 1999                                                    Chicago defensive team rebound
## 2000                                                           Washington Full timeout
## 2001                                  Stella Johnson enters the game for Natasha Cloud
## 2002                                      Candace Parker misses 14-foot two point shot
## 2003                                                 Jillian Alleyne defensive rebound
## 2004                                  Shavonte Zellous misses 16-foot pullup jump shot
## 2005                                               Diamond DeShields defensive rebound
## 2006                                                    Shavonte Zellous shooting foul
## 2007                                             Ruthy Hebard misses free throw 1 of 2
## 2008                                                    Chicago offensive team rebound
## 2009                            Brittany Boyd-Jones enters the game for Kahleah Copper
## 2010                                    Astou Ndour enters the game for Candace Parker
## 2011                          Stephanie Watts enters the game for Courtney Vandersloot
## 2012                                              Ruthy Hebard makes free throw 2 of 2
## 2013                                   Stella Johnson makes 29-foot three point jumper
## 2014                                                Ruthy Hebard misses 10-foot jumper
## 2015                                                    Erica McCall defensive rebound
## 2016                                                         Astou Ndour personal foul
## 2017                                              Erica McCall makes free throw 1 of 2
## 2018                                              Erica McCall makes free throw 2 of 2
## 2019                                                    Diamond DeShields misses layup
## 2020                                                    Erica McCall defensive rebound
## 2021                                      Stella Johnson misses 14-foot two point shot
## 2022                                                  Stella Johnson offensive rebound
## 2023                Stephanie Watts vs. Stella Johnson (Erica McCall gains possession)
## 2024                    Stella Johnson lost ball turnover (Brittany Boyd-Jones steals)
## 2025                                           Diamond DeShields misses 21-foot jumper
## 2026                                                 Jillian Alleyne defensive rebound
## 2027                                    Sydney Wiese misses 25-foot three point jumper
## 2028                                                 Washington offensive team rebound
## 2029                                      Jillian Alleyne misses 5-foot two point shot
## 2030                                                 Jillian Alleyne offensive rebound
## 2031                                  Shavonte Zellous misses 16-foot pullup jump shot
## 2032                                                    Erica McCall offensive rebound
## 2033                                                         Astou Ndour shooting foul
## 2034                                             Erica McCall misses free throw 1 of 2
## 2035                                                 Washington offensive team rebound
## 2036                                              Erica McCall makes free throw 2 of 2
## 2037                                                            End of the 4th Quarter
## 2038                                                                       End of Game
## 2039                   Liz Cambage vs. Breanna Stewart (Chelsea Gray gains possession)
## 2040                                                         Liz Cambage misses jumper
## 2041                                                     Liz Cambage offensive rebound
## 2042                                                     Breanna Stewart shooting foul
## 2043                                               Liz Cambage makes free throw 1 of 2
## 2044                                               Liz Cambage makes free throw 2 of 2
## 2045                                 Breanna Stewart misses 24-foot three point jumper
## 2046                                                     Liz Cambage defensive rebound
## 2047                                    Jackie Young misses 26-foot three point jumper
## 2048                                                  Las Vegas offensive team rebound
## 2049                                               Katie Lou Samuelson loose ball foul
## 2050               A'ja Wilson makes 25-foot three point jumper (Jackie Young assists)
## 2051                                                       Candice Dupree misses layup
## 2052                                                 Riquna Williams defensive rebound
## 2053                                 Liz Cambage makes layup (Riquna Williams assists)
## 2054                          Candice Dupree makes 7-foot jumper (Jewell Loyd assists)
## 2055                                                 A'ja Wilson misses 17-foot jumper
## 2056                                                 Breanna Stewart defensive rebound
## 2057                                              Candice Dupree misses 20-foot jumper
## 2058                                                  Candice Dupree offensive rebound
## 2059                                Jackie Young blocks Candice Dupree 's 2-foot layup
## 2060                                                  Candice Dupree offensive rebound
## 2061                                                        Candice Dupree makes layup
## 2062                                                 A'ja Wilson misses 20-foot jumper
## 2063                                             Katie Lou Samuelson defensive rebound
## 2064                                              Candice Dupree misses 20-foot jumper
## 2065                                                    Chelsea Gray defensive rebound
## 2066                                                 Jackie Young makes 17-foot jumper
## 2067                                                         A'ja Wilson shooting foul
## 2068                                           Breanna Stewart makes free throw 1 of 2
## 2069                                         Jisu Park enters the game for Liz Cambage
## 2070                                           Breanna Stewart makes free throw 2 of 2
## 2071                        A'ja Wilson makes 19-foot jumper (Riquna Williams assists)
## 2072                                     Jewell Loyd misses 25-foot three point jumper
## 2073                                                    Chelsea Gray defensive rebound
## 2074                                                   Jisu Park misses 20-foot jumper
## 2075                                                     Jewell Loyd defensive rebound
## 2076                                 Breanna Stewart misses 23-foot three point jumper
## 2077                                                 Riquna Williams defensive rebound
## 2078                                            Jisu Park makes 17-foot jump bank shot
## 2079                                                           Candice Dupree bad pass
## 2080                                Jackie Young makes layup (Riquna Williams assists)
## 2081                                            Candice Dupree misses 8-foot hook shot
## 2082                                                       Jisu Park defensive rebound
## 2083                           Chelsea Gray lost ball turnover (Candice Dupree steals)
## 2084                                                           Jewell Loyd makes layup
## 2085                           A'ja Wilson makes 20-foot jumper (Chelsea Gray assists)
## 2086                                           Sue Bird makes 20-foot pullup jump shot
## 2087                                         Riquna Williams misses three point jumper
## 2088                                                  Candice Dupree defensive rebound
## 2089                                Breanna Stewart makes hook shot (Sue Bird assists)
## 2090                                             Jisu Park makes 3-foot jump bank shot
## 2091                                                   Jewell Loyd makes driving layup
## 2092                                                Chelsea Gray misses 13-foot jumper
## 2093                                                     A'ja Wilson offensive rebound
## 2094                                                           A'ja Wilson makes layup
## 2095                                                         Jewell Loyd shooting foul
## 2096                                                                  Official timeout
## 2097                               Stephanie Talbot enters the game for Candice Dupree
## 2098                              Ezi Magbegor enters the game for Katie Lou Samuelson
## 2099                                   Liz Cambage enters the game for Riquna Williams
## 2100                                    Dearica Hamby enters the game for Chelsea Gray
## 2101                                         Kelsey Plum enters the game for Jisu Park
## 2102                                               A'ja Wilson makes free throw 1 of 1
## 2103                                                   Jewell Loyd makes driving layup
## 2104                                          Liz Cambage misses 8-foot two point shot
## 2105                                                    Ezi Magbegor defensive rebound
## 2106                  Ezi Magbegor makes 24-foot three point jumper (Sue Bird assists)
## 2107                                        Jordin Canada enters the game for Sue Bird
## 2108                A'ja Wilson makes 11-foot step back jumpshot (Kelsey Plum assists)
## 2109                    Ezi Magbegor makes 6-foot two point shot (Jewell Loyd assists)
## 2110                                                           Dearica Hamby traveling
## 2111                                      Chelsea Gray enters the game for A'ja Wilson
## 2112                                      Jewell Loyd makes 15-foot step back jumpshot
## 2113                                                 Jackie Young misses 3-foot jumper
## 2114                                                   Dearica Hamby offensive rebound
## 2115                                    Chelsea Gray misses 24-foot three point jumper
## 2116                                                    Seattle defensive team rebound
## 2117                                Candice Dupree enters the game for Breanna Stewart
## 2118                                Candice Dupree makes layup (Jordin Canada assists)
## 2119                                                 Jackie Young makes 12-foot jumper
## 2120                                        Jordin Canada makes 13-foot jump bank shot
## 2121                                                            End of the 1st Quarter
## 2122                                                           Jordin Canada traveling
## 2123                                   Dearica Hamby misses 24-foot three point jumper
## 2124                                                     Jewell Loyd defensive rebound
## 2125           Stephanie Talbot makes 23-foot three point jumper (Jewell Loyd assists)
## 2126                                       Ezi Magbegor blocks Liz Cambage's hook shot
## 2127                                                    Ezi Magbegor defensive rebound
## 2128                                   Stephanie Talbot bad pass (Jackie Young steals)
## 2129                                     Kelsey Plum misses 24-foot three point jumper
## 2130                                                     Liz Cambage offensive rebound
## 2131                                                           Liz Cambage makes layup
## 2132                                                 Jordin Canada makes 5-foot jumper
## 2133                                                         Kelsey Plum shooting foul
## 2134                                      A'ja Wilson enters the game for Jackie Young
## 2135                                             Jordin Canada makes free throw 1 of 1
## 2136                                                Chelsea Gray misses 18-foot jumper
## 2137                                                Stephanie Talbot defensive rebound
## 2138                                              Candice Dupree misses 21-foot jumper
## 2139                                                   Dearica Hamby defensive rebound
## 2140                               Candice Dupree blocks Dearica Hamby 's 2-foot layup
## 2141                                                   Dearica Hamby offensive rebound
## 2142                                                        Dearica Hamby misses layup
## 2143                                                   Jordin Canada defensive rebound
## 2144                                                         Liz Cambage shooting foul
## 2145                                            Jordin Canada misses free throw 1 of 2
## 2146                                                    Seattle offensive team rebound
## 2147                                Breanna Stewart enters the game for Candice Dupree
## 2148                                    Kiana Williams enters the game for Jewell Loyd
## 2149                                   Riquna Williams enters the game for Liz Cambage
## 2150                                             Jordin Canada makes free throw 2 of 2
## 2151                                                      Riquna Williams misses layup
## 2152                                                 Breanna Stewart defensive rebound
## 2153                                              Breanna Stewart misses 8-foot jumper
## 2154                                                    Ezi Magbegor offensive rebound
## 2155                                                        Ezi Magbegor misses jumper
## 2156                                                   Dearica Hamby defensive rebound
## 2157                                                        Ezi Magbegor personal foul
## 2158                                    Chelsea Gray makes layup (Kelsey Plum assists)
## 2159                                  Breanna Stewart makes 18-foot step back jumpshot
## 2160                                                  A'ja Wilson misses 7-foot jumper
## 2161                                                   Jordin Canada defensive rebound
## 2162          Breanna Stewart makes 24-foot three point jumper (Jordin Canada assists)
## 2163                                                        Ezi Magbegor shooting foul
## 2164                                                              Seattle Full timeout
## 2165                                        Sue Bird enters the game for Jordin Canada
## 2166                                       Jisu Park enters the game for Dearica Hamby
## 2167                                               A'ja Wilson makes free throw 1 of 2
## 2168                                               A'ja Wilson makes free throw 2 of 2
## 2169                                              Breanna Stewart misses 4-foot jumper
## 2170                                                 Riquna Williams defensive rebound
## 2171                                              Kiana Williams kicked ball violation
## 2172                                                    Jisu Park misses 3-foot jumper
## 2173                                                 Breanna Stewart defensive rebound
## 2174                                Stephanie Talbot misses 27-foot three point jumper
## 2175                                                       Jisu Park defensive rebound
## 2176                                                  A'ja Wilson misses 7-foot jumper
## 2177                                                Stephanie Talbot defensive rebound
## 2178                                                     Riquna Williams personal foul
## 2179                               Candice Dupree enters the game for Stephanie Talbot
## 2180                              Katie Lou Samuelson enters the game for Ezi Magbegor
## 2181                                  Jackie Young enters the game for Riquna Williams
## 2182                                                        Chelsea Gray shooting foul
## 2183                                          Breanna Stewart misses free throw 1 of 2
## 2184                                                    Seattle offensive team rebound
## 2185                                           Breanna Stewart makes free throw 2 of 2
## 2186                                       Kelsey Plum misses 17-foot pullup jump shot
## 2187                                                 Breanna Stewart defensive rebound
## 2188                               Katie Lou Samuelson out of bounds bad pass turnover
## 2189                                    Jewell Loyd enters the game for Kiana Williams
## 2190                                                 A'ja Wilson misses 17-foot jumper
## 2191                                                 Breanna Stewart defensive rebound
## 2192               Sue Bird makes 27-foot three point jumper (Breanna Stewart assists)
## 2193                                                Jackie Young misses 19-foot jumper
## 2194                                                 Breanna Stewart defensive rebound
## 2195                   Sue Bird makes 26-foot three point jumper (Jewell Loyd assists)
## 2196                                                            Las Vegas Full timeout
## 2197                                         Liz Cambage enters the game for Jisu Park
## 2198                                   Riquna Williams enters the game for Kelsey Plum
## 2199                             Liz Cambage makes 4-foot jumper (A'ja Wilson assists)
## 2200                                                      Candice Dupree shooting foul
## 2201                                              Liz Cambage misses free throw 1 of 1
## 2202                                                  Candice Dupree defensive rebound
## 2203                                    Candice Dupree out of bounds bad pass turnover
## 2204                                    Liz Cambage makes layup (Jackie Young assists)
## 2205                                              Candice Dupree misses 21-foot jumper
## 2206                                                     Liz Cambage defensive rebound
## 2207                                           A'ja Wilson makes 7-foot two point shot
## 2208                               Liz Cambage blocks Breanna Stewart 's 6-foot jumper
## 2209                                                     A'ja Wilson defensive rebound
## 2210                                             Riquna Williams misses 16-foot jumper
## 2211                                                        Sue Bird defensive rebound
## 2212                                              Candice Dupree misses 20-foot jumper
## 2213                                                 Riquna Williams defensive rebound
## 2214                                                 Chelsea Gray misses driving layup
## 2215                                                  Candice Dupree defensive rebound
## 2216                                        Sue Bird bad pass (Riquna Williams steals)
## 2217                                                          Jackie Young makes layup
## 2218                                                              Seattle Full timeout
## 2219                                   Ezi Magbegor enters the game for Candice Dupree
## 2220                                   Breanna Stewart out of bounds bad pass turnover
## 2221                                                          Liz Cambage misses layup
## 2222                                                    Ezi Magbegor defensive rebound
## 2223           Katie Lou Samuelson makes 23-foot three point jumper (Sue Bird assists)
## 2224                                       Chelsea Gray bad pass (Ezi Magbegor steals)
## 2225                                                            End of the 2nd Quarter
## 2226                   Jewell Loyd makes 25-foot three point jumper (Sue Bird assists)
## 2227                                                 Chelsea Gray misses 8-foot jumper
## 2228                                                 Breanna Stewart defensive rebound
## 2229                                        Sue Bird misses 25-foot three point jumper
## 2230                                                  Las Vegas defensive team rebound
## 2231                                                         Liz Cambage misses jumper
## 2232                                                        Sue Bird defensive rebound
## 2233                                       Breanna Stewart makes 6-foot two point shot
## 2234            Riquna Williams vs. Katie Lou Samuelson (Jewell Loyd gains possession)
## 2235                                Chelsea Gray bad pass (Katie Lou Samuelson steals)
## 2236                                    Ezi Magbegor makes layup (Jewell Loyd assists)
## 2237                                    Jackie Young misses 25-foot three point jumper
## 2238                                             Katie Lou Samuelson defensive rebound
## 2239                                  Breanna Stewart makes 22-foot step back jumpshot
## 2240                                                            Las Vegas Full timeout
## 2241                                                    Sue Bird kicked ball violation
## 2242                                                Jackie Young misses 19-foot jumper
## 2243                                                    Seattle defensive team rebound
## 2244                                 Breanna Stewart misses 25-foot three point jumper
## 2245                                                 Riquna Williams defensive rebound
## 2246                              Breanna Stewart blocks A'ja Wilson 's 18-foot jumper
## 2247                                                 Breanna Stewart defensive rebound
## 2248                                      Breanna Stewart misses 4-foot jump bank shot
## 2249                                                     Liz Cambage defensive rebound
## 2250                                                 Katie Lou Samuelson personal foul
## 2251                           Jackie Young makes 10-foot jumper (A'ja Wilson assists)
## 2252                   Breanna Stewart makes 14-foot two point shot (Sue Bird assists)
## 2253                                                        Ezi Magbegor personal foul
## 2254                                 Dearica Hamby enters the game for Riquna Williams
## 2255                                       Kelsey Plum enters the game for Liz Cambage
## 2256                                   Candice Dupree enters the game for Ezi Magbegor
## 2257                               Candice Dupree blocks Jackie Young 's 7-foot jumper
## 2258                                                        Sue Bird defensive rebound
## 2259                                          Sue Bird out of bounds bad pass turnover
## 2260               Kelsey Plum makes 23-foot three point jumper (Chelsea Gray assists)
## 2261                                                       Dearica Hamby personal foul
## 2262                                               Candice Dupree misses 8-foot jumper
## 2263                                                    Jackie Young defensive rebound
## 2264                                       Jackie Young makes 20-foot pullup jump shot
## 2265                                        Sue Bird misses 25-foot three point jumper
## 2266                                                     A'ja Wilson defensive rebound
## 2267                                                 Katie Lou Samuelson shooting foul
## 2268                                               A'ja Wilson makes free throw 1 of 2
## 2269                          Stephanie Talbot enters the game for Katie Lou Samuelson
## 2270                                               A'ja Wilson makes free throw 2 of 2
## 2271                                                         Kelsey Plum personal foul
## 2272                                 Stephanie Talbot makes 24-foot step back jumpshot
## 2273                                        Jackie Young bad pass (Jewell Loyd steals)
## 2274                                                         Kelsey Plum shooting foul
## 2275                                               Jewell Loyd makes free throw 1 of 2
## 2276                                               Jewell Loyd makes free throw 2 of 2
## 2277                              Kelsey Plum makes 2-foot layup (A'ja Wilson assists)
## 2278                                             Sue Bird steps out of bounds turnover
## 2279                                        Jordin Canada enters the game for Sue Bird
## 2280                                  Riquna Williams enters the game for Chelsea Gray
## 2281                                Riquna Williams makes jumper (A'ja Wilson assists)
## 2282                            Jewell Loyd makes 1-foot layup (Jordin Canada assists)
## 2283                                 Riquna Williams misses 25-foot three point jumper
## 2284                                                 Breanna Stewart defensive rebound
## 2285                        Stephanie Talbot lost ball turnover (Dearica Hamby steals)
## 2286                                                 Kelsey Plum misses two point shot
## 2287                                                 Breanna Stewart defensive rebound
## 2288                       Candice Dupree makes 10-foot jumper (Jordin Canada assists)
## 2289                                                Jackie Young misses 19-foot jumper
## 2290                                                     Jewell Loyd defensive rebound
## 2291                                                       Dearica Hamby shooting foul
## 2292                                           Breanna Stewart makes free throw 1 of 2
## 2293                                           Breanna Stewart makes free throw 2 of 2
## 2294                                                Jackie Young misses 21-foot jumper
## 2295                                                Stephanie Talbot defensive rebound
## 2296                                Stephanie Talbot misses 24-foot three point jumper
## 2297                                                    Jackie Young defensive rebound
## 2298                                     Kelsey Plum misses 25-foot three point jumper
## 2299                                                   Jordin Canada defensive rebound
## 2300                                                Jordin Canada misses driving layup
## 2301                                                   Dearica Hamby defensive rebound
## 2302                                     A'ja Wilson makes layup (Kelsey Plum assists)
## 2303                                     Jewell Loyd misses 26-foot three point jumper
## 2304                                                   Dearica Hamby defensive rebound
## 2305                        A'ja Wilson makes 21-foot jumper (Riquna Williams assists)
## 2306                                                     Riquna Williams personal foul
## 2307                                            Jordin Canada misses free throw 1 of 2
## 2308                                                    Seattle offensive team rebound
## 2309                                       Liz Cambage enters the game for A'ja Wilson
## 2310                                            Jordin Canada misses free throw 2 of 2
## 2311                                                    Seattle offensive team rebound
## 2312                                                                              foul
## 2313                                                            End of the 3rd Quarter
## 2314                                  Ezi Magbegor enters the game for Breanna Stewart
## 2315                                    Liz Cambage makes layup (Jackie Young assists)
## 2316                               Riquna Williams blocks Jewell Loyd 's 3-foot jumper
## 2317                                                  Las Vegas defensive team rebound
## 2318                                                        Ezi Magbegor shooting foul
## 2319                                               Kelsey Plum makes free throw 1 of 2
## 2320                                  Breanna Stewart enters the game for Ezi Magbegor
## 2321                                               Kelsey Plum makes free throw 2 of 2
## 2322                                 Breanna Stewart makes layup (Jewell Loyd assists)
## 2323                                 Riquna Williams misses 26-foot three point jumper
## 2324                                                   Dearica Hamby offensive rebound
## 2325                          Liz Cambage makes 13-foot jumper (Dearica Hamby assists)
## 2326                                                  Jewell Loyd misses 6-foot jumper
## 2327                                                    Jackie Young defensive rebound
## 2328                                                          Kelsey Plum misses layup
## 2329                                                Stephanie Talbot defensive rebound
## 2330                                                     Riquna Williams shooting foul
## 2331                                           Breanna Stewart makes free throw 1 of 2
## 2332                                          Sue Bird enters the game for Jewell Loyd
## 2333                                           Breanna Stewart makes free throw 2 of 2
## 2334                                                Jackie Young misses 18-foot jumper
## 2335                                                        Sue Bird defensive rebound
## 2336                                 Breanna Stewart misses 24-foot three point jumper
## 2337                                                 Breanna Stewart offensive rebound
## 2338                            Breanna Stewart makes driving layup (Sue Bird assists)
## 2339                             Liz Cambage makes 3-foot jumper (Kelsey Plum assists)
## 2340                                          Sue Bird bad pass (Dearica Hamby steals)
## 2341                                                Dearica Hamby makes two point shot
## 2342                    Candice Dupree makes 20-foot jumper (Stephanie Talbot assists)
## 2343                                                 Dearica Hamby makes driving layup
## 2344                                                         Liz Cambage personal foul
## 2345                                          Jewell Loyd enters the game for Sue Bird
## 2346                                     Chelsea Gray enters the game for Jackie Young
## 2347                                     Jisu Park enters the game for Riquna Williams
## 2348                                       A'ja Wilson enters the game for Liz Cambage
## 2349                                   Jewell Loyd makes layup (Jordin Canada assists)
## 2350                                                    Stephanie Talbot shooting foul
## 2351                                             Dearica Hamby makes free throw 1 of 2
## 2352                          Katie Lou Samuelson enters the game for Stephanie Talbot
## 2353                                            Dearica Hamby misses free throw 2 of 2
## 2354                                             Katie Lou Samuelson defensive rebound
## 2355                                         Breanna Stewart misses three point jumper
## 2356                                                   Dearica Hamby defensive rebound
## 2357                                         A'ja Wilson misses 11-foot two point shot
## 2358                                             Katie Lou Samuelson defensive rebound
## 2359                                                                  Official timeout
## 2360                                                Jordin Canada misses driving layup
## 2361                                                       Jisu Park defensive rebound
## 2362             Chelsea Gray makes 29-foot three point jumper (Dearica Hamby assists)
## 2363              Jewell Loyd makes 25-foot three point jumper (Jordin Canada assists)
## 2364                               Kelsey Plum makes 3-foot jumper (Jisu Park assists)
## 2365                                                 Jewell Loyd misses 19-foot jumper
## 2366                                                     A'ja Wilson defensive rebound
## 2367                                                        Kelsey Plum offensive foul
## 2368                                                              Kelsey Plum turnover
## 2369                                        Sue Bird enters the game for Jordin Canada
## 2370                                                Candice Dupree makes driving layup
## 2371                                                        Dearica Hamby misses layup
## 2372                                                 Breanna Stewart defensive rebound
## 2373                                        Sue Bird misses 23-foot three point jumper
## 2374                                                     A'ja Wilson defensive rebound
## 2375                        Katie Lou Samuelson blocks Dearica Hamby 's 19-foot jumper
## 2376                                                        Sue Bird defensive rebound
## 2377                                Katie Lou Samuelson makes layup (Sue Bird assists)
## 2378                                                Kelsey Plum makes pullup jump shot
## 2379                                     Katie Lou Samuelson misses three point jumper
## 2380                                                     Jewell Loyd offensive rebound
##      score_value participants_0_athlete_id participants_1_athlete_id
## 1              0                   3913903                   4065849
## 2              0                      1014                      <NA>
## 3              0                   4065849                      <NA>
## 4              0                   4066533                      <NA>
## 5              0                   3142191                      <NA>
## 6              0                      1014                   4065849
## 7              3                   4282173                       887
## 8              0                   3142191                      <NA>
## 9              0                      1013                      <NA>
## 10             0                   3142948                      <NA>
## 11             0                      <NA>                      <NA>
## 12             3                       887                   4065849
## 13             0                   3142191                      <NA>
## 14             0                   2593770                      <NA>
## 15             0                       887                      1014
## 16             2                   3142191                      1014
## 17             2                   4065849                   4066533
## 18             2                   3142191                      <NA>
## 19             0                   3142191                      <NA>
## 20             1                   2593770                      <NA>
## 21             1                   2593770                      <NA>
## 22             0                   3142191                      <NA>
## 23             0                   3913903                      <NA>
## 24             2                   3913903                      <NA>
## 25             0                   4282173                      <NA>
## 26             0                      1014                      <NA>
## 27             2                      1014                      <NA>
## 28             0                   2593770                      1014
## 29             2                      1014                      <NA>
## 30             0                   4066533                      <NA>
## 31             0                      1013                      <NA>
## 32             2                   3913903                      1014
## 33             3                       887                   4066533
## 34             0                      1014                      <NA>
## 35             0                   2593770                      <NA>
## 36             2                   4282173                       887
## 37             0                   3913903                      <NA>
## 38             0                       887                      <NA>
## 39             0                   2593770                      <NA>
## 40             0                   3913903                      <NA>
## 41             0                   3142191                      <NA>
## 42             0                       887                      <NA>
## 43             0                      1014                      <NA>
## 44             0                      <NA>                      <NA>
## 45             0                   4068161                   4065849
## 46             0                   4065850                       887
## 47             0                   3058908                      1014
## 48             0                   2984741                      1013
## 49             0                      1002                   3142948
## 50             3                   2593770                   4282173
## 51             0                      1002                      <NA>
## 52             0                   4282173                      <NA>
## 53             0                   3913903                      <NA>
## 54             1                   4282173                      <NA>
## 55             1                   4282173                      <NA>
## 56             0                   2984741                      <NA>
## 57             0                   3913903                      <NA>
## 58             0                   3913903                      <NA>
## 59             0                   3913903                      <NA>
## 60             0                   3913903                   4065850
## 61             0                   3058908                      <NA>
## 62             0                   3142191                      <NA>
## 63             0                   4282173                      <NA>
## 64             3                   2593770                   4066533
## 65             0                   3058908                      <NA>
## 66             0                      <NA>                      <NA>
## 67             0                   4068161                      <NA>
## 68             2                   3913903                   3142191
## 69             0                   2593770                      <NA>
## 70             0                      1002                      <NA>
## 71             0                   2984741                      <NA>
## 72             0                   2984741                      <NA>
## 73             0                   4066533                      <NA>
## 74             1                   2984741                      <NA>
## 75             1                   2984741                      <NA>
## 76             0                   2490794                   4066533
## 77             0                      1013                   3142191
## 78             0                   4065820                   3913903
## 79             0                   2490794                      <NA>
## 80             0                   2490794                      <NA>
## 81             0                   2593770                      <NA>
## 82             3                      1013                   2984741
## 83             3                   2593770                   4068161
## 84             0                   2984741                      <NA>
## 85             0                   2593770                      <NA>
## 86             0                   2593770                      <NA>
## 87             0                   4065820                      <NA>
## 88             2                   4065820                      <NA>
## 89             0                   4282173                      <NA>
## 90             0                      1002                      <NA>
## 91             0                      1013                      <NA>
## 92             0                   4282173                      <NA>
## 93             0                   4068161                      1002
## 94             0                      1013                   4282173
## 95             0                      <NA>                      <NA>
## 96             0                      <NA>                      <NA>
## 97             0                       887                   4282173
## 98             0                   2566211                   2593770
## 99             0                      1002                      <NA>
## 100            0                   4065850                      <NA>
## 101            3                   4065820                   3058908
## 102            0                   2490794                      <NA>
## 103            0                   4066533                   2490794
## 104            0                   4065850                      <NA>
## 105            0                      1013                      <NA>
## 106            0                   2984741                      <NA>
## 107            0                   2984741                   4066533
## 108            0                       887                      <NA>
## 109            0                   3058908                      <NA>
## 110            2                   3058908                      <NA>
## 111            0                   4065850                      <NA>
## 112            0                   4065849                   4065850
## 113            0                   4282173                   4068161
## 114            0                   2593770                   2566211
## 115            1                   3058908                      <NA>
## 116            0                   4065849                      <NA>
## 117            0                   4065849                      <NA>
## 118            0                      1013                      <NA>
## 119            0                      1013                      <NA>
## 120            2                      1013                      <NA>
## 121            0                   4065820                      <NA>
## 122            1                   4066533                      <NA>
## 123            1                   4066533                      <NA>
## 124            0                      1013                      <NA>
## 125            0                   4065849                      <NA>
## 126            2                   2593770                   4066533
## 127            0                   2984741                      <NA>
## 128            0                   4282173                      <NA>
## 129            0                   2593770                      <NA>
## 130            0                      1002                      <NA>
## 131            0                   2984741                      <NA>
## 132            0                       887                      <NA>
## 133            0                   3142191                   4065820
## 134            0                      1014                   3058908
## 135            0                   3913903                      1013
## 136            0                   4282471                      1002
## 137            0                   3142948                   2984741
## 138            3                   4066533                   2593770
## 139            2                   3142948                      <NA>
## 140            0                   4066533                      <NA>
## 141            0                   3142191                      <NA>
## 142            0                   4282471                      <NA>
## 143            0                   4066533                      <NA>
## 144            0                   4066533                      <NA>
## 145            0                   4282173                      <NA>
## 146            0                   4282173                      <NA>
## 147            0                   3913903                      <NA>
## 148            2                   3142948                      <NA>
## 149            0                       887                      <NA>
## 150            0                   3913903                      <NA>
## 151            0                   3142948                      <NA>
## 152            0                   4066533                      <NA>
## 153            0                      1014                      <NA>
## 154            0                      <NA>                      <NA>
## 155            3                   2593770                   4066533
## 156            0                   4282471                      <NA>
## 157            0                   4282471                      <NA>
## 158            0                   3142948                      <NA>
## 159            0                      1002                   4282471
## 160            0                   4066533                      <NA>
## 161            0                   3142948                      <NA>
## 162            3                   3142191                      1014
## 163            0                   4065849                      <NA>
## 164            0                      1002                      <NA>
## 165            0                      1014                      <NA>
## 166            0                       887                      <NA>
## 167            2                   4065849                   2593770
## 168            2                   3913903                   3142191
## 169            2                   2593770                   4066533
## 170            2                      1002                      <NA>
## 171            0                       887                      <NA>
## 172            0                   3913903                      <NA>
## 173            0                   4282173                      <NA>
## 174            0                      <NA>                      <NA>
## 175            1                      1002                      <NA>
## 176            1                      1002                      <NA>
## 177            3                   4282173                   4066533
## 178            0                   3142948                      <NA>
## 179            0                      <NA>                      <NA>
## 180            0                   2593770                      <NA>
## 181            2                   3913903                      1002
## 182            0                   4065849                      <NA>
## 183            0                   4065849                      <NA>
## 184            1                   3913903                      <NA>
## 185            0                   3913903                      <NA>
## 186            0                   2593770                      <NA>
## 187            0                   4282173                      1002
## 188            0                      <NA>                      <NA>
## 189            2                   2593770                      <NA>
## 190            2                      1002                      <NA>
## 191            0                      1014                      <NA>
## 192            1                   4066533                      <NA>
## 193            0                   3058908                      1014
## 194            1                   4066533                      <NA>
## 195            0                   3913903                      <NA>
## 196            0                      <NA>                      <NA>
## 197            0                      <NA>                      <NA>
## 198            0                      1014                      1002
## 199            0                      1013                   3058908
## 200            0                   2593770                      <NA>
## 201            0                       887                      <NA>
## 202            3                   4066533                      <NA>
## 203            0                   3142191                      <NA>
## 204            0                   4066533                      <NA>
## 205            2                   4282173                   4066533
## 206            0                   3142948                      <NA>
## 207            0                   3913903                      <NA>
## 208            0                   3913903                      <NA>
## 209            0                      1013                      <NA>
## 210            2                      1013                      <NA>
## 211            0                   4065849                      <NA>
## 212            0                      1013                      <NA>
## 213            0                      1014                       887
## 214            0                   4066533                      <NA>
## 215            0                   3913903                      <NA>
## 216            0                   3913903                      <NA>
## 217            0                   4066533                      <NA>
## 218            2                   2593770                   4066533
## 219            2                   3913903                      1014
## 220            0                      1013                      <NA>
## 221            2                   4065849                   4066533
## 222            0                   2984741                   3142948
## 223            0                   3142191                      <NA>
## 224            0                      1013                      <NA>
## 225            0                      1013                      <NA>
## 226            0                   3913903                      <NA>
## 227            2                   3913903                      <NA>
## 228            0                      <NA>                      <NA>
## 229            0                   4066533                      <NA>
## 230            0                      1014                      <NA>
## 231            0                   2984741                      <NA>
## 232            0                   2984741                      <NA>
## 233            0                   3913903                      <NA>
## 234            3                   4282173                   4065849
## 235            2                   3142191                      1013
## 236            2                   4282173                      <NA>
## 237            0                      1013                      <NA>
## 238            1                   4282173                      <NA>
## 239            2                   3142191                      <NA>
## 240            0                   2593770                      <NA>
## 241            0                   3913903                      <NA>
## 242            2                   2984741                   3913903
## 243            0                   4282173                      <NA>
## 244            0                   4065850                       887
## 245            1                   2984741                      <NA>
## 246            0                   4282173                      <NA>
## 247            0                   3913903                      <NA>
## 248            0                   3142191                      <NA>
## 249            0                   4065849                      <NA>
## 250            0                   3142191                      <NA>
## 251            0                   3142191                      <NA>
## 252            0                      1013                      <NA>
## 253            2                      1014                      1013
## 254            0                   4065849                      <NA>
## 255            0                   3913903                      <NA>
## 256            0                   2984741                      <NA>
## 257            0                      1013                      <NA>
## 258            0                      1013                      <NA>
## 259            0                   4065849                      <NA>
## 260            0                   2984741                      <NA>
## 261            0                   2566211                   4065849
## 262            0                      1002                      1013
## 263            0                   4282173                      <NA>
## 264            0                      <NA>                      <NA>
## 265            0                   2566211                      <NA>
## 266            0                   4281253                   4282173
## 267            0                   3913903                      <NA>
## 268            2                   4066533                      <NA>
## 269            0                   3142191                      <NA>
## 270            0                   2593770                      <NA>
## 271            0                   2593770                      <NA>
## 272            0                      <NA>                      <NA>
## 273            0                   4065820                   3142191
## 274            0                      1002                      <NA>
## 275            0                   4281253                      <NA>
## 276            2                   2566211                   4066533
## 277            2                   2984741                      <NA>
## 278            0                   2566211                      <NA>
## 279            0                      1013                   3913903
## 280            0                   4065820                      <NA>
## 281            0                   4066533                      <NA>
## 282            0                   4065820                      <NA>
## 283            2                   2593770                      <NA>
## 284            0                      1002                      <NA>
## 285            0                   4065850                      <NA>
## 286            0                   4065850                      <NA>
## 287            0                   4065850                      <NA>
## 288            0                   4065820                      <NA>
## 289            0                      <NA>                      <NA>
## 290            0                      <NA>                      <NA>
## 291            0                      <NA>                      <NA>
## 292            2                   4066533                      <NA>
## 293            0                      1014                      <NA>
## 294            0                   2566211                      <NA>
## 295            0                   2593770                      <NA>
## 296            0                   2593770                      <NA>
## 297            0                      1014                      <NA>
## 298            0                   4066533                      <NA>
## 299            2                   2593770                      <NA>
## 300            0                      <NA>                      <NA>
## 301            0                   3913903                      1013
## 302            0                   3913903                      <NA>
## 303            0                   3913903                      <NA>
## 304            0                   4066533                      <NA>
## 305            0                   2984741                      <NA>
## 306            2                      1002                   4065820
## 307            0                   3913903                      <NA>
## 308            0                   2566211                      <NA>
## 309            0                      <NA>                      <NA>
## 310            0                   3142191                      1014
## 311            0                   3142948                   2984741
## 312            1                   2566211                      <NA>
## 313            2                   3142191                      <NA>
## 314            0                   3142191                      <NA>
## 315            0                      1013                      1002
## 316            0                   3142948                      <NA>
## 317            0                   4065850                      <NA>
## 318            0                   3142948                      <NA>
## 319            0                   3913903                   4281253
## 320            2                   4281253                      <NA>
## 321            0                   2566211                      <NA>
## 322            0                       887                   4065850
## 323            0                   4065820                      <NA>
## 324            0                      <NA>                      <NA>
## 325            0                   4066533                      <NA>
## 326            0                   4281253                      <NA>
## 327            0                       887                      <NA>
## 328            0                      <NA>                      <NA>
## 329            0                   3142191                      <NA>
## 330            0                   2566211                   3913903
## 331            0                   3913903                   2566211
## 332            0                      <NA>                      <NA>
## 333            0                   2566211                      <NA>
## 334            0                      1014                   4065820
## 335            0                      1013                      <NA>
## 336            0                   3913903                      <NA>
## 337            2                   3913903                      <NA>
## 338            0                   4281253                   3142191
## 339            2                   3142191                      <NA>
## 340            0                   4066533                      <NA>
## 341            0                      <NA>                      <NA>
## 342            0                   4282173                   2566211
## 343            0                   4065849                   4281253
## 344            1                   3142191                      <NA>
## 345            0                   4066533                      1014
## 346            2                   3142191                      <NA>
## 347            2                   4066533                      <NA>
## 348            0                   3913903                      <NA>
## 349            1                   4066533                      <NA>
## 350            0                   3913903                      <NA>
## 351            0                      1013                      <NA>
## 352            0                      1013                      <NA>
## 353            0                      <NA>                      <NA>
## 354            2                   2593770                      <NA>
## 355            0                      1014                   4065849
## 356            0                   3913903                      <NA>
## 357            2                   3913903                      <NA>
## 358            0                   4066533                      <NA>
## 359            0                   3913903                      <NA>
## 360            0                   4066533                      <NA>
## 361            0                      <NA>                      <NA>
## 362            0                   2984741                   3142948
## 363            0                   4282173                      <NA>
## 364            0                   3913903                      <NA>
## 365            0                      <NA>                      <NA>
## 366            1                   3913903                      <NA>
## 367            0                   2984741                      <NA>
## 368            0                   2593770                      <NA>
## 369            0                      <NA>                      <NA>
## 370            1                   2593770                      <NA>
## 371            2                   3913903                      1013
## 372            0                   4066533                      1014
## 373            0                      1014                      <NA>
## 374            0                      1013                      <NA>
## 375            2                      1013                      <NA>
## 376            0                   4066533                      <NA>
## 377            0                   3142191                      <NA>
## 378            2                   3142191                      <NA>
## 379            0                      <NA>                      <NA>
## 380            0                      1014                      <NA>
## 381            0                   2593770                      <NA>
## 382            0                      <NA>                      <NA>
## 383            0                   2566211                   4282173
## 384            1                   2593770                      <NA>
## 385            0                   2984741                      <NA>
## 386            0                      <NA>                      <NA>
## 387            0                      <NA>                      <NA>
## 388            0                   4065849                   3913903
## 389            0                      <NA>                      <NA>
## 390            2                   3142191                      <NA>
## 391            3                   4066533                      <NA>
## 392            0                       887                      <NA>
## 393            0                   3142191                      <NA>
## 394            0                      <NA>                      <NA>
## 395            1                   3142191                      <NA>
## 396            0                   2984741                      <NA>
## 397            1                   4066533                      <NA>
## 398            1                   4066533                      <NA>
## 399            0                      <NA>                      <NA>
## 400            0                   4281253                   4066533
## 401            0                   4065850                       887
## 402            0                   3142191                      <NA>
## 403            0                      <NA>                      <NA>
## 404            0                   4066533                   4281253
## 405            0                   4282173                   4065850
## 406            0                      1002                   3913903
## 407            3                   4066533                   4065849
## 408            0                      <NA>                      <NA>
## 409            0                   4281253                   2566211
## 410            0                   4065850                   4066533
## 411            0                      <NA>                      <NA>
## 412            0                      <NA>                      <NA>
## 413            0                   2566081                   2999101
## 414            0                   2490514                      <NA>
## 415            0                       869                      <NA>
## 416            0                      <NA>                      <NA>
## 417            0                   3058895                      <NA>
## 418            0                   2490514                      <NA>
## 419            0                   3906753                      <NA>
## 420            2                   2999101                       869
## 421            0                   2987891                      <NA>
## 422            0                       860                      <NA>
## 423            0                       860                      <NA>
## 424            0                   2529047                      <NA>
## 425            0                   2529047                      <NA>
## 426            0                   2566081                      <NA>
## 427            2                   2566081                      <NA>
## 428            0                   4280892                      <NA>
## 429            1                   2999101                      <NA>
## 430            1                   2999101                      <NA>
## 431            0                   3906753                      <NA>
## 432            0                   2987891                   3058895
## 433            2                   2999101                   3058895
## 434            0                   3906753                      <NA>
## 435            1                   4280892                      <NA>
## 436            0                   4065780                   3906753
## 437            1                   4280892                      <NA>
## 438            0                   2999101                      <NA>
## 439            3                   2529047                   2987891
## 440            0                   4280892                      <NA>
## 441            0                   4066553                   2566081
## 442            0                   3142255                   4280892
## 443            0                   3142255                      <NA>
## 444            0                   4066553                      <NA>
## 445            2                       869                   2999101
## 446            0                   4065780                      <NA>
## 447            1                   2529047                      <NA>
## 448            1                   2529047                      <NA>
## 449            3                   2999101                   4065780
## 450            0                   3058895                      <NA>
## 451            1                   3142255                      <NA>
## 452            0                      1110                   2490514
## 453            0                   3916517                   3058895
## 454            1                   3142255                      <NA>
## 455            0                       869                      <NA>
## 456            0                   4065780                      <NA>
## 457            2                   2999101                   4065780
## 458            0                   2987891                      <NA>
## 459            0                   2999101                      <NA>
## 460            2                   2999101                      <NA>
## 461            0                      1110                      <NA>
## 462            0                      <NA>                      <NA>
## 463            0                   2999101                      <NA>
## 464            0                   4066553                      <NA>
## 465            0                   3142255                   4065780
## 466            0                   2999101                   3142255
## 467            0                   3142255                      <NA>
## 468            0                       860                      <NA>
## 469            1                   3142255                      <NA>
## 470            1                   3142255                      <NA>
## 471            0                      1110                      <NA>
## 472            0                   3916517                      <NA>
## 473            0                      <NA>                      <NA>
## 474            0                   3916517                      <NA>
## 475            0                   3142255                      <NA>
## 476            2                   2987891                   4066553
## 477            0                   4066553                      <NA>
## 478            1                       869                      <NA>
## 479            1                       869                      <NA>
## 480            0                   2987891                      <NA>
## 481            0                   4065780                      <NA>
## 482            0                   2999101                   3142255
## 483            0                   2529047                      <NA>
## 484            2                   2999101                       869
## 485            0                      1110                      <NA>
## 486            0                       860                      <NA>
## 487            2                   3916517                   2999101
## 488            0                      <NA>                      <NA>
## 489            0                   2566081                   4066553
## 490            0                   2490514                   3142255
## 491            0                   4280892                      1110
## 492            0                   4066548                       869
## 493            0                   2529047                   3916517
## 494            0                   4066548                   2490514
## 495            0                   2566081                      <NA>
## 496            0                   2999101                      <NA>
## 497            0                   4065780                      <NA>
## 498            0                      <NA>                      <NA>
## 499            0                   2987891                      <NA>
## 500            0                   2999101                      <NA>
## 501            0                      <NA>                      <NA>
## 502            0                   4066553                   2529047
## 503            0                   3906753                       860
## 504            1                   2999101                      <NA>
## 505            2                   2566081                   4280892
## 506            0                   2999101                      <NA>
## 507            0                   4065780                      <NA>
## 508            0                   4065780                      <NA>
## 509            0                   3916517                      <NA>
## 510            0                   3916517                   2987891
## 511            0                      <NA>                      <NA>
## 512            0                   4280892                      <NA>
## 513            0                      <NA>                      <NA>
## 514            0                      <NA>                      <NA>
## 515            0                   3058895                   3916517
## 516            0                   4065785                   2999101
## 517            0                   2490514                      <NA>
## 518            1                   3058895                      <NA>
## 519            1                   3058895                      <NA>
## 520            0                   2987891                      <NA>
## 521            0                   3906753                      <NA>
## 522            0                   4065780                      <NA>
## 523            0                   4066548                      <NA>
## 524            0                   4066548                   4066553
## 525            2                   2490514                   2987891
## 526            0                   4065780                   2566081
## 527            0                   4280892                      <NA>
## 528            0                   4065780                      <NA>
## 529            3                   3906753                   4065780
## 530            0                   4280892                      <NA>
## 531            0                   2529047                   2987891
## 532            0                       869                   4065780
## 533            0                   4066553                      <NA>
## 534            1                   3906753                      <NA>
## 535            0                   3906753                      <NA>
## 536            0                      <NA>                      <NA>
## 537            0                   2591976                   4066553
## 538            1                   3906753                      <NA>
## 539            0                   2529047                      <NA>
## 540            0                       869                      <NA>
## 541            0                       869                      <NA>
## 542            0                   3058895                      <NA>
## 543            2                   3058895                      <NA>
## 544            2                   4280892                      <NA>
## 545            0                       869                      <NA>
## 546            0                   2591976                      <NA>
## 547            2                   2529047                   2591976
## 548            2                   4065785                   3906753
## 549            0                   2529047                      <NA>
## 550            0                   4065785                      <NA>
## 551            0                   3906753                      <NA>
## 552            0                   3142255                   2566081
## 553            0                   2987891                   4280892
## 554            0                       860                   4066548
## 555            2                   2490514                   2591976
## 556            3                       860                   3906753
## 557            2                   2490514                   2529047
## 558            0                   3058895                      <NA>
## 559            0                       860                      <NA>
## 560            0                   3058895                   3142255
## 561            0                   2591976                      <NA>
## 562            0                   2987891                      <NA>
## 563            0                   3906753                      <NA>
## 564            2                   3058895                       869
## 565            0                   2490514                      <NA>
## 566            0                      <NA>                      <NA>
## 567            0                   3058895                      <NA>
## 568            0                      <NA>                      <NA>
## 569            0                   2999101                   3058895
## 570            0                      <NA>                      <NA>
## 571            0                       869                   2987891
## 572            0                   2987891                      <NA>
## 573            0                       869                      <NA>
## 574            0                       860                      <NA>
## 575            0                   3142255                      <NA>
## 576            0                   2999101                      <NA>
## 577            0                       860                      <NA>
## 578            0                   2490514                       869
## 579            0                   2490514                      <NA>
## 580            2                   2490514                      <NA>
## 581            0                   3906753                      <NA>
## 582            0                   2591976                      <NA>
## 583            0                   3142255                      <NA>
## 584            0                       869                      <NA>
## 585            0                      <NA>                      <NA>
## 586            0                   4280892                   2529047
## 587            0                   2999101                   2987891
## 588            0                   3142255                   2999101
## 589            2                   4065785                   2999101
## 590            0                   2490514                      <NA>
## 591            0                   3906753                      <NA>
## 592            0                   2987891                      <NA>
## 593            0                       860                      <NA>
## 594            0                   2591976                      <NA>
## 595            0                   4280892                      <NA>
## 596            0                   4065785                      <NA>
## 597            3                       869                       860
## 598            0                      <NA>                      <NA>
## 599            0                   4280892                   3906753
## 600            0                       869                   2591976
## 601            0                   2591976                      <NA>
## 602            0                      <NA>                      <NA>
## 603            0                   2999101                      <NA>
## 604            2                   4280892                   2987891
## 605            0                   2999101                   2490514
## 606            0                       860                      <NA>
## 607            1                   2987891                      <NA>
## 608            1                   2987891                      <NA>
## 609            0                      <NA>                      <NA>
## 610            0                   2566081                   2591976
## 611            0                   2529047                   3142255
## 612            0                   3058895                   4065785
## 613            0                   3906753                   2529047
## 614            0                   4280892                      <NA>
## 615            0                   3906753                      <NA>
## 616            0                   3058895                      <NA>
## 617            0                   2566081                      <NA>
## 618            0                   4280892                   3906753
## 619            0                   3906753                      <NA>
## 620            0                   3906753                      <NA>
## 621            0                   2490514                      <NA>
## 622            0                   2529047                      <NA>
## 623            0                   2529047                      <NA>
## 624            0                       860                      <NA>
## 625            3                       860                      <NA>
## 626            2                   2529047                      <NA>
## 627            0                   4280892                      <NA>
## 628            0                   2999101                      <NA>
## 629            0                      <NA>                      <NA>
## 630            1                   2999101                      <NA>
## 631            2                   4280892                      <NA>
## 632            0                   3058895                   2566081
## 633            0                   2566081                      <NA>
## 634            0                       860                      <NA>
## 635            0                   2529047                      <NA>
## 636            0                      <NA>                      <NA>
## 637            1                   2529047                      <NA>
## 638            0                   2999101                   2566081
## 639            2                   2529047                      <NA>
## 640            0                   3058895                      <NA>
## 641            0                      <NA>                      <NA>
## 642            0                   4280892                      <NA>
## 643            0                   3058895                      <NA>
## 644            0                       869                   4280892
## 645            0                   2987891                      <NA>
## 646            3                       869                       860
## 647            0                   2566081                      <NA>
## 648            0                   2566081                      <NA>
## 649            0                       869                      <NA>
## 650            0                   3906753                      <NA>
## 651            0                       860                      <NA>
## 652            0                   2566081                      <NA>
## 653            0                   4280892                      <NA>
## 654            0                   2999101                      <NA>
## 655            3                   3906753                   3058895
## 656            0                      <NA>                      <NA>
## 657            0                   2490514                      <NA>
## 658            0                   3906753                      <NA>
## 659            0                   3906753                      <NA>
## 660            0                   2529047                      <NA>
## 661            0                   2529047                      <NA>
## 662            0                      1110                   2490514
## 663            0                   4066553                   2566081
## 664            0                   3142255                   2529047
## 665            0                   3058895                      <NA>
## 666            0                   3058895                      <NA>
## 667            2                   3058895                      <NA>
## 668            0                   4066553                      <NA>
## 669            0                       869                      <NA>
## 670            0                   2999101                      <NA>
## 671            0                   4066553                      <NA>
## 672            0                   4280892                      <NA>
## 673            0                      <NA>                      <NA>
## 674            0                   3058895                      <NA>
## 675            0                   2999101                      <NA>
## 676            0                   2999101                   3142255
## 677            0                   2999101                      <NA>
## 678            2                   2999101                      <NA>
## 679            2                   2987891                      <NA>
## 680            0                       860                   3142255
## 681            2                   3142255                      <NA>
## 682            0                   2999101                      <NA>
## 683            0                   2999101                      <NA>
## 684            2                   2999101                      <NA>
## 685            0                   4280892                   3058895
## 686            0                   2987891                      <NA>
## 687            1                       869                      <NA>
## 688            0                   2490514                   4280892
## 689            0                   4065780                       860
## 690            0                   3916517                   2999101
## 691            1                       869                      <NA>
## 692            3                   2987891                   2490514
## 693            0                      1110                      <NA>
## 694            0                       869                      <NA>
## 695            0                      <NA>                      <NA>
## 696            1                       869                      <NA>
## 697            2                   2987891                   2490514
## 698            0                   3906753                      <NA>
## 699            0                      <NA>                      <NA>
## 700            0                      <NA>                      <NA>
## 701            0                      1110                      <NA>
## 702            0                   3142255                      <NA>
## 703            0                   2987891                      <NA>
## 704            0                   3916517                      <NA>
## 705            0                       869                   3142255
## 706            0                      1110                      <NA>
## 707            0                   2987891                      <NA>
## 708            0                   4066553                      <NA>
## 709            0                       869                      <NA>
## 710            3                       869                      <NA>
## 711            0                   3916517                      <NA>
## 712            1                   3142255                      <NA>
## 713            1                   3142255                      <NA>
## 714            0                   3916517                   4066553
## 715            0                   4065780                      <NA>
## 716            0                   3142255                      <NA>
## 717            0                       869                      <NA>
## 718            2                       869                   3906753
## 719            0                   3142255                      <NA>
## 720            0                   3916517                      <NA>
## 721            0                   3058895                   2490514
## 722            0                      <NA>                      <NA>
## 723            0                   2566081                   3142255
## 724            0                   2999101                   3058895
## 725            0                   2490514                      <NA>
## 726            2                   3916517                       869
## 727            0                   4066553                      <NA>
## 728            0                   2999101                      <NA>
## 729            0                   3906753                      <NA>
## 730            0                   2987891                      <NA>
## 731            0                   4066553                      <NA>
## 732            0                      <NA>                      <NA>
## 733            0                       860                   4065780
## 734            0                   2566081                      <NA>
## 735            0                   3906753                      <NA>
## 736            0                      <NA>                      <NA>
## 737            0                   2529047                   4066553
## 738            1                   3906753                      <NA>
## 739            2                   2566081                   2490514
## 740            3                   2999101                       860
## 741            0                   3906753                      <NA>
## 742            0                      <NA>                      <NA>
## 743            0                   4280892                      1110
## 744            0                   4066548                   3916517
## 745            0                   4065785                   3906753
## 746            0                       860                      <NA>
## 747            3                   2987891                   2529047
## 748            0                       869                      <NA>
## 749            0                   2529047                      <NA>
## 750            0                   2987891                       869
## 751            0                   2987891                      <NA>
## 752            0                       869                   2490514
## 753            0                   2987891                       869
## 754            0                       860                      <NA>
## 755            0                   2999101                      <NA>
## 756            0                   4065785                      <NA>
## 757            0                   2529047                      <NA>
## 758            0                   2987891                      <NA>
## 759            0                   2987891                       869
## 760            0                       869                      <NA>
## 761            2                   2999101                       869
## 762            0                      <NA>                      <NA>
## 763            0                   4282158                   4065785
## 764            0                   2490514                      <NA>
## 765            0                   4280892                      <NA>
## 766            2                   2490514                   4280892
## 767            0                       869                      <NA>
## 768            0                   3142255                   2566081
## 769            1                   2490514                      <NA>
## 770            0                       860                      <NA>
## 771            0                      <NA>                      <NA>
## 772            0                      <NA>                      <NA>
## 773            0                   2591976                   2490514
## 774            2                   4280892                      <NA>
## 775            3                       869                   4282158
## 776            2                   2529047                   2987891
## 777            0                   4066548                      <NA>
## 778            0                   2591976                      <NA>
## 779            0                       869                      <NA>
## 780            1                   2591976                      <NA>
## 781            0                   4066553                   2987891
## 782            0                   3916517                       860
## 783            0                   4065785                       869
## 784            0                   4065780                   2999101
## 785            1                   2591976                      <NA>
## 786            0                   4066548                      <NA>
## 787            0                   4066548                      <NA>
## 788            0                   4282158                      <NA>
## 789            1                   4066553                      <NA>
## 790            0                   4066553                      <NA>
## 791            0                   4066548                      <NA>
## 792            0                   4065785                   3142255
## 793            0                   3142255                      <NA>
## 794            0                   4066548                      <NA>
## 795            1                   2591976                      <NA>
## 796            0                   2591976                      <NA>
## 797            0                   4065780                      <NA>
## 798            0                      <NA>                      <NA>
## 799            0                      <NA>                      <NA>
## 800            0                       766                   2490553
## 801            2                       766                   2955898
## 802            0                   2490553                   4066585
## 803            2                   4066585                      <NA>
## 804            0                   2491205                      <NA>
## 805            0                   2955898                      <NA>
## 806            0                       766                   2490553
## 807            0                      <NA>                      <NA>
## 808            0                   3142086                       766
## 809            0                       766                      <NA>
## 810            0                   2999035                   2490553
## 811            0                       585                      <NA>
## 812            0                       585                      <NA>
## 813            0                   2999035                      <NA>
## 814            0                   2999035                      <NA>
## 815            0                       585                      <NA>
## 816            0                   3142327                      <NA>
## 817            0                   2999035                      <NA>
## 818            0                   4066585                      <NA>
## 819            0                       585                      <NA>
## 820            2                   2491205                       585
## 821            2                   2529205                   4066585
## 822            0                       585                       766
## 823            0                       766                      <NA>
## 824            0                   3142086                      <NA>
## 825            0                   2999035                      <NA>
## 826            1                   3142327                      <NA>
## 827            0                   2529203                   2999035
## 828            0                   3906972                   2955898
## 829            0                   3142327                      <NA>
## 830            0                      <NA>                      <NA>
## 831            0                       585                      <NA>
## 832            0                      <NA>                      <NA>
## 833            0                       766                      <NA>
## 834            0                       585                      <NA>
## 835            0                   2529203                      <NA>
## 836            2                       585                   2490553
## 837            0                   4066585                      <NA>
## 838            0                   2491205                      <NA>
## 839            2                   2491205                      <NA>
## 840            0                   2529205                      <NA>
## 841            0                       585                      <NA>
## 842            0                       585                      <NA>
## 843            0                      <NA>                      <NA>
## 844            0                      <NA>                      <NA>
## 845            0                   2566186                   4066585
## 846            0                   3906949                       766
## 847            0                   3907781                       585
## 848            0                   3906972                      <NA>
## 849            0                   3142327                      <NA>
## 850            0                   2491205                      <NA>
## 851            0                   3142086                      <NA>
## 852            0                   3907781                      <NA>
## 853            0                   2529205                      <NA>
## 854            0                   2529203                      <NA>
## 855            0                      <NA>                      <NA>
## 856            0                   2566186                      <NA>
## 857            0                   2491205                      <NA>
## 858            2                   2490553                   2491205
## 859            0                   2529203                      <NA>
## 860            0                   2529203                      <NA>
## 861            0                       766                   2529203
## 862            0                       585                   2491205
## 863            0                   3142327                      <NA>
## 864            0                   3906949                      <NA>
## 865            3                   2529205                      <NA>
## 866            0                   3142086                      <NA>
## 867            0                       766                      <NA>
## 868            0                   3906972                      <NA>
## 869            0                   2490553                      <NA>
## 870            2                   3142086                       585
## 871            0                       766                      <NA>
## 872            0                       766                      <NA>
## 873            0                      1107                   3142327
## 874            0                   3913881                   3142086
## 875            0                       585                      <NA>
## 876            0                      <NA>                      <NA>
## 877            0                   3913881                      <NA>
## 878            0                       766                      <NA>
## 879            0                   2490553                      <NA>
## 880            0                   3907781                      <NA>
## 881            0                      <NA>                      <NA>
## 882            0                   3913881                      <NA>
## 883            0                   2566452                   3913881
## 884            0                       766                      <NA>
## 885            0                   2566452                      <NA>
## 886            0                   2490553                      <NA>
## 887            0                       766                      <NA>
## 888            0                      <NA>                      <NA>
## 889            0                   4066585                   2566186
## 890            1                       766                      <NA>
## 891            0                   3906972                      <NA>
## 892            0                   2529205                      <NA>
## 893            1                       585                      <NA>
## 894            0                       585                      <NA>
## 895            0                   2490553                      <NA>
## 896            0                       585                      <NA>
## 897            0                       766                      <NA>
## 898            0                   4066585                      <NA>
## 899            0                      <NA>                      <NA>
## 900            2                   2490553                   2566452
## 901            0                   4066585                      <NA>
## 902            0                   2490553                      <NA>
## 903            0                      <NA>                      <NA>
## 904            0                   2999035                   3906949
## 905            0                   2955898                   2529205
## 906            0                   2491205                   3907781
## 907            0                   2491205                      <NA>
## 908            0                   2566452                      <NA>
## 909            2                   2490553                   2566452
## 910            0                   3906972                      1107
## 911            2                   2566452                   2491205
## 912            0                      <NA>                      <NA>
## 913            0                   2566186                   3906972
## 914            0                       766                      <NA>
## 915            0                   2955898                      <NA>
## 916            0                   2955898                   2566452
## 917            2                   2491205                      1107
## 918            2                   2999035                      <NA>
## 919            0                   2490553                      <NA>
## 920            0                   2955898                      <NA>
## 921            0                   2955898                      <NA>
## 922            0                   2490553                      <NA>
## 923            0                   2491205                      <NA>
## 924            0                   2566452                      <NA>
## 925            0                      1107                      <NA>
## 926            0                      <NA>                      <NA>
## 927            0                   2529205                   2566186
## 928            0                   3142086                   2490553
## 929            2                       766                   2955898
## 930            0                   2566452                      <NA>
## 931            0                   2529205                      <NA>
## 932            0                   2566452                      <NA>
## 933            1                   2529205                      <NA>
## 934            0                   3142327                       585
## 935            1                   2529205                      <NA>
## 936            0                   3142327                      <NA>
## 937            0                   3142086                      <NA>
## 938            0                   2490553                   2566452
## 939            0                   2999035                      <NA>
## 940            0                   2490553                      <NA>
## 941            0                   4066585                      <NA>
## 942            2                   2491205                   2490553
## 943            0                   2529205                      <NA>
## 944            0                   3142086                      <NA>
## 945            2                   3142327                      <NA>
## 946            2                   4066585                      <NA>
## 947            3                      1107                   2491205
## 948            0                   4066585                      <NA>
## 949            0                   3142086                      <NA>
## 950            2                   3142327                      <NA>
## 951            0                      <NA>                      <NA>
## 952            0                   2529203                       766
## 953            2                   2529205                   4066585
## 954            0                   3142086                      <NA>
## 955            0                   3142086                      <NA>
## 956            0                   2955898                      <NA>
## 957            0                   2490553                      <NA>
## 958            0                   4066585                      <NA>
## 959            0                   3142327                      <NA>
## 960            0                   2529205                      <NA>
## 961            0                   2529203                      <NA>
## 962            0                      1107                      <NA>
## 963            0                   2491205                      <NA>
## 964            0                   2955898                      <NA>
## 965            0                   2999035                      <NA>
## 966            0                   2955898                      <NA>
## 967            2                   2999035                   2955898
## 968            0                   2490553                      <NA>
## 969            0                       585                      1107
## 970            0                   2999035                   2490553
## 971            0                   3142327                      <NA>
## 972            0                   3142327                   2529205
## 973            0                   2529205                      <NA>
## 974            0                   2999035                      <NA>
## 975            0                   2955898                      <NA>
## 976            2                   2955898                      <NA>
## 977            0                      <NA>                      <NA>
## 978            0                   3906972                   2999035
## 979            2                   2490553                       585
## 980            0                   2529205                      <NA>
## 981            0                   2490553                      <NA>
## 982            0                   2491205                      <NA>
## 983            0                   3142086                      <NA>
## 984            0                   2491205                      <NA>
## 985            0                   2529205                      <NA>
## 986            0                   3142086                      <NA>
## 987            0                   2490553                      <NA>
## 988            0                   2490553                      <NA>
## 989            2                   2490553                      <NA>
## 990            0                      <NA>                      <NA>
## 991            0                   2999035                   2529203
## 992            0                       766                   3906972
## 993            2                   2490553                       585
## 994            3                   2955898                   2999035
## 995            0                   3142327                      <NA>
## 996            0                   3142327                      <NA>
## 997            0                   2490553                      <NA>
## 998            3                   2999035                      <NA>
## 999            0                       766                      <NA>
## 1000           1                       585                      <NA>
## 1001           1                       585                      <NA>
## 1002           0                   2955898                      <NA>
## 1003           0                   2999035                      <NA>
## 1004           3                   4066585                   2999035
## 1005           2                   2491205                      <NA>
## 1006           0                   2999035                      <NA>
## 1007           0                   3142327                   2999035
## 1008           0                   2999035                      <NA>
## 1009           0                       585                      <NA>
## 1010           1                   2999035                      <NA>
## 1011           1                   2999035                      <NA>
## 1012           0                   2491205                      <NA>
## 1013           0                       766                      <NA>
## 1014           2                       766                   4066585
## 1015           0                      <NA>                      <NA>
## 1016           0                   3142327                       766
## 1017           0                       766                      <NA>
## 1018           0                   2490553                      <NA>
## 1019           0                   2529205                      <NA>
## 1020           2                   4066585                       766
## 1021           0                       766                      <NA>
## 1022           0                       585                      <NA>
## 1023           0                   2999035                      <NA>
## 1024           2                   2999035                      <NA>
## 1025           2                   2491205                      <NA>
## 1026           0                   2955898                      <NA>
## 1027           0                   2955898                      <NA>
## 1028           0                   2529203                       766
## 1029           0                   2529203                      <NA>
## 1030           1                   2491205                      <NA>
## 1031           0                   2491205                      <NA>
## 1032           0                   2490553                      <NA>
## 1033           2                   3142327                      <NA>
## 1034           2                   2999035                      <NA>
## 1035           0                   2490553                      <NA>
## 1036           1                   2999035                      <NA>
## 1037           3                       585                      <NA>
## 1038           0                   2529205                      <NA>
## 1039           0                      <NA>                      <NA>
## 1040           0                   3906972                   2999035
## 1041           0                   2566452                       585
## 1042           0                      1107                   2490553
## 1043           2                   4066585                   2529205
## 1044           0                      1107                      <NA>
## 1045           0                   4066585                      <NA>
## 1046           0                   2491205                      <NA>
## 1047           3                   2491205                      1107
## 1048           0                   2491205                      <NA>
## 1049           2                   2955898                   2529203
## 1050           0                      1107                      <NA>
## 1051           0                   2529203                      <NA>
## 1052           0                   2529203                   3142327
## 1053           0                   3142327                      <NA>
## 1054           0                   3142086                      <NA>
## 1055           0                   2955898                      <NA>
## 1056           0                   3142086                      <NA>
## 1057           0                      <NA>                      <NA>
## 1058           0                       766                   2955898
## 1059           0                   2490553                   2566452
## 1060           1                   3142086                      <NA>
## 1061           2                   2529205                       766
## 1062           0                   2490553                      <NA>
## 1063           0                       766                      <NA>
## 1064           0                   3906972                      <NA>
## 1065           0                   2490553                      <NA>
## 1066           0                   2999035                   4066585
## 1067           0                   2566186                   2529205
## 1068           0                       585                   2491205
## 1069           0                   2490553                      <NA>
## 1070           0                   2529203                      <NA>
## 1071           0                   3142327                      <NA>
## 1072           1                   2529203                      <NA>
## 1073           1                   2529203                      <NA>
## 1074           2                   3142086                       585
## 1075           0                       766                      <NA>
## 1076           0                   3142327                      <NA>
## 1077           0                   2529203                      <NA>
## 1078           1                   3142327                      <NA>
## 1079           0                   2955898                   2529203
## 1080           0                   3142327                      <NA>
## 1081           0                   3906972                      <NA>
## 1082           0                   3906972                      <NA>
## 1083           0                   3906972                      <NA>
## 1084           2                   2490553                   3142086
## 1085           2                   2999035                   2955898
## 1086           0                       585                      <NA>
## 1087           0                       766                      <NA>
## 1088           0                      <NA>                      <NA>
## 1089           0                   2529205                   3906972
## 1090           0                   2491205                   3142327
## 1091           0                   2491205                      <NA>
## 1092           0                   2999035                      <NA>
## 1093           0                       585                      <NA>
## 1094           0                   3142086                   2999035
## 1095           0                      <NA>                      <NA>
## 1096           0                   2999035                       585
## 1097           0                   2999035                       585
## 1098           0                      <NA>                      <NA>
## 1099           3                   2566186                   2999035
## 1100           0                   3142327                      1107
## 1101           0                   2566186                      <NA>
## 1102           1                       585                      <NA>
## 1103           1                       585                      <NA>
## 1104           0                       766                   2491205
## 1105           2                   2491205                      <NA>
## 1106           0                   2999035                   3142327
## 1107           2                   3142086                   3142327
## 1108           0                      <NA>                      <NA>
## 1109           0                   4066585                   2566186
## 1110           0                   2955898                   3142086
## 1111           0                       585                      <NA>
## 1112           0                   3142086                   2529205
## 1113           0                      <NA>                      <NA>
## 1114           0                   2955898                      <NA>
## 1115           0                   3142086                      <NA>
## 1116           0                   2491205                      <NA>
## 1117           0                   3142086                      <NA>
## 1118           2                   3142086                      <NA>
## 1119           0                       585                      <NA>
## 1120           0                   2955898                   3142086
## 1121           0                      <NA>                      <NA>
## 1122           2                   2529205                   4066585
## 1123           0                   2999035                      <NA>
## 1124           0                   2491205                      <NA>
## 1125           0                       766                      <NA>
## 1126           0                   4066585                       585
## 1127           0                       585                      <NA>
## 1128           0                   3142327                       766
## 1129           0                      <NA>                      <NA>
## 1130           0                   2491205                       766
## 1131           0                   2529205                       585
## 1132           0                      <NA>                      <NA>
## 1133           2                   4066585                   2529205
## 1134           2                   3142086                   3142327
## 1135           0                       585                      <NA>
## 1136           0                       766                      <NA>
## 1137           0                       766                      <NA>
## 1138           2                       766                      <NA>
## 1139           0                       585                   4066585
## 1140           0                   3142086                      <NA>
## 1141           1                   2529205                      <NA>
## 1142           1                   2529205                      <NA>
## 1143           0                       585                      <NA>
## 1144           0                       766                      <NA>
## 1145           0                   2999035                      <NA>
## 1146           0                   2999035                      <NA>
## 1147           0                       585                      <NA>
## 1148           0                       766                      <NA>
## 1149           0                   4066585                      <NA>
## 1150           0                   3142327                      <NA>
## 1151           2                   3142086                   2491205
## 1152           2                   4066585                      <NA>
## 1153           0                       766                      <NA>
## 1154           1                       585                      <NA>
## 1155           0                   2529203                       766
## 1156           0                       585                      <NA>
## 1157           0                   2999035                      <NA>
## 1158           0                   2529203                   3142086
## 1159           0                   3142086                      <NA>
## 1160           0                   2491205                      <NA>
## 1161           0                   2529205                      <NA>
## 1162           2                   4066585                      <NA>
## 1163           0                   3142327                      <NA>
## 1164           0                   2529203                      <NA>
## 1165           0                   4066585                      <NA>
## 1166           0                   2490553                      <NA>
## 1167           2                   3142327                   2490553
## 1168           0                   2529203                      <NA>
## 1169           0                      <NA>                      <NA>
## 1170           0                       766                   2529203
## 1171           0                   3142327                      <NA>
## 1172           0                   4066585                      <NA>
## 1173           2                   2999035                      <NA>
## 1174           0                   2491205                      <NA>
## 1175           0                   3142327                      <NA>
## 1176           0                       585                      <NA>
## 1177           0                   2955898                      <NA>
## 1178           0                   2490553                      <NA>
## 1179           1                   2529205                      <NA>
## 1180           1                   2529205                      <NA>
## 1181           2                   2490553                   2491205
## 1182           0                      <NA>                      <NA>
## 1183           0                   2999035                      <NA>
## 1184           0                       766                      <NA>
## 1185           2                       766                      <NA>
## 1186           0                      <NA>                      <NA>
## 1187           0                   2999035                      <NA>
## 1188           0                   2490553                      <NA>
## 1189           0                      <NA>                      <NA>
## 1190           1                   2490553                      <NA>
## 1191           0                      <NA>                      <NA>
## 1192           0                   4066585                   3142086
## 1193           3                       585                      <NA>
## 1194           0                      <NA>                      <NA>
## 1195           0                      <NA>                      <NA>
## 1196           0                      <NA>                      <NA>
## 1197           0                      1068                   3058901
## 1198           2                      1068                   2491214
## 1199           0                   3904577                      <NA>
## 1200           0                   2988756                      <NA>
## 1201           0                   2529622                      <NA>
## 1202           0                   3058901                      <NA>
## 1203           0                   2988756                      <NA>
## 1204           0                   2491214                      <NA>
## 1205           0                   4398988                      <NA>
## 1206           0                   2998927                      <NA>
## 1207           2                   2491214                      <NA>
## 1208           0                   3904577                   2988756
## 1209           0                       856                      <NA>
## 1210           0                   2529622                      <NA>
## 1211           3                   2998927                   2529622
## 1212           2                   2988756                      <NA>
## 1213           2                   4398988                   3058901
## 1214           2                   2529950                       856
## 1215           0                   3058901                      <NA>
## 1216           0                   2529950                      <NA>
## 1217           3                       856                      <NA>
## 1218           0                      <NA>                      <NA>
## 1219           0                   2566453                   4398988
## 1220           0                   3058901                       856
## 1221           0                   2988756                      <NA>
## 1222           0                   2566453                      <NA>
## 1223           0                   2566453                      <NA>
## 1224           0                   2566453                      <NA>
## 1225           0                   3907789                   2529950
## 1226           0                   3054590                   2491214
## 1227           0                   4065760                   2998927
## 1228           0                   3904576                   3058901
## 1229           0                   3054590                      <NA>
## 1230           0                      1068                   2566453
## 1231           0                      <NA>                      <NA>
## 1232           2                       856                      <NA>
## 1233           0                       856                      <NA>
## 1234           2                   2566453                   4065760
## 1235           0                   3904577                      <NA>
## 1236           0                   3907789                      <NA>
## 1237           0                      <NA>                      <NA>
## 1238           1                   3907789                      <NA>
## 1239           0                   3904576                   3907789
## 1240           2                      1068                       856
## 1241           0                   3904577                      <NA>
## 1242           0                   3904577                      <NA>
## 1243           0                   2999140                       856
## 1244           0                   4398988                   2529622
## 1245           0                   3058901                   3904577
## 1246           0                      1068                   4398988
## 1247           0                   3907789                      <NA>
## 1248           0                   4065832                   2988756
## 1249           0                   2566453                      <NA>
## 1250           0                      1068                      <NA>
## 1251           0                   4065832                      <NA>
## 1252           2                   2566453                   3904576
## 1253           2                      1068                   2999140
## 1254           3                   3904576                   4065760
## 1255           0                   2999140                      <NA>
## 1256           0                   3904576                      <NA>
## 1257           0                   3904576                   3907789
## 1258           0                   3907789                      <NA>
## 1259           0                   4398988                      <NA>
## 1260           2                   3058901                      <NA>
## 1261           0                   3054590                      <NA>
## 1262           0                   2529950                      1068
## 1263           1                   3058901                      <NA>
## 1264           0                   2529950                      <NA>
## 1265           0                   2566453                      <NA>
## 1266           3                   3904576                   4065760
## 1267           0                   4065832                      <NA>
## 1268           0                      <NA>                      <NA>
## 1269           0                   4065760                   2999140
## 1270           0                   3907789                      <NA>
## 1271           0                   3054590                      <NA>
## 1272           2                   3054590                      <NA>
## 1273           0                   2566453                      <NA>
## 1274           3                   2529950                   3907789
## 1275           0                   3058901                   3054590
## 1276           0                   2529950                      <NA>
## 1277           0                   2529950                      <NA>
## 1278           2                   3904576                      <NA>
## 1279           0                   2566453                      <NA>
## 1280           1                   2999140                      <NA>
## 1281           0                   2988756                   3907789
## 1282           1                   2999140                      <NA>
## 1283           0                   4398988                   4065832
## 1284           0                   3054590                      <NA>
## 1285           0                   2529950                      <NA>
## 1286           2                   2529950                      <NA>
## 1287           0                   4065760                      <NA>
## 1288           0                      <NA>                      <NA>
## 1289           0                      <NA>                      <NA>
## 1290           0                   4068178                   2988756
## 1291           0                   2998927                   2566453
## 1292           0                   2529622                   4065760
## 1293           0                   2491214                   3054590
## 1294           1                   3058901                      <NA>
## 1295           2                   3058901                      <NA>
## 1296           0                   2529950                      <NA>
## 1297           0                   3054590                   4065832
## 1298           0                   3054590                   3058901
## 1299           0                   3904577                   3904576
## 1300           0                   3054590                      <NA>
## 1301           1                   2529622                      <NA>
## 1302           1                   2529622                      <NA>
## 1303           0                   4068178                      <NA>
## 1304           0                   3058901                      <NA>
## 1305           0                   2491214                      <NA>
## 1306           1                   3904577                      <NA>
## 1307           1                   3904577                      <NA>
## 1308           1                   3904577                      <NA>
## 1309           0                   3054590                      <NA>
## 1310           0                   2529622                   4068178
## 1311           0                   2999140                      <NA>
## 1312           0                   3054590                      <NA>
## 1313           2                   3054590                      <NA>
## 1314           0                   2999140                      <NA>
## 1315           1                   3058901                      <NA>
## 1316           1                   3058901                      <NA>
## 1317           2                   4068178                   2529950
## 1318           0                   3904577                   2999140
## 1319           0                   4398988                      <NA>
## 1320           0                   4065760                   2998927
## 1321           0                      1068                   3054590
## 1322           0                   2491214                      <NA>
## 1323           0                   3058901                      <NA>
## 1324           0                   3058901                      <NA>
## 1325           0                      <NA>                      <NA>
## 1326           0                       856                   2999140
## 1327           0                      1068                      <NA>
## 1328           0                   4398988                      <NA>
## 1329           0                   3904577                      <NA>
## 1330           0                   3904577                      <NA>
## 1331           0                   3904576                   3904577
## 1332           0                      1068                   4398988
## 1333           0                      1068                   4398988
## 1334           0                      <NA>                      <NA>
## 1335           0                   2491214                      <NA>
## 1336           0                      <NA>                      <NA>
## 1337           0                   2529950                      <NA>
## 1338           0                   4398988                      <NA>
## 1339           2                   4398988                   4065760
## 1340           0                   4398988                      <NA>
## 1341           1                      1068                      <NA>
## 1342           0                   2988756                   4068178
## 1343           0                   2566453                   4398988
## 1344           1                      1068                      <NA>
## 1345           0                   4065760                      <NA>
## 1346           0                   2529950                      <NA>
## 1347           0                   2491214                   3058901
## 1348           3                   2529622                   4065760
## 1349           0                       856                      <NA>
## 1350           0                      <NA>                      <NA>
## 1351           0                   4068600                   2566453
## 1352           0                   3904576                      <NA>
## 1353           0                   2529950                      <NA>
## 1354           0                   2529950                      <NA>
## 1355           0                   2529622                      <NA>
## 1356           2                   3058901                      <NA>
## 1357           2                   2491214                      <NA>
## 1358           0                   3058901                      <NA>
## 1359           0                   2491214                      <NA>
## 1360           0                   2491214                   3904576
## 1361           0                   3904576                      <NA>
## 1362           0                   4065832                   2529950
## 1363           0                   4065832                   4068600
## 1364           0                   2529622                      <NA>
## 1365           0                   3904576                      <NA>
## 1366           0                   3904576                      <NA>
## 1367           0                   2998927                   3904576
## 1368           0                   2529622                      <NA>
## 1369           0                   4065832                      <NA>
## 1370           0                   4068600                      <NA>
## 1371           2                   3058901                   4065760
## 1372           0                   2998927                      <NA>
## 1373           0                   2988756                      <NA>
## 1374           0                      <NA>                      <NA>
## 1375           1                   2988756                      <NA>
## 1376           0                   3058901                      <NA>
## 1377           0                   4068600                      <NA>
## 1378           0                   2998927                      <NA>
## 1379           0                      <NA>                      <NA>
## 1380           0                      1068                      <NA>
## 1381           0                   2529622                      <NA>
## 1382           2                   4065760                      <NA>
## 1383           0                      1068                      <NA>
## 1384           0                      <NA>                      <NA>
## 1385           0                   2998927                      <NA>
## 1386           0                   2988756                      <NA>
## 1387           3                       856                   2988756
## 1388           0                   2491214                      <NA>
## 1389           1                   3058901                      <NA>
## 1390           0                   2529950                   2491214
## 1391           0                   3054590                      1068
## 1392           0                   3907789                   4065832
## 1393           0                   3904576                   4065760
## 1394           0                   3058901                      <NA>
## 1395           0                   2529950                      <NA>
## 1396           0                   2998927                      <NA>
## 1397           0                   3054590                      <NA>
## 1398           0                      <NA>                      <NA>
## 1399           0                   4065760                   2998927
## 1400           0                   3054590                      <NA>
## 1401           0                   2529622                      <NA>
## 1402           0                   3058901                   2529950
## 1403           2                   2988756                   2529950
## 1404           2                   3058901                      <NA>
## 1405           0                   3907789                      <NA>
## 1406           0                   2529622                      <NA>
## 1407           0                   4068600                      <NA>
## 1408           0                   3907789                      <NA>
## 1409           0                      <NA>                      <NA>
## 1410           0                      <NA>                      <NA>
## 1411           0                   2491214                   3907789
## 1412           0                      1068                   3054590
## 1413           0                   2998927                   3904576
## 1414           0                   3904577                   4068600
## 1415           0                   4398988                   4065760
## 1416           0                   2998927                      <NA>
## 1417           0                   2491214                      <NA>
## 1418           0                   4398988                      <NA>
## 1419           0                   3904577                      <NA>
## 1420           0                   2529622                      <NA>
## 1421           0                   4398988                   2988756
## 1422           0                   2491214                      <NA>
## 1423           0                   2529950                      <NA>
## 1424           0                   3058901                      <NA>
## 1425           2                   3058901                      <NA>
## 1426           0                   2529622                      <NA>
## 1427           2                      1068                      <NA>
## 1428           0                   3904577                      <NA>
## 1429           0                      1068                      <NA>
## 1430           0                   2988756                      <NA>
## 1431           2                   2998927                      <NA>
## 1432           0                       856                      <NA>
## 1433           0                   4398988                      <NA>
## 1434           2                   3904577                      <NA>
## 1435           0                   2491214                      <NA>
## 1436           1                   3904577                      <NA>
## 1437           0                      1068                      <NA>
## 1438           0                      1068                      <NA>
## 1439           2                      1068                      <NA>
## 1440           0                   4398988                   2988756
## 1441           0                   2998927                      <NA>
## 1442           0                       856                      <NA>
## 1443           0                      <NA>                      <NA>
## 1444           0                   4065760                   2529622
## 1445           0                   2566453                   2998927
## 1446           1                       856                      <NA>
## 1447           2                   3904577                      <NA>
## 1448           3                   2529950                   2491214
## 1449           3                   3904577                      <NA>
## 1450           0                   2491214                   3058901
## 1451           2                   3904577                   3058901
## 1452           0                      <NA>                      <NA>
## 1453           0                   3907789                   2491214
## 1454           0                   3054590                       856
## 1455           0                   2988756                      <NA>
## 1456           0                   2566453                      <NA>
## 1457           0                   3904577                      <NA>
## 1458           0                   3904577                      <NA>
## 1459           0                   3904576                   3904577
## 1460           0                   3054590                      <NA>
## 1461           0                   2529950                      <NA>
## 1462           1                   4398988                      <NA>
## 1463           0                   4065832                   2529950
## 1464           1                   4398988                      <NA>
## 1465           0                   3907789                   4065760
## 1466           2                   2566453                   4065760
## 1467           0                   3054590                      <NA>
## 1468           0                   3904576                      <NA>
## 1469           0                   2566453                      <NA>
## 1470           0                   2566453                      <NA>
## 1471           0                   2988756                      <NA>
## 1472           0                   3058901                      <NA>
## 1473           0                   4065760                      <NA>
## 1474           0                   3904576                      <NA>
## 1475           0                   4065832                      <NA>
## 1476           0                   4398988                      <NA>
## 1477           0                      <NA>                      <NA>
## 1478           0                   2529622                   2566453
## 1479           1                   4398988                      <NA>
## 1480           3                   3907789                   3054590
## 1481           0                   4065760                   4065832
## 1482           2                      1068                   2988756
## 1483           0                      <NA>                      <NA>
## 1484           0                   2999140                   2988756
## 1485           0                   2529950                      1068
## 1486           0                   3904576                      <NA>
## 1487           0                   2529622                      <NA>
## 1488           3                   4065760                   3904576
## 1489           3                   3054590                   4065832
## 1490           0                   2529622                      <NA>
## 1491           0                   4398988                      <NA>
## 1492           0                   2529622                      <NA>
## 1493           0                   2529622                      <NA>
## 1494           3                   3054590                   2999140
## 1495           0                   3058901                   3054590
## 1496           0                   3054590                      <NA>
## 1497           0                   3054590                   3058901
## 1498           0                   3058901                      <NA>
## 1499           0                   4398988                      <NA>
## 1500           2                   4398988                      <NA>
## 1501           0                   3907789                      <NA>
## 1502           0                   4398988                      <NA>
## 1503           0                   3907789                      <NA>
## 1504           1                   3058901                      <NA>
## 1505           0                       856                   3907789
## 1506           1                   3058901                      <NA>
## 1507           0                   2529950                      <NA>
## 1508           0                   3058901                      <NA>
## 1509           0                      <NA>                      <NA>
## 1510           0                   2998927                   3058901
## 1511           0                   3904577                   4398988
## 1512           0                   2566453                   4065760
## 1513           2                       856                      <NA>
## 1514           0                   3904576                      <NA>
## 1515           0                   3054590                      <NA>
## 1516           0                   2999140                      <NA>
## 1517           0                       856                      <NA>
## 1518           0                   2998927                      <NA>
## 1519           0                   2566453                      <NA>
## 1520           0                   2566453                      <NA>
## 1521           0                   2529950                      <NA>
## 1522           2                   2529950                   4065832
## 1523           0                   3904576                      <NA>
## 1524           0                   4065832                      <NA>
## 1525           0                   3054590                      <NA>
## 1526           0                   2529622                      <NA>
## 1527           3                   3904576                   3904577
## 1528           0                   2999140                      <NA>
## 1529           0                   2566453                      <NA>
## 1530           2                   3904577                      <NA>
## 1531           0                   2999140                      <NA>
## 1532           0                   2491214                   3054590
## 1533           0                      1068                   2529950
## 1534           0                   3058901                   3904576
## 1535           0                   3904577                      <NA>
## 1536           0                   2529622                      <NA>
## 1537           2                   3904577                      <NA>
## 1538           0                   2491214                      <NA>
## 1539           0                   3058901                      <NA>
## 1540           0                   2491214                      <NA>
## 1541           0                   2491214                      <NA>
## 1542           0                   2491214                      <NA>
## 1543           0                   3904577                      <NA>
## 1544           0                      <NA>                      <NA>
## 1545           0                   2988756                   4065832
## 1546           2                   3058901                   2566453
## 1547           0                   2999140                      <NA>
## 1548           0                      1068                      <NA>
## 1549           0                   2999140                   2566453
## 1550           0                   2566453                      <NA>
## 1551           0                   3904577                      <NA>
## 1552           0                   3907789                   2999140
## 1553           0                      1068                   2566453
## 1554           0                      <NA>                      <NA>
## 1555           0                      1068                      <NA>
## 1556           0                   2566453                      <NA>
## 1557           2                   2529622                   2998927
## 1558           0                   2491214                      <NA>
## 1559           0                   2566453                      <NA>
## 1560           0                   3904577                      <NA>
## 1561           0                      1068                      <NA>
## 1562           0                   3907789                      <NA>
## 1563           0                   3904577                      <NA>
## 1564           0                   3058901                      <NA>
## 1565           0                      1068                      <NA>
## 1566           0                      <NA>                      <NA>
## 1567           0                   4068178                   2491214
## 1568           0                   2529950                   3907789
## 1569           0                   4398988                   2529622
## 1570           0                   2998927                       856
## 1571           0                       856                   2998927
## 1572           2                   2566453                      <NA>
## 1573           0                   2529950                      <NA>
## 1574           0                   4398988                      <NA>
## 1575           0                   3904577                      <NA>
## 1576           0                      1068                      <NA>
## 1577           2                      1068                   2988756
## 1578           0                   2529950                      <NA>
## 1579           1                   3058901                      <NA>
## 1580           0                   3907789                       856
## 1581           1                   3058901                      <NA>
## 1582           0                   3058901                      <NA>
## 1583           0                      <NA>                      <NA>
## 1584           0                   4065760                   2998927
## 1585           0                   2988756                      <NA>
## 1586           0                      <NA>                      <NA>
## 1587           1                   2988756                      <NA>
## 1588           0                   4398988                      <NA>
## 1589           0                      <NA>                      <NA>
## 1590           0                   3904577                      <NA>
## 1591           0                      <NA>                      <NA>
## 1592           0                      <NA>                      <NA>
## 1593           0                   4068110                   3904577
## 1594           0                   3907789                      <NA>
## 1595           0                   2566453                      <NA>
## 1596           2                   4065760                      <NA>
## 1597           0                   2988756                      <NA>
## 1598           0                      1068                      <NA>
## 1599           2                      1068                      <NA>
## 1600           0                      <NA>                      <NA>
## 1601           0                   3054590                   2529950
## 1602           0                   4065832                      1068
## 1603           0                   4281190                   4065760
## 1604           0                   4281190                      <NA>
## 1605           0                   3907789                      <NA>
## 1606           0                   4065832                      <NA>
## 1607           0                   3058901                      <NA>
## 1608           3                   4068110                      <NA>
## 1609           0                   3907789                      <NA>
## 1610           0                   3058901                      <NA>
## 1611           2                   2566453                   3058901
## 1612           0                      <NA>                      <NA>
## 1613           0                   4068600                   2566453
## 1614           0                   4068178                      <NA>
## 1615           0                      <NA>                      <NA>
## 1616           2                   4068178                      <NA>
## 1617           0                   4068600                   3054590
## 1618           0                   3907789                      <NA>
## 1619           0                   3907789                      <NA>
## 1620           0                   3058901                      <NA>
## 1621           2                   4398988                   3058901
## 1622           0                   4068178                      <NA>
## 1623           0                      <NA>                      <NA>
## 1624           0                      <NA>                      <NA>
## 1625           0                      <NA>                      <NA>
## 1626           0                   2529183                       918
## 1627           0                       981                       796
## 1628           3                   3146151                   2529137
## 1629           0                   2529183                   3146151
## 1630           0                   2530082                      <NA>
## 1631           0                   2530082                      <NA>
## 1632           0                   2529183                      <NA>
## 1633           2                       812                   2998938
## 1634           3                   2530082                       796
## 1635           3                       812                       981
## 1636           0                       918                      <NA>
## 1637           2                   3058902                      <NA>
## 1638           0                   3146151                      <NA>
## 1639           0                   3146151                      <NA>
## 1640           3                   2998938                       812
## 1641           0                   2530082                   3058902
## 1642           2                   2998938                   3058902
## 1643           0                   2998938                      <NA>
## 1644           0                       918                      <NA>
## 1645           0                   2998938                      <NA>
## 1646           0                   2529183                      <NA>
## 1647           0                   2530082                      <NA>
## 1648           0                   2530082                      <NA>
## 1649           0                   2998938                      <NA>
## 1650           0                   3058902                      <NA>
## 1651           0                       918                      <NA>
## 1652           2                   2530082                       796
## 1653           0                   2529183                   2530082
## 1654           2                   2529137                      <NA>
## 1655           0                       981                   2529137
## 1656           0                   2529137                      <NA>
## 1657           0                       812                      <NA>
## 1658           2                   2998938                       981
## 1659           0                       796                      <NA>
## 1660           0                       981                      <NA>
## 1661           0                   2529183                   3146151
## 1662           0                   3058902                      <NA>
## 1663           0                      <NA>                      <NA>
## 1664           0                   3056728                       796
## 1665           0                   3142149                   2530082
## 1666           0                       851                   3146151
## 1667           0                   3099025                       812
## 1668           0                       764                   3058902
## 1669           2                       918                      <NA>
## 1670           0                   2529183                      <NA>
## 1671           0                   2529137                      <NA>
## 1672           0                   3142149                      <NA>
## 1673           0                   2529183                      <NA>
## 1674           0                   2998938                      <NA>
## 1675           0                   2529137                      <NA>
## 1676           0                   3142149                      <NA>
## 1677           0                   2998938                      <NA>
## 1678           0                   2998938                   3142149
## 1679           2                   3142149                   3056728
## 1680           0                   3099025                      <NA>
## 1681           0                   2566210                   2998938
## 1682           0                   4066534                       981
## 1683           0                   3058902                   2529183
## 1684           2                       918                      <NA>
## 1685           3                       764                   2566210
## 1686           3                       918                   2529137
## 1687           3                   2566210                       764
## 1688           0                   2529137                      <NA>
## 1689           0                      <NA>                      <NA>
## 1690           0                   4066534                      <NA>
## 1691           0                   2530082                   2529137
## 1692           0                       796                       918
## 1693           0                      <NA>                      <NA>
## 1694           0                   4066534                      <NA>
## 1695           0                   2530082                      <NA>
## 1696           0                   3056728                      <NA>
## 1697           0                   4066534                      <NA>
## 1698           2                   3058902                       764
## 1699           0                       851                      <NA>
## 1700           0                   4066534                      <NA>
## 1701           0                       764                      <NA>
## 1702           0                   3056728                      <NA>
## 1703           0                      <NA>                      <NA>
## 1704           0                   3146151                   3142149
## 1705           0                       918                   3056728
## 1706           0                   3099025                      <NA>
## 1707           0                       796                      <NA>
## 1708           0                       851                      <NA>
## 1709           0                   4066534                      <NA>
## 1710           1                       851                      <NA>
## 1711           1                       851                      <NA>
## 1712           0                   2566210                      <NA>
## 1713           0                       764                      <NA>
## 1714           2                   3099025                   2566210
## 1715           0                       918                      <NA>
## 1716           0                   4066534                      <NA>
## 1717           2                   3099025                   3058902
## 1718           0                   2566210                      <NA>
## 1719           0                   2529137                       851
## 1720           0                       812                   4066534
## 1721           0                   3099025                      <NA>
## 1722           0                       918                      <NA>
## 1723           0                      <NA>                      <NA>
## 1724           1                       918                      <NA>
## 1725           0                   3146151                      <NA>
## 1726           0                       981                   2566210
## 1727           3                       812                       981
## 1728           0                   2530082                      <NA>
## 1729           0                       812                      <NA>
## 1730           0                   3058902                      <NA>
## 1731           0                   2530082                      <NA>
## 1732           0                       918                      <NA>
## 1733           0                   3146151                      <NA>
## 1734           0                   3146151                      <NA>
## 1735           0                       812                      <NA>
## 1736           0                       981                      <NA>
## 1737           0                   2530082                      <NA>
## 1738           0                       918                      <NA>
## 1739           0                       918                      <NA>
## 1740           2                       918                      <NA>
## 1741           0                   3099025                      <NA>
## 1742           0                   2529183                       764
## 1743           0                   2998938                   3099025
## 1744           1                       918                      <NA>
## 1745           0                   2530082                      <NA>
## 1746           1                   2529183                      <NA>
## 1747           1                   2529183                      <NA>
## 1748           0                       918                      <NA>
## 1749           0                   2530082                      <NA>
## 1750           1                   2998938                      <NA>
## 1751           0                   3056728                   2530082
## 1752           1                   2998938                      <NA>
## 1753           0                       796                      <NA>
## 1754           0                   2529183                      <NA>
## 1755           0                   3056728                      <NA>
## 1756           0                      <NA>                      <NA>
## 1757           0                   2529183                      <NA>
## 1758           0                   2529137                      <NA>
## 1759           0                       796                      <NA>
## 1760           0                       812                      <NA>
## 1761           0                   2998938                      <NA>
## 1762           0                      <NA>                      <NA>
## 1763           0                   3056728                      <NA>
## 1764           1                       812                      <NA>
## 1765           1                       812                      <NA>
## 1766           0                   2529137                       812
## 1767           0                       812                      <NA>
## 1768           2                   2998938                       812
## 1769           0                   3146151                      <NA>
## 1770           0                       918                      <NA>
## 1771           0                   3146151                       812
## 1772           0                   3058902                      <NA>
## 1773           0                   2998938                      <NA>
## 1774           0                       918                      <NA>
## 1775           0                       796                      <NA>
## 1776           0                      <NA>                      <NA>
## 1777           0                   3142149                   3146151
## 1778           3                       812                   3058902
## 1779           0                   3058902                      <NA>
## 1780           1                   2529137                      <NA>
## 1781           0                       764                   3058902
## 1782           1                   2529137                      <NA>
## 1783           0                       812                   2529137
## 1784           0                   2529137                       981
## 1785           0                   3142149                      <NA>
## 1786           1                   2998938                      <NA>
## 1787           0                   2998938                      <NA>
## 1788           0                       796                      <NA>
## 1789           0                   2529137                       812
## 1790           0                      <NA>                      <NA>
## 1791           0                      <NA>                      <NA>
## 1792           0                   3142149                      <NA>
## 1793           1                       764                      <NA>
## 1794           0                       851                       796
## 1795           1                       764                      <NA>
## 1796           0                       918                      <NA>
## 1797           0                   2529183                      <NA>
## 1798           0                   2529183                      <NA>
## 1799           0                       918                      <NA>
## 1800           0                       918                      <NA>
## 1801           0                      <NA>                      <NA>
## 1802           0                   3058902                   2529183
## 1803           0                       764                      <NA>
## 1804           0                       851                      <NA>
## 1805           0                       918                      <NA>
## 1806           0                       764                      <NA>
## 1807           0                       812                      <NA>
## 1808           0                   3056728                      <NA>
## 1809           0                   3056728                      <NA>
## 1810           0                   3056728                      <NA>
## 1811           0                   3058902                      <NA>
## 1812           0                       918                      <NA>
## 1813           0                      <NA>                      <NA>
## 1814           0                   2529183                   3058902
## 1815           1                       918                      <NA>
## 1816           0                       812                      <NA>
## 1817           0                   2529137                      <NA>
## 1818           0                   3056728                      <NA>
## 1819           0                       764                      <NA>
## 1820           0                   3056728                      <NA>
## 1821           0                       918                      <NA>
## 1822           0                       812                      <NA>
## 1823           2                   2998938                       812
## 1824           0                   2529137                      <NA>
## 1825           0                   2566210                       981
## 1826           0                   3944151                       764
## 1827           1                   2998938                      <NA>
## 1828           0                      <NA>                      <NA>
## 1829           0                   3146151                   3142149
## 1830           0                   2530082                   3056728
## 1831           0                   2566210                      <NA>
## 1832           1                   2529137                      <NA>
## 1833           1                   2529137                      <NA>
## 1834           0                       812                      <NA>
## 1835           0                      <NA>                      <NA>
## 1836           0                      <NA>                      <NA>
## 1837           0                       796                       851
## 1838           0                   3058902                   3944151
## 1839           0                       981                   2566210
## 1840           2                   2530082                       796
## 1841           0                   3146151                      <NA>
## 1842           0                   2998938                      <NA>
## 1843           0                   3058902                      <NA>
## 1844           0                       981                      <NA>
## 1845           0                   3146151                      <NA>
## 1846           0                   2530082                      <NA>
## 1847           0                   3146151                      <NA>
## 1848           2                   3146151                      <NA>
## 1849           0                       812                      <NA>
## 1850           0                      <NA>                      <NA>
## 1851           0                   2530082                      <NA>
## 1852           0                   2998938                      <NA>
## 1853           0                   2530082                      <NA>
## 1854           0                   2998938                   2529137
## 1855           2                   2529137                      <NA>
## 1856           0                      <NA>                      <NA>
## 1857           0                   2530082                      <NA>
## 1858           0                       812                      <NA>
## 1859           0                      <NA>                      <NA>
## 1860           1                       812                      <NA>
## 1861           0                   2529137                      <NA>
## 1862           0                   2998938                      <NA>
## 1863           0                       796                      <NA>
## 1864           0                       764                       812
## 1865           0                   3099025                   3058902
## 1866           0                   2529183                   2530082
## 1867           0                      <NA>                      <NA>
## 1868           0                       981                      <NA>
## 1869           0                      <NA>                      <NA>
## 1870           0                   3146151                   2998938
## 1871           0                   2529183                   2530082
## 1872           0                   3146151                      <NA>
## 1873           0                   2530082                      <NA>
## 1874           0                   2998938                      <NA>
## 1875           0                   2529183                      <NA>
## 1876           0                   2529183                      <NA>
## 1877           0                   3056728                   2530082
## 1878           0                   4068890                       796
## 1879           0                   2529137                      <NA>
## 1880           0                      <NA>                      <NA>
## 1881           0                   2529183                      <NA>
## 1882           0                       812                   2529183
## 1883           0                       918                      <NA>
## 1884           0                   2529137                      <NA>
## 1885           0                   2529137                      <NA>
## 1886           0                       981                      <NA>
## 1887           0                   4068890                      <NA>
## 1888           1                   3099025                      <NA>
## 1889           0                   3058902                   2998938
## 1890           1                   3099025                      <NA>
## 1891           0                   4068890                      <NA>
## 1892           0                   3099025                      <NA>
## 1893           0                       764                   4068890
## 1894           0                   3099025                      <NA>
## 1895           0                   3146151                      <NA>
## 1896           1                   3099025                      <NA>
## 1897           1                   3099025                      <NA>
## 1898           0                       918                      <NA>
## 1899           0                   3099025                      <NA>
## 1900           0                       812                   3146151
## 1901           0                       812                      <NA>
## 1902           0                   3056728                       812
## 1903           0                       812                      <NA>
## 1904           2                   3056728                   2529137
## 1905           0                       764                      <NA>
## 1906           0                       918                      <NA>
## 1907           0                   3056728                      <NA>
## 1908           0                   3056728                      <NA>
## 1909           0                   3058902                      <NA>
## 1910           0                   3146151                      <NA>
## 1911           0                   3099025                      <NA>
## 1912           0                       812                   2529137
## 1913           0                      <NA>                      <NA>
## 1914           0                   4068890                      <NA>
## 1915           0                       812                      <NA>
## 1916           0                   3058902                      <NA>
## 1917           0                   3056728                      <NA>
## 1918           2                       918                   3146151
## 1919           3                       981                   3058902
## 1920           0                       918                      <NA>
## 1921           0                       981                      <NA>
## 1922           3                   3058902                       812
## 1923           0                   2529137                      <NA>
## 1924           0                       812                      <NA>
## 1925           0                   3058902                      <NA>
## 1926           0                   2529137                      <NA>
## 1927           0                   4068890                      <NA>
## 1928           0                   3146151                      <NA>
## 1929           0                   3146151                      <NA>
## 1930           0                   3146151                      <NA>
## 1931           0                      <NA>                      <NA>
## 1932           0                   2530082                   3146151
## 1933           0                   3142149                   2529137
## 1934           0                       796                       918
## 1935           0                   2529183                       812
## 1936           0                   2566210                       981
## 1937           0                   2998938                   3099025
## 1938           0                   4066534                   3058902
## 1939           2                       764                   2998938
## 1940           0                   2998938                      <NA>
## 1941           0                   2530082                      <NA>
## 1942           0                   2998938                      <NA>
## 1943           0                   4068890                      <NA>
## 1944           2                   2529183                       764
## 1945           0                   2529183                      <NA>
## 1946           2                   2530082                   4068890
## 1947           0                   2566210                      <NA>
## 1948           0                   2530082                      <NA>
## 1949           0                       796                      <NA>
## 1950           0                   2566210                      <NA>
## 1951           0                       764                   2530082
## 1952           0                   3056728                      <NA>
## 1953           0                   3056728                      <NA>
## 1954           2                   3056728                      <NA>
## 1955           0                       764                      <NA>
## 1956           0                   2530082                      <NA>
## 1957           0                       796                   2566210
## 1958           2                   2998938                   2566210
## 1959           2                   3056728                   2530082
## 1960           0                       764                      <NA>
## 1961           0                      <NA>                      <NA>
## 1962           0                       918                   4068890
## 1963           0                       851                   3056728
## 1964           0                   3099025                   2529183
## 1965           0                       796                      <NA>
## 1966           0                      <NA>                      <NA>
## 1967           0                   2998938                      <NA>
## 1968           0                   3142149                      <NA>
## 1969           0                   2530082                      <NA>
## 1970           0                   2998938                      <NA>
## 1971           0                       851                      <NA>
## 1972           0                      <NA>                      <NA>
## 1973           0                   2529137                       796
## 1974           0                   2984730                   2530082
## 1975           0                       981                   2566210
## 1976           1                   2998938                      <NA>
## 1977           1                   2998938                      <NA>
## 1978           0                   2984730                      <NA>
## 1979           0                   2529137                      <NA>
## 1980           0                   3142149                   2998938
## 1981           0                   3099025                      <NA>
## 1982           0                   3142149                      <NA>
## 1983           0                       981                      <NA>
## 1984           1                   3142149                      <NA>
## 1985           0                       812                       764
## 1986           0                   3058902                   3099025
## 1987           1                   3142149                      <NA>
## 1988           2                   4066534                   3058902
## 1989           0                   4066534                      <NA>
## 1990           1                   3142149                      <NA>
## 1991           1                   3142149                      <NA>
## 1992           0                      <NA>                      <NA>
## 1993           0                   3055808                   3142149
## 1994           0                       918                      <NA>
## 1995           0                       918                      <NA>
## 1996           0                   3056728                       918
## 1997           2                       812                       981
## 1998           0                   3056728                      <NA>
## 1999           0                      <NA>                      <NA>
## 2000           0                      <NA>                      <NA>
## 2001           0                   4068890                   2529137
## 2002           0                       812                      <NA>
## 2003           0                   2984730                      <NA>
## 2004           0                       851                      <NA>
## 2005           0                   3058902                      <NA>
## 2006           0                       851                      <NA>
## 2007           0                   4066534                      <NA>
## 2008           0                      <NA>                      <NA>
## 2009           0                   2566210                   2998938
## 2010           0                   3099025                       812
## 2011           0                   3944151                       981
## 2012           1                   4066534                      <NA>
## 2013           3                   4068890                      <NA>
## 2014           0                   4066534                      <NA>
## 2015           0                   3056728                      <NA>
## 2016           0                   3099025                      <NA>
## 2017           1                   3056728                      <NA>
## 2018           1                   3056728                      <NA>
## 2019           0                   3058902                      <NA>
## 2020           0                   3056728                      <NA>
## 2021           0                   4068890                      <NA>
## 2022           0                   4068890                      <NA>
## 2023           0                   4068890                   3944151
## 2024           0                   4068890                   2566210
## 2025           0                   3058902                      <NA>
## 2026           0                   2984730                      <NA>
## 2027           0                   3055808                      <NA>
## 2028           0                      <NA>                      <NA>
## 2029           0                   2984730                      <NA>
## 2030           0                   2984730                      <NA>
## 2031           0                       851                      <NA>
## 2032           0                   3056728                      <NA>
## 2033           0                   3099025                      <NA>
## 2034           0                   3056728                      <NA>
## 2035           0                      <NA>                      <NA>
## 2036           1                   3056728                      <NA>
## 2037           0                      <NA>                      <NA>
## 2038           0                      <NA>                      <NA>
## 2039           0                      1017                   2998928
## 2040           0                      1017                      <NA>
## 2041           0                      1017                      <NA>
## 2042           0                   2998928                      <NA>
## 2043           1                      1017                      <NA>
## 2044           1                      1017                      <NA>
## 2045           0                   2998928                      <NA>
## 2046           0                      1017                      <NA>
## 2047           0                   4065870                      <NA>
## 2048           0                      <NA>                      <NA>
## 2049           0                   3917453                      <NA>
## 2050           3                   3149391                   4065870
## 2051           0                       689                      <NA>
## 2052           0                      1049                      <NA>
## 2053           2                      1017                      1049
## 2054           2                       689                   2987869
## 2055           0                   3149391                      <NA>
## 2056           0                   2998928                      <NA>
## 2057           0                       689                      <NA>
## 2058           0                       689                      <NA>
## 2059           0                       689                   4065870
## 2060           0                       689                      <NA>
## 2061           2                       689                      <NA>
## 2062           0                   3149391                      <NA>
## 2063           0                   3917453                      <NA>
## 2064           0                       689                      <NA>
## 2065           0                   2529122                      <NA>
## 2066           2                   4065870                      <NA>
## 2067           0                   3149391                      <NA>
## 2068           1                   2998928                      <NA>
## 2069           0                   4834791                      1017
## 2070           1                   2998928                      <NA>
## 2071           2                   3149391                      1049
## 2072           0                   2987869                      <NA>
## 2073           0                   2529122                      <NA>
## 2074           0                   4834791                      <NA>
## 2075           0                   2987869                      <NA>
## 2076           0                   2998928                      <NA>
## 2077           0                      1049                      <NA>
## 2078           2                   4834791                      <NA>
## 2079           0                       689                      <NA>
## 2080           2                   4065870                      1049
## 2081           0                       689                      <NA>
## 2082           0                   4834791                      <NA>
## 2083           0                   2529122                       689
## 2084           2                   2987869                      <NA>
## 2085           2                   3149391                   2529122
## 2086           2                        91                      <NA>
## 2087           0                      1049                      <NA>
## 2088           0                       689                      <NA>
## 2089           2                   2998928                        91
## 2090           2                   4834791                      <NA>
## 2091           2                   2987869                      <NA>
## 2092           0                   2529122                      <NA>
## 2093           0                   3149391                      <NA>
## 2094           2                   3149391                      <NA>
## 2095           0                   2987869                      <NA>
## 2096           0                      <NA>                      <NA>
## 2097           0                   3099736                       689
## 2098           0                   4420318                   3917453
## 2099           0                      1017                      1049
## 2100           0                   2566106                   2529122
## 2101           0                   3065570                   4834791
## 2102           1                   3149391                      <NA>
## 2103           2                   2987869                      <NA>
## 2104           0                      1017                      <NA>
## 2105           0                   4420318                      <NA>
## 2106           3                   4420318                        91
## 2107           0                   3142250                        91
## 2108           2                   3149391                   3065570
## 2109           2                   4420318                   2987869
## 2110           0                   2566106                      <NA>
## 2111           0                   2529122                   3149391
## 2112           2                   2987869                      <NA>
## 2113           0                   4065870                      <NA>
## 2114           0                   2566106                      <NA>
## 2115           0                   2529122                      <NA>
## 2116           0                      <NA>                      <NA>
## 2117           0                       689                   2998928
## 2118           2                       689                   3142250
## 2119           2                   4065870                      <NA>
## 2120           2                   3142250                      <NA>
## 2121           0                      <NA>                      <NA>
## 2122           0                   3142250                      <NA>
## 2123           0                   2566106                      <NA>
## 2124           0                   2987869                      <NA>
## 2125           3                   3099736                   2987869
## 2126           0                      1017                   4420318
## 2127           0                   4420318                      <NA>
## 2128           0                   3099736                   4065870
## 2129           0                   3065570                      <NA>
## 2130           0                      1017                      <NA>
## 2131           2                      1017                      <NA>
## 2132           2                   3142250                      <NA>
## 2133           0                   3065570                      <NA>
## 2134           0                   3149391                   4065870
## 2135           1                   3142250                      <NA>
## 2136           0                   2529122                      <NA>
## 2137           0                   3099736                      <NA>
## 2138           0                       689                      <NA>
## 2139           0                   2566106                      <NA>
## 2140           0                   2566106                       689
## 2141           0                   2566106                      <NA>
## 2142           0                   2566106                      <NA>
## 2143           0                   3142250                      <NA>
## 2144           0                      1017                      <NA>
## 2145           0                   3142250                      <NA>
## 2146           0                      <NA>                      <NA>
## 2147           0                   2998928                       689
## 2148           0                   4282168                   2987869
## 2149           0                      1049                      1017
## 2150           1                   3142250                      <NA>
## 2151           0                      1049                      <NA>
## 2152           0                   2998928                      <NA>
## 2153           0                   2998928                      <NA>
## 2154           0                   4420318                      <NA>
## 2155           0                   4420318                      <NA>
## 2156           0                   2566106                      <NA>
## 2157           0                   4420318                      <NA>
## 2158           2                   2529122                   3065570
## 2159           2                   2998928                      <NA>
## 2160           0                   3149391                      <NA>
## 2161           0                   3142250                      <NA>
## 2162           3                   2998928                   3142250
## 2163           0                   4420318                      <NA>
## 2164           0                      <NA>                      <NA>
## 2165           0                        91                   3142250
## 2166           0                   4834791                   2566106
## 2167           1                   3149391                      <NA>
## 2168           1                   3149391                      <NA>
## 2169           0                   2998928                      <NA>
## 2170           0                      1049                      <NA>
## 2171           0                   4282168                      <NA>
## 2172           0                   4834791                   4420318
## 2173           0                   2998928                      <NA>
## 2174           0                   3099736                      <NA>
## 2175           0                   4834791                      <NA>
## 2176           0                   3149391                      <NA>
## 2177           0                   3099736                      <NA>
## 2178           0                      1049                      <NA>
## 2179           0                       689                   3099736
## 2180           0                   3917453                   4420318
## 2181           0                   4065870                      1049
## 2182           0                   2529122                      <NA>
## 2183           0                   2998928                      <NA>
## 2184           0                      <NA>                      <NA>
## 2185           1                   2998928                      <NA>
## 2186           0                   3065570                      <NA>
## 2187           0                   2998928                      <NA>
## 2188           0                   3917453                      <NA>
## 2189           0                   2987869                   4282168
## 2190           0                   3149391                      <NA>
## 2191           0                   2998928                      <NA>
## 2192           3                        91                   2998928
## 2193           0                   4065870                      <NA>
## 2194           0                   2998928                      <NA>
## 2195           3                        91                   2987869
## 2196           0                      <NA>                      <NA>
## 2197           0                      1017                   4834791
## 2198           0                      1049                   3065570
## 2199           2                      1017                   3149391
## 2200           0                       689                      <NA>
## 2201           0                      1017                      <NA>
## 2202           0                       689                      <NA>
## 2203           0                       689                      <NA>
## 2204           2                      1017                   4065870
## 2205           0                       689                      <NA>
## 2206           0                      1017                      <NA>
## 2207           2                   3149391                      <NA>
## 2208           0                   2998928                      1017
## 2209           0                   3149391                      <NA>
## 2210           0                      1049                      <NA>
## 2211           0                        91                      <NA>
## 2212           0                       689                      <NA>
## 2213           0                      1049                      <NA>
## 2214           0                   2529122                      <NA>
## 2215           0                       689                      <NA>
## 2216           0                        91                      1049
## 2217           2                   4065870                      <NA>
## 2218           0                      <NA>                      <NA>
## 2219           0                   4420318                       689
## 2220           0                   2998928                      <NA>
## 2221           0                      1017                      <NA>
## 2222           0                   4420318                      <NA>
## 2223           3                   3917453                        91
## 2224           0                   2529122                   4420318
## 2225           0                      <NA>                      <NA>
## 2226           3                   2987869                        91
## 2227           0                   2529122                      <NA>
## 2228           0                   2998928                      <NA>
## 2229           0                        91                      <NA>
## 2230           0                      <NA>                      <NA>
## 2231           0                      1017                      <NA>
## 2232           0                        91                      <NA>
## 2233           2                   2998928                      <NA>
## 2234           0                   3917453                      1049
## 2235           0                   2529122                   3917453
## 2236           2                   4420318                   2987869
## 2237           0                   4065870                      <NA>
## 2238           0                   3917453                      <NA>
## 2239           3                   2998928                      <NA>
## 2240           0                      <NA>                      <NA>
## 2241           0                        91                      <NA>
## 2242           0                   4065870                      <NA>
## 2243           0                      <NA>                      <NA>
## 2244           0                   2998928                      <NA>
## 2245           0                      1049                      <NA>
## 2246           0                   3149391                   2998928
## 2247           0                   2998928                      <NA>
## 2248           0                   2998928                      <NA>
## 2249           0                      1017                      <NA>
## 2250           0                   3917453                      <NA>
## 2251           2                   4065870                   3149391
## 2252           2                   2998928                        91
## 2253           0                   4420318                      <NA>
## 2254           0                   2566106                      1049
## 2255           0                   3065570                      1017
## 2256           0                       689                   4420318
## 2257           0                   4065870                       689
## 2258           0                        91                      <NA>
## 2259           0                        91                      <NA>
## 2260           3                   3065570                   2529122
## 2261           0                   2566106                      <NA>
## 2262           0                       689                      <NA>
## 2263           0                   4065870                      <NA>
## 2264           2                   4065870                      <NA>
## 2265           0                        91                      <NA>
## 2266           0                   3149391                      <NA>
## 2267           0                   3917453                      <NA>
## 2268           1                   3149391                      <NA>
## 2269           0                   3099736                   3917453
## 2270           1                   3149391                      <NA>
## 2271           0                   3065570                      <NA>
## 2272           3                   3099736                      <NA>
## 2273           0                   4065870                   2987869
## 2274           0                   3065570                      <NA>
## 2275           1                   2987869                      <NA>
## 2276           1                   2987869                      <NA>
## 2277           2                   3065570                   3149391
## 2278           0                        91                      <NA>
## 2279           0                   3142250                        91
## 2280           0                      1049                   2529122
## 2281           2                      1049                   3149391
## 2282           2                   2987869                   3142250
## 2283           0                      1049                      <NA>
## 2284           0                   2998928                      <NA>
## 2285           0                   3099736                   2566106
## 2286           0                   3065570                      <NA>
## 2287           0                   2998928                      <NA>
## 2288           2                       689                   3142250
## 2289           0                   4065870                      <NA>
## 2290           0                   2987869                      <NA>
## 2291           0                   2566106                      <NA>
## 2292           1                   2998928                      <NA>
## 2293           1                   2998928                      <NA>
## 2294           0                   4065870                      <NA>
## 2295           0                   3099736                      <NA>
## 2296           0                   3099736                      <NA>
## 2297           0                   4065870                      <NA>
## 2298           0                   3065570                      <NA>
## 2299           0                   3142250                      <NA>
## 2300           0                   3142250                      <NA>
## 2301           0                   2566106                      <NA>
## 2302           2                   3149391                   3065570
## 2303           0                   2987869                      <NA>
## 2304           0                   2566106                      <NA>
## 2305           2                   3149391                      1049
## 2306           0                      1049                      <NA>
## 2307           0                   3142250                      <NA>
## 2308           0                      <NA>                      <NA>
## 2309           0                      1017                   3149391
## 2310           0                   3142250                      <NA>
## 2311           0                      <NA>                      <NA>
## 2312           0                      <NA>                      <NA>
## 2313           0                      <NA>                      <NA>
## 2314           0                   4420318                   2998928
## 2315           2                      1017                   4065870
## 2316           0                   2987869                      1049
## 2317           0                      <NA>                      <NA>
## 2318           0                   4420318                      <NA>
## 2319           1                   3065570                      <NA>
## 2320           0                   2998928                   4420318
## 2321           1                   3065570                      <NA>
## 2322           2                   2998928                   2987869
## 2323           0                      1049                      <NA>
## 2324           0                   2566106                      <NA>
## 2325           2                      1017                   2566106
## 2326           0                   2987869                      <NA>
## 2327           0                   4065870                      <NA>
## 2328           0                   3065570                      <NA>
## 2329           0                   3099736                      <NA>
## 2330           0                      1049                      <NA>
## 2331           1                   2998928                      <NA>
## 2332           0                        91                   2987869
## 2333           1                   2998928                      <NA>
## 2334           0                   4065870                      <NA>
## 2335           0                        91                      <NA>
## 2336           0                   2998928                      <NA>
## 2337           0                   2998928                      <NA>
## 2338           2                   2998928                        91
## 2339           2                      1017                   3065570
## 2340           0                        91                   2566106
## 2341           2                   2566106                      <NA>
## 2342           2                       689                   3099736
## 2343           2                   2566106                      <NA>
## 2344           0                      1017                      <NA>
## 2345           0                   2987869                        91
## 2346           0                   2529122                   4065870
## 2347           0                   4834791                      1049
## 2348           0                   3149391                      1017
## 2349           2                   2987869                   3142250
## 2350           0                   3099736                      <NA>
## 2351           1                   2566106                      <NA>
## 2352           0                   3917453                   3099736
## 2353           0                   2566106                      <NA>
## 2354           0                   3917453                      <NA>
## 2355           0                   2998928                      <NA>
## 2356           0                   2566106                      <NA>
## 2357           0                   3149391                      <NA>
## 2358           0                   3917453                      <NA>
## 2359           0                      <NA>                      <NA>
## 2360           0                   3142250                      <NA>
## 2361           0                   4834791                      <NA>
## 2362           3                   2529122                   2566106
## 2363           3                   2987869                   3142250
## 2364           2                   3065570                   4834791
## 2365           0                   2987869                      <NA>
## 2366           0                   3149391                      <NA>
## 2367           0                   3065570                      <NA>
## 2368           0                   3065570                      <NA>
## 2369           0                        91                   3142250
## 2370           2                       689                      <NA>
## 2371           0                   2566106                      <NA>
## 2372           0                   2998928                      <NA>
## 2373           0                        91                      <NA>
## 2374           0                   3149391                      <NA>
## 2375           0                   2566106                   3917453
## 2376           0                        91                      <NA>
## 2377           2                   3917453                        91
## 2378           2                   3065570                      <NA>
## 2379           0                   3917453                      <NA>
## 2380           0                   2987869                      <NA>
##      participants_2_athlete_id type_abbreviation season season_type   game_id
## 1                      3142191                NA   2021           2 401320565
## 2                         <NA>                NA   2021           2 401320565
## 3                         <NA>                NA   2021           2 401320565
## 4                         <NA>                NA   2021           2 401320565
## 5                         <NA>                NA   2021           2 401320565
## 6                         <NA>                NA   2021           2 401320565
## 7                         <NA>                NA   2021           2 401320565
## 8                         <NA>                NA   2021           2 401320565
## 9                         <NA>                NA   2021           2 401320565
## 10                        <NA>                NA   2021           2 401320565
## 11                        <NA>                NA   2021           2 401320565
## 12                        <NA>                NA   2021           2 401320565
## 13                        <NA>                NA   2021           2 401320565
## 14                        <NA>                NA   2021           2 401320565
## 15                        <NA>                NA   2021           2 401320565
## 16                        <NA>                NA   2021           2 401320565
## 17                        <NA>                NA   2021           2 401320565
## 18                        <NA>                NA   2021           2 401320565
## 19                        <NA>                NA   2021           2 401320565
## 20                        <NA>                NA   2021           2 401320565
## 21                        <NA>                NA   2021           2 401320565
## 22                        <NA>                NA   2021           2 401320565
## 23                        <NA>                NA   2021           2 401320565
## 24                        <NA>                NA   2021           2 401320565
## 25                        <NA>                NA   2021           2 401320565
## 26                        <NA>                NA   2021           2 401320565
## 27                        <NA>                NA   2021           2 401320565
## 28                        <NA>                NA   2021           2 401320565
## 29                        <NA>                NA   2021           2 401320565
## 30                        <NA>                NA   2021           2 401320565
## 31                        <NA>                NA   2021           2 401320565
## 32                        <NA>                NA   2021           2 401320565
## 33                        <NA>                NA   2021           2 401320565
## 34                        <NA>                NA   2021           2 401320565
## 35                        <NA>                NA   2021           2 401320565
## 36                        <NA>                NA   2021           2 401320565
## 37                        <NA>                NA   2021           2 401320565
## 38                        <NA>                NA   2021           2 401320565
## 39                        <NA>                NA   2021           2 401320565
## 40                        <NA>                NA   2021           2 401320565
## 41                        <NA>                NA   2021           2 401320565
## 42                        <NA>                NA   2021           2 401320565
## 43                        <NA>                NA   2021           2 401320565
## 44                        <NA>                NA   2021           2 401320565
## 45                        <NA>                NA   2021           2 401320565
## 46                        <NA>                NA   2021           2 401320565
## 47                        <NA>                NA   2021           2 401320565
## 48                        <NA>                NA   2021           2 401320565
## 49                        <NA>                NA   2021           2 401320565
## 50                        <NA>                NA   2021           2 401320565
## 51                        <NA>                NA   2021           2 401320565
## 52                        <NA>                NA   2021           2 401320565
## 53                        <NA>                NA   2021           2 401320565
## 54                        <NA>                NA   2021           2 401320565
## 55                        <NA>                NA   2021           2 401320565
## 56                        <NA>                NA   2021           2 401320565
## 57                        <NA>                NA   2021           2 401320565
## 58                        <NA>                NA   2021           2 401320565
## 59                        <NA>                NA   2021           2 401320565
## 60                        <NA>                NA   2021           2 401320565
## 61                        <NA>                NA   2021           2 401320565
## 62                        <NA>                NA   2021           2 401320565
## 63                        <NA>                NA   2021           2 401320565
## 64                        <NA>                NA   2021           2 401320565
## 65                        <NA>                NA   2021           2 401320565
## 66                        <NA>                NA   2021           2 401320565
## 67                        <NA>                NA   2021           2 401320565
## 68                        <NA>                NA   2021           2 401320565
## 69                        <NA>                NA   2021           2 401320565
## 70                        <NA>                NA   2021           2 401320565
## 71                        <NA>                NA   2021           2 401320565
## 72                        <NA>                NA   2021           2 401320565
## 73                        <NA>                NA   2021           2 401320565
## 74                        <NA>                NA   2021           2 401320565
## 75                        <NA>                NA   2021           2 401320565
## 76                        <NA>                NA   2021           2 401320565
## 77                        <NA>                NA   2021           2 401320565
## 78                        <NA>                NA   2021           2 401320565
## 79                        <NA>                NA   2021           2 401320565
## 80                        <NA>                NA   2021           2 401320565
## 81                        <NA>                NA   2021           2 401320565
## 82                        <NA>                NA   2021           2 401320565
## 83                        <NA>                NA   2021           2 401320565
## 84                        <NA>                NA   2021           2 401320565
## 85                        <NA>                NA   2021           2 401320565
## 86                        <NA>                NA   2021           2 401320565
## 87                        <NA>                NA   2021           2 401320565
## 88                        <NA>                NA   2021           2 401320565
## 89                        <NA>                NA   2021           2 401320565
## 90                        <NA>                NA   2021           2 401320565
## 91                        <NA>                NA   2021           2 401320565
## 92                        <NA>                NA   2021           2 401320565
## 93                        <NA>                NA   2021           2 401320565
## 94                        <NA>                NA   2021           2 401320565
## 95                        <NA>                NA   2021           2 401320565
## 96                        <NA>                NA   2021           2 401320565
## 97                        <NA>                NA   2021           2 401320565
## 98                        <NA>                NA   2021           2 401320565
## 99                        <NA>                NA   2021           2 401320565
## 100                       <NA>                NA   2021           2 401320565
## 101                       <NA>                NA   2021           2 401320565
## 102                       <NA>                NA   2021           2 401320565
## 103                       <NA>                NA   2021           2 401320565
## 104                       <NA>                NA   2021           2 401320565
## 105                       <NA>                NA   2021           2 401320565
## 106                       <NA>                NA   2021           2 401320565
## 107                       <NA>                NA   2021           2 401320565
## 108                       <NA>                NA   2021           2 401320565
## 109                       <NA>                NA   2021           2 401320565
## 110                       <NA>                NA   2021           2 401320565
## 111                       <NA>                NA   2021           2 401320565
## 112                       <NA>                NA   2021           2 401320565
## 113                       <NA>                NA   2021           2 401320565
## 114                       <NA>                NA   2021           2 401320565
## 115                       <NA>                NA   2021           2 401320565
## 116                       <NA>                NA   2021           2 401320565
## 117                       <NA>                NA   2021           2 401320565
## 118                       <NA>                NA   2021           2 401320565
## 119                       <NA>                NA   2021           2 401320565
## 120                       <NA>                NA   2021           2 401320565
## 121                       <NA>                NA   2021           2 401320565
## 122                       <NA>                NA   2021           2 401320565
## 123                       <NA>                NA   2021           2 401320565
## 124                       <NA>                NA   2021           2 401320565
## 125                       <NA>                NA   2021           2 401320565
## 126                       <NA>                NA   2021           2 401320565
## 127                       <NA>                NA   2021           2 401320565
## 128                       <NA>                NA   2021           2 401320565
## 129                       <NA>                NA   2021           2 401320565
## 130                       <NA>                NA   2021           2 401320565
## 131                       <NA>                NA   2021           2 401320565
## 132                       <NA>                NA   2021           2 401320565
## 133                       <NA>                NA   2021           2 401320565
## 134                       <NA>                NA   2021           2 401320565
## 135                       <NA>                NA   2021           2 401320565
## 136                       <NA>                NA   2021           2 401320565
## 137                       <NA>                NA   2021           2 401320565
## 138                       <NA>                NA   2021           2 401320565
## 139                       <NA>                NA   2021           2 401320565
## 140                       <NA>                NA   2021           2 401320565
## 141                       <NA>                NA   2021           2 401320565
## 142                       <NA>                NA   2021           2 401320565
## 143                       <NA>                NA   2021           2 401320565
## 144                       <NA>                NA   2021           2 401320565
## 145                       <NA>                NA   2021           2 401320565
## 146                       <NA>                NA   2021           2 401320565
## 147                       <NA>                NA   2021           2 401320565
## 148                       <NA>                NA   2021           2 401320565
## 149                       <NA>                NA   2021           2 401320565
## 150                       <NA>                NA   2021           2 401320565
## 151                       <NA>                NA   2021           2 401320565
## 152                       <NA>                NA   2021           2 401320565
## 153                       <NA>                NA   2021           2 401320565
## 154                       <NA>                NA   2021           2 401320565
## 155                       <NA>                NA   2021           2 401320565
## 156                       <NA>                NA   2021           2 401320565
## 157                       <NA>                NA   2021           2 401320565
## 158                       <NA>                NA   2021           2 401320565
## 159                       <NA>                NA   2021           2 401320565
## 160                       <NA>                NA   2021           2 401320565
## 161                       <NA>                NA   2021           2 401320565
## 162                       <NA>                NA   2021           2 401320565
## 163                       <NA>                NA   2021           2 401320565
## 164                       <NA>                NA   2021           2 401320565
## 165                       <NA>                NA   2021           2 401320565
## 166                       <NA>                NA   2021           2 401320565
## 167                       <NA>                NA   2021           2 401320565
## 168                       <NA>                NA   2021           2 401320565
## 169                       <NA>                NA   2021           2 401320565
## 170                       <NA>                NA   2021           2 401320565
## 171                       <NA>                NA   2021           2 401320565
## 172                       <NA>                NA   2021           2 401320565
## 173                       <NA>                NA   2021           2 401320565
## 174                       <NA>                NA   2021           2 401320565
## 175                       <NA>                NA   2021           2 401320565
## 176                       <NA>                NA   2021           2 401320565
## 177                       <NA>                NA   2021           2 401320565
## 178                       <NA>                NA   2021           2 401320565
## 179                       <NA>                NA   2021           2 401320565
## 180                       <NA>                NA   2021           2 401320565
## 181                       <NA>                NA   2021           2 401320565
## 182                       <NA>                NA   2021           2 401320565
## 183                       <NA>                NA   2021           2 401320565
## 184                       <NA>                NA   2021           2 401320565
## 185                       <NA>                NA   2021           2 401320565
## 186                       <NA>                NA   2021           2 401320565
## 187                       <NA>                NA   2021           2 401320565
## 188                       <NA>                NA   2021           2 401320565
## 189                       <NA>                NA   2021           2 401320565
## 190                       <NA>                NA   2021           2 401320565
## 191                       <NA>                NA   2021           2 401320565
## 192                       <NA>                NA   2021           2 401320565
## 193                       <NA>                NA   2021           2 401320565
## 194                       <NA>                NA   2021           2 401320565
## 195                       <NA>                NA   2021           2 401320565
## 196                       <NA>                NA   2021           2 401320565
## 197                       <NA>                NA   2021           2 401320565
## 198                       <NA>                NA   2021           2 401320565
## 199                       <NA>                NA   2021           2 401320565
## 200                       <NA>                NA   2021           2 401320565
## 201                       <NA>                NA   2021           2 401320565
## 202                       <NA>                NA   2021           2 401320565
## 203                       <NA>                NA   2021           2 401320565
## 204                       <NA>                NA   2021           2 401320565
## 205                       <NA>                NA   2021           2 401320565
## 206                       <NA>                NA   2021           2 401320565
## 207                       <NA>                NA   2021           2 401320565
## 208                       <NA>                NA   2021           2 401320565
## 209                       <NA>                NA   2021           2 401320565
## 210                       <NA>                NA   2021           2 401320565
## 211                       <NA>                NA   2021           2 401320565
## 212                       <NA>                NA   2021           2 401320565
## 213                       <NA>                NA   2021           2 401320565
## 214                       <NA>                NA   2021           2 401320565
## 215                       <NA>                NA   2021           2 401320565
## 216                       <NA>                NA   2021           2 401320565
## 217                       <NA>                NA   2021           2 401320565
## 218                       <NA>                NA   2021           2 401320565
## 219                       <NA>                NA   2021           2 401320565
## 220                       <NA>                NA   2021           2 401320565
## 221                       <NA>                NA   2021           2 401320565
## 222                       <NA>                NA   2021           2 401320565
## 223                       <NA>                NA   2021           2 401320565
## 224                       <NA>                NA   2021           2 401320565
## 225                       <NA>                NA   2021           2 401320565
## 226                       <NA>                NA   2021           2 401320565
## 227                       <NA>                NA   2021           2 401320565
## 228                       <NA>                NA   2021           2 401320565
## 229                       <NA>                NA   2021           2 401320565
## 230                       <NA>                NA   2021           2 401320565
## 231                       <NA>                NA   2021           2 401320565
## 232                       <NA>                NA   2021           2 401320565
## 233                       <NA>                NA   2021           2 401320565
## 234                       <NA>                NA   2021           2 401320565
## 235                       <NA>                NA   2021           2 401320565
## 236                       <NA>                NA   2021           2 401320565
## 237                       <NA>                NA   2021           2 401320565
## 238                       <NA>                NA   2021           2 401320565
## 239                       <NA>                NA   2021           2 401320565
## 240                       <NA>                NA   2021           2 401320565
## 241                       <NA>                NA   2021           2 401320565
## 242                       <NA>                NA   2021           2 401320565
## 243                       <NA>                NA   2021           2 401320565
## 244                       <NA>                NA   2021           2 401320565
## 245                       <NA>                NA   2021           2 401320565
## 246                       <NA>                NA   2021           2 401320565
## 247                       <NA>                NA   2021           2 401320565
## 248                       <NA>                NA   2021           2 401320565
## 249                       <NA>                NA   2021           2 401320565
## 250                       <NA>                NA   2021           2 401320565
## 251                       <NA>                NA   2021           2 401320565
## 252                       <NA>                NA   2021           2 401320565
## 253                       <NA>                NA   2021           2 401320565
## 254                       <NA>                NA   2021           2 401320565
## 255                       <NA>                NA   2021           2 401320565
## 256                       <NA>                NA   2021           2 401320565
## 257                       <NA>                NA   2021           2 401320565
## 258                       <NA>                NA   2021           2 401320565
## 259                       <NA>                NA   2021           2 401320565
## 260                       <NA>                NA   2021           2 401320565
## 261                       <NA>                NA   2021           2 401320565
## 262                       <NA>                NA   2021           2 401320565
## 263                       <NA>                NA   2021           2 401320565
## 264                       <NA>                NA   2021           2 401320565
## 265                       <NA>                NA   2021           2 401320565
## 266                       <NA>                NA   2021           2 401320565
## 267                       <NA>                NA   2021           2 401320565
## 268                       <NA>                NA   2021           2 401320565
## 269                       <NA>                NA   2021           2 401320565
## 270                       <NA>                NA   2021           2 401320565
## 271                       <NA>                NA   2021           2 401320565
## 272                       <NA>                NA   2021           2 401320565
## 273                       <NA>                NA   2021           2 401320565
## 274                       <NA>                NA   2021           2 401320565
## 275                       <NA>                NA   2021           2 401320565
## 276                       <NA>                NA   2021           2 401320565
## 277                       <NA>                NA   2021           2 401320565
## 278                       <NA>                NA   2021           2 401320565
## 279                       <NA>                NA   2021           2 401320565
## 280                       <NA>                NA   2021           2 401320565
## 281                       <NA>                NA   2021           2 401320565
## 282                       <NA>                NA   2021           2 401320565
## 283                       <NA>                NA   2021           2 401320565
## 284                       <NA>                NA   2021           2 401320565
## 285                       <NA>                NA   2021           2 401320565
## 286                       <NA>                NA   2021           2 401320565
## 287                       <NA>                NA   2021           2 401320565
## 288                       <NA>                NA   2021           2 401320565
## 289                       <NA>                NA   2021           2 401320565
## 290                       <NA>                NA   2021           2 401320565
## 291                       <NA>                NA   2021           2 401320565
## 292                       <NA>                NA   2021           2 401320565
## 293                       <NA>                NA   2021           2 401320565
## 294                       <NA>                NA   2021           2 401320565
## 295                       <NA>                NA   2021           2 401320565
## 296                       <NA>                NA   2021           2 401320565
## 297                       <NA>                NA   2021           2 401320565
## 298                       <NA>                NA   2021           2 401320565
## 299                       <NA>                NA   2021           2 401320565
## 300                       <NA>                NA   2021           2 401320565
## 301                       <NA>                NA   2021           2 401320565
## 302                       <NA>                NA   2021           2 401320565
## 303                       <NA>                NA   2021           2 401320565
## 304                       <NA>                NA   2021           2 401320565
## 305                       <NA>                NA   2021           2 401320565
## 306                       <NA>                NA   2021           2 401320565
## 307                       <NA>                NA   2021           2 401320565
## 308                       <NA>                NA   2021           2 401320565
## 309                       <NA>                NA   2021           2 401320565
## 310                       <NA>                NA   2021           2 401320565
## 311                       <NA>                NA   2021           2 401320565
## 312                       <NA>                NA   2021           2 401320565
## 313                       <NA>                NA   2021           2 401320565
## 314                       <NA>                NA   2021           2 401320565
## 315                       <NA>                NA   2021           2 401320565
## 316                       <NA>                NA   2021           2 401320565
## 317                       <NA>                NA   2021           2 401320565
## 318                       <NA>                NA   2021           2 401320565
## 319                       <NA>                NA   2021           2 401320565
## 320                       <NA>                NA   2021           2 401320565
## 321                       <NA>                NA   2021           2 401320565
## 322                       <NA>                NA   2021           2 401320565
## 323                       <NA>                NA   2021           2 401320565
## 324                       <NA>                NA   2021           2 401320565
## 325                       <NA>                NA   2021           2 401320565
## 326                       <NA>                NA   2021           2 401320565
## 327                       <NA>                NA   2021           2 401320565
## 328                       <NA>                NA   2021           2 401320565
## 329                       <NA>                NA   2021           2 401320565
## 330                       <NA>                NA   2021           2 401320565
## 331                       <NA>                NA   2021           2 401320565
## 332                       <NA>                NA   2021           2 401320565
## 333                       <NA>                NA   2021           2 401320565
## 334                       <NA>                NA   2021           2 401320565
## 335                       <NA>                NA   2021           2 401320565
## 336                       <NA>                NA   2021           2 401320565
## 337                       <NA>                NA   2021           2 401320565
## 338                       <NA>                NA   2021           2 401320565
## 339                       <NA>                NA   2021           2 401320565
## 340                       <NA>                NA   2021           2 401320565
## 341                       <NA>                NA   2021           2 401320565
## 342                       <NA>                NA   2021           2 401320565
## 343                       <NA>                NA   2021           2 401320565
## 344                       <NA>                NA   2021           2 401320565
## 345                       <NA>                NA   2021           2 401320565
## 346                       <NA>                NA   2021           2 401320565
## 347                       <NA>                NA   2021           2 401320565
## 348                       <NA>                NA   2021           2 401320565
## 349                       <NA>                NA   2021           2 401320565
## 350                       <NA>                NA   2021           2 401320565
## 351                       <NA>                NA   2021           2 401320565
## 352                       <NA>                NA   2021           2 401320565
## 353                       <NA>                NA   2021           2 401320565
## 354                       <NA>                NA   2021           2 401320565
## 355                       <NA>                NA   2021           2 401320565
## 356                       <NA>                NA   2021           2 401320565
## 357                       <NA>                NA   2021           2 401320565
## 358                       <NA>                NA   2021           2 401320565
## 359                       <NA>                NA   2021           2 401320565
## 360                       <NA>                NA   2021           2 401320565
## 361                       <NA>                NA   2021           2 401320565
## 362                       <NA>                NA   2021           2 401320565
## 363                       <NA>                NA   2021           2 401320565
## 364                       <NA>                NA   2021           2 401320565
## 365                       <NA>                NA   2021           2 401320565
## 366                       <NA>                NA   2021           2 401320565
## 367                       <NA>                NA   2021           2 401320565
## 368                       <NA>                NA   2021           2 401320565
## 369                       <NA>                NA   2021           2 401320565
## 370                       <NA>                NA   2021           2 401320565
## 371                       <NA>                NA   2021           2 401320565
## 372                       <NA>                NA   2021           2 401320565
## 373                       <NA>                NA   2021           2 401320565
## 374                       <NA>                NA   2021           2 401320565
## 375                       <NA>                NA   2021           2 401320565
## 376                       <NA>                NA   2021           2 401320565
## 377                       <NA>                NA   2021           2 401320565
## 378                       <NA>                NA   2021           2 401320565
## 379                       <NA>                NA   2021           2 401320565
## 380                       <NA>                NA   2021           2 401320565
## 381                       <NA>                NA   2021           2 401320565
## 382                       <NA>                NA   2021           2 401320565
## 383                       <NA>                NA   2021           2 401320565
## 384                       <NA>                NA   2021           2 401320565
## 385                       <NA>                NA   2021           2 401320565
## 386                       <NA>                NA   2021           2 401320565
## 387                       <NA>                NA   2021           2 401320565
## 388                       <NA>                NA   2021           2 401320565
## 389                       <NA>                NA   2021           2 401320565
## 390                       <NA>                NA   2021           2 401320565
## 391                       <NA>                NA   2021           2 401320565
## 392                       <NA>                NA   2021           2 401320565
## 393                       <NA>                NA   2021           2 401320565
## 394                       <NA>                NA   2021           2 401320565
## 395                       <NA>                NA   2021           2 401320565
## 396                       <NA>                NA   2021           2 401320565
## 397                       <NA>                NA   2021           2 401320565
## 398                       <NA>                NA   2021           2 401320565
## 399                       <NA>                NA   2021           2 401320565
## 400                       <NA>                NA   2021           2 401320565
## 401                       <NA>                NA   2021           2 401320565
## 402                       <NA>                NA   2021           2 401320565
## 403                       <NA>                NA   2021           2 401320565
## 404                       <NA>                NA   2021           2 401320565
## 405                       <NA>                NA   2021           2 401320565
## 406                       <NA>                NA   2021           2 401320565
## 407                       <NA>                NA   2021           2 401320565
## 408                       <NA>                NA   2021           2 401320565
## 409                       <NA>                NA   2021           2 401320565
## 410                       <NA>                NA   2021           2 401320565
## 411                       <NA>                NA   2021           2 401320565
## 412                       <NA>                NA   2021           2 401320565
## 413                    2529047                NA   2021           2 401320566
## 414                       <NA>                NA   2021           2 401320566
## 415                       <NA>                NA   2021           2 401320566
## 416                       <NA>                NA   2021           2 401320566
## 417                       <NA>                NA   2021           2 401320566
## 418                       <NA>                NA   2021           2 401320566
## 419                       <NA>                NA   2021           2 401320566
## 420                       <NA>                NA   2021           2 401320566
## 421                       <NA>                NA   2021           2 401320566
## 422                       <NA>                NA   2021           2 401320566
## 423                       <NA>                NA   2021           2 401320566
## 424                       <NA>                NA   2021           2 401320566
## 425                       <NA>                NA   2021           2 401320566
## 426                       <NA>                NA   2021           2 401320566
## 427                       <NA>                NA   2021           2 401320566
## 428                       <NA>                NA   2021           2 401320566
## 429                       <NA>                NA   2021           2 401320566
## 430                       <NA>                NA   2021           2 401320566
## 431                       <NA>                NA   2021           2 401320566
## 432                       <NA>                NA   2021           2 401320566
## 433                       <NA>                NA   2021           2 401320566
## 434                       <NA>                NA   2021           2 401320566
## 435                       <NA>                NA   2021           2 401320566
## 436                       <NA>                NA   2021           2 401320566
## 437                       <NA>                NA   2021           2 401320566
## 438                       <NA>                NA   2021           2 401320566
## 439                       <NA>                NA   2021           2 401320566
## 440                       <NA>                NA   2021           2 401320566
## 441                       <NA>                NA   2021           2 401320566
## 442                       <NA>                NA   2021           2 401320566
## 443                       <NA>                NA   2021           2 401320566
## 444                       <NA>                NA   2021           2 401320566
## 445                       <NA>                NA   2021           2 401320566
## 446                       <NA>                NA   2021           2 401320566
## 447                       <NA>                NA   2021           2 401320566
## 448                       <NA>                NA   2021           2 401320566
## 449                       <NA>                NA   2021           2 401320566
## 450                       <NA>                NA   2021           2 401320566
## 451                       <NA>                NA   2021           2 401320566
## 452                       <NA>                NA   2021           2 401320566
## 453                       <NA>                NA   2021           2 401320566
## 454                       <NA>                NA   2021           2 401320566
## 455                       <NA>                NA   2021           2 401320566
## 456                       <NA>                NA   2021           2 401320566
## 457                       <NA>                NA   2021           2 401320566
## 458                       <NA>                NA   2021           2 401320566
## 459                       <NA>                NA   2021           2 401320566
## 460                       <NA>                NA   2021           2 401320566
## 461                       <NA>                NA   2021           2 401320566
## 462                       <NA>                NA   2021           2 401320566
## 463                       <NA>                NA   2021           2 401320566
## 464                       <NA>                NA   2021           2 401320566
## 465                       <NA>                NA   2021           2 401320566
## 466                       <NA>                NA   2021           2 401320566
## 467                       <NA>                NA   2021           2 401320566
## 468                       <NA>                NA   2021           2 401320566
## 469                       <NA>                NA   2021           2 401320566
## 470                       <NA>                NA   2021           2 401320566
## 471                       <NA>                NA   2021           2 401320566
## 472                       <NA>                NA   2021           2 401320566
## 473                       <NA>                NA   2021           2 401320566
## 474                       <NA>                NA   2021           2 401320566
## 475                       <NA>                NA   2021           2 401320566
## 476                       <NA>                NA   2021           2 401320566
## 477                       <NA>                NA   2021           2 401320566
## 478                       <NA>                NA   2021           2 401320566
## 479                       <NA>                NA   2021           2 401320566
## 480                       <NA>                NA   2021           2 401320566
## 481                       <NA>                NA   2021           2 401320566
## 482                       <NA>                NA   2021           2 401320566
## 483                       <NA>                NA   2021           2 401320566
## 484                       <NA>                NA   2021           2 401320566
## 485                       <NA>                NA   2021           2 401320566
## 486                       <NA>                NA   2021           2 401320566
## 487                       <NA>                NA   2021           2 401320566
## 488                       <NA>                NA   2021           2 401320566
## 489                       <NA>                NA   2021           2 401320566
## 490                       <NA>                NA   2021           2 401320566
## 491                       <NA>                NA   2021           2 401320566
## 492                       <NA>                NA   2021           2 401320566
## 493                       <NA>                NA   2021           2 401320566
## 494                       <NA>                NA   2021           2 401320566
## 495                       <NA>                NA   2021           2 401320566
## 496                       <NA>                NA   2021           2 401320566
## 497                       <NA>                NA   2021           2 401320566
## 498                       <NA>                NA   2021           2 401320566
## 499                       <NA>                NA   2021           2 401320566
## 500                       <NA>                NA   2021           2 401320566
## 501                       <NA>                NA   2021           2 401320566
## 502                       <NA>                NA   2021           2 401320566
## 503                       <NA>                NA   2021           2 401320566
## 504                       <NA>                NA   2021           2 401320566
## 505                       <NA>                NA   2021           2 401320566
## 506                       <NA>                NA   2021           2 401320566
## 507                       <NA>                NA   2021           2 401320566
## 508                       <NA>                NA   2021           2 401320566
## 509                       <NA>                NA   2021           2 401320566
## 510                       <NA>                NA   2021           2 401320566
## 511                       <NA>                NA   2021           2 401320566
## 512                       <NA>                NA   2021           2 401320566
## 513                       <NA>                NA   2021           2 401320566
## 514                       <NA>                NA   2021           2 401320566
## 515                       <NA>                NA   2021           2 401320566
## 516                       <NA>                NA   2021           2 401320566
## 517                       <NA>                NA   2021           2 401320566
## 518                       <NA>                NA   2021           2 401320566
## 519                       <NA>                NA   2021           2 401320566
## 520                       <NA>                NA   2021           2 401320566
## 521                       <NA>                NA   2021           2 401320566
## 522                       <NA>                NA   2021           2 401320566
## 523                       <NA>                NA   2021           2 401320566
## 524                       <NA>                NA   2021           2 401320566
## 525                       <NA>                NA   2021           2 401320566
## 526                       <NA>                NA   2021           2 401320566
## 527                       <NA>                NA   2021           2 401320566
## 528                       <NA>                NA   2021           2 401320566
## 529                       <NA>                NA   2021           2 401320566
## 530                       <NA>                NA   2021           2 401320566
## 531                       <NA>                NA   2021           2 401320566
## 532                       <NA>                NA   2021           2 401320566
## 533                       <NA>                NA   2021           2 401320566
## 534                       <NA>                NA   2021           2 401320566
## 535                       <NA>                NA   2021           2 401320566
## 536                       <NA>                NA   2021           2 401320566
## 537                       <NA>                NA   2021           2 401320566
## 538                       <NA>                NA   2021           2 401320566
## 539                       <NA>                NA   2021           2 401320566
## 540                       <NA>                NA   2021           2 401320566
## 541                       <NA>                NA   2021           2 401320566
## 542                       <NA>                NA   2021           2 401320566
## 543                       <NA>                NA   2021           2 401320566
## 544                       <NA>                NA   2021           2 401320566
## 545                       <NA>                NA   2021           2 401320566
## 546                       <NA>                NA   2021           2 401320566
## 547                       <NA>                NA   2021           2 401320566
## 548                       <NA>                NA   2021           2 401320566
## 549                       <NA>                NA   2021           2 401320566
## 550                       <NA>                NA   2021           2 401320566
## 551                       <NA>                NA   2021           2 401320566
## 552                       <NA>                NA   2021           2 401320566
## 553                       <NA>                NA   2021           2 401320566
## 554                       <NA>                NA   2021           2 401320566
## 555                       <NA>                NA   2021           2 401320566
## 556                       <NA>                NA   2021           2 401320566
## 557                       <NA>                NA   2021           2 401320566
## 558                       <NA>                NA   2021           2 401320566
## 559                       <NA>                NA   2021           2 401320566
## 560                       <NA>                NA   2021           2 401320566
## 561                       <NA>                NA   2021           2 401320566
## 562                       <NA>                NA   2021           2 401320566
## 563                       <NA>                NA   2021           2 401320566
## 564                       <NA>                NA   2021           2 401320566
## 565                       <NA>                NA   2021           2 401320566
## 566                       <NA>                NA   2021           2 401320566
## 567                       <NA>                NA   2021           2 401320566
## 568                       <NA>                NA   2021           2 401320566
## 569                       <NA>                NA   2021           2 401320566
## 570                       <NA>                NA   2021           2 401320566
## 571                       <NA>                NA   2021           2 401320566
## 572                       <NA>                NA   2021           2 401320566
## 573                       <NA>                NA   2021           2 401320566
## 574                       <NA>                NA   2021           2 401320566
## 575                       <NA>                NA   2021           2 401320566
## 576                       <NA>                NA   2021           2 401320566
## 577                       <NA>                NA   2021           2 401320566
## 578                       <NA>                NA   2021           2 401320566
## 579                       <NA>                NA   2021           2 401320566
## 580                       <NA>                NA   2021           2 401320566
## 581                       <NA>                NA   2021           2 401320566
## 582                       <NA>                NA   2021           2 401320566
## 583                       <NA>                NA   2021           2 401320566
## 584                       <NA>                NA   2021           2 401320566
## 585                       <NA>                NA   2021           2 401320566
## 586                       <NA>                NA   2021           2 401320566
## 587                       <NA>                NA   2021           2 401320566
## 588                       <NA>                NA   2021           2 401320566
## 589                       <NA>                NA   2021           2 401320566
## 590                       <NA>                NA   2021           2 401320566
## 591                       <NA>                NA   2021           2 401320566
## 592                       <NA>                NA   2021           2 401320566
## 593                       <NA>                NA   2021           2 401320566
## 594                       <NA>                NA   2021           2 401320566
## 595                       <NA>                NA   2021           2 401320566
## 596                       <NA>                NA   2021           2 401320566
## 597                       <NA>                NA   2021           2 401320566
## 598                       <NA>                NA   2021           2 401320566
## 599                       <NA>                NA   2021           2 401320566
## 600                       <NA>                NA   2021           2 401320566
## 601                       <NA>                NA   2021           2 401320566
## 602                       <NA>                NA   2021           2 401320566
## 603                       <NA>                NA   2021           2 401320566
## 604                       <NA>                NA   2021           2 401320566
## 605                       <NA>                NA   2021           2 401320566
## 606                       <NA>                NA   2021           2 401320566
## 607                       <NA>                NA   2021           2 401320566
## 608                       <NA>                NA   2021           2 401320566
## 609                       <NA>                NA   2021           2 401320566
## 610                       <NA>                NA   2021           2 401320566
## 611                       <NA>                NA   2021           2 401320566
## 612                       <NA>                NA   2021           2 401320566
## 613                       <NA>                NA   2021           2 401320566
## 614                       <NA>                NA   2021           2 401320566
## 615                       <NA>                NA   2021           2 401320566
## 616                       <NA>                NA   2021           2 401320566
## 617                       <NA>                NA   2021           2 401320566
## 618                       <NA>                NA   2021           2 401320566
## 619                       <NA>                NA   2021           2 401320566
## 620                       <NA>                NA   2021           2 401320566
## 621                       <NA>                NA   2021           2 401320566
## 622                       <NA>                NA   2021           2 401320566
## 623                       <NA>                NA   2021           2 401320566
## 624                       <NA>                NA   2021           2 401320566
## 625                       <NA>                NA   2021           2 401320566
## 626                       <NA>                NA   2021           2 401320566
## 627                       <NA>                NA   2021           2 401320566
## 628                       <NA>                NA   2021           2 401320566
## 629                       <NA>                NA   2021           2 401320566
## 630                       <NA>                NA   2021           2 401320566
## 631                       <NA>                NA   2021           2 401320566
## 632                       <NA>                NA   2021           2 401320566
## 633                       <NA>                NA   2021           2 401320566
## 634                       <NA>                NA   2021           2 401320566
## 635                       <NA>                NA   2021           2 401320566
## 636                       <NA>                NA   2021           2 401320566
## 637                       <NA>                NA   2021           2 401320566
## 638                       <NA>                NA   2021           2 401320566
## 639                       <NA>                NA   2021           2 401320566
## 640                       <NA>                NA   2021           2 401320566
## 641                       <NA>                NA   2021           2 401320566
## 642                       <NA>                NA   2021           2 401320566
## 643                       <NA>                NA   2021           2 401320566
## 644                       <NA>                NA   2021           2 401320566
## 645                       <NA>                NA   2021           2 401320566
## 646                       <NA>                NA   2021           2 401320566
## 647                       <NA>                NA   2021           2 401320566
## 648                       <NA>                NA   2021           2 401320566
## 649                       <NA>                NA   2021           2 401320566
## 650                       <NA>                NA   2021           2 401320566
## 651                       <NA>                NA   2021           2 401320566
## 652                       <NA>                NA   2021           2 401320566
## 653                       <NA>                NA   2021           2 401320566
## 654                       <NA>                NA   2021           2 401320566
## 655                       <NA>                NA   2021           2 401320566
## 656                       <NA>                NA   2021           2 401320566
## 657                       <NA>                NA   2021           2 401320566
## 658                       <NA>                NA   2021           2 401320566
## 659                       <NA>                NA   2021           2 401320566
## 660                       <NA>                NA   2021           2 401320566
## 661                       <NA>                NA   2021           2 401320566
## 662                       <NA>                NA   2021           2 401320566
## 663                       <NA>                NA   2021           2 401320566
## 664                       <NA>                NA   2021           2 401320566
## 665                       <NA>                NA   2021           2 401320566
## 666                       <NA>                NA   2021           2 401320566
## 667                       <NA>                NA   2021           2 401320566
## 668                       <NA>                NA   2021           2 401320566
## 669                       <NA>                NA   2021           2 401320566
## 670                       <NA>                NA   2021           2 401320566
## 671                       <NA>                NA   2021           2 401320566
## 672                       <NA>                NA   2021           2 401320566
## 673                       <NA>                NA   2021           2 401320566
## 674                       <NA>                NA   2021           2 401320566
## 675                       <NA>                NA   2021           2 401320566
## 676                       <NA>                NA   2021           2 401320566
## 677                       <NA>                NA   2021           2 401320566
## 678                       <NA>                NA   2021           2 401320566
## 679                       <NA>                NA   2021           2 401320566
## 680                       <NA>                NA   2021           2 401320566
## 681                       <NA>                NA   2021           2 401320566
## 682                       <NA>                NA   2021           2 401320566
## 683                       <NA>                NA   2021           2 401320566
## 684                       <NA>                NA   2021           2 401320566
## 685                       <NA>                NA   2021           2 401320566
## 686                       <NA>                NA   2021           2 401320566
## 687                       <NA>                NA   2021           2 401320566
## 688                       <NA>                NA   2021           2 401320566
## 689                       <NA>                NA   2021           2 401320566
## 690                       <NA>                NA   2021           2 401320566
## 691                       <NA>                NA   2021           2 401320566
## 692                       <NA>                NA   2021           2 401320566
## 693                       <NA>                NA   2021           2 401320566
## 694                       <NA>                NA   2021           2 401320566
## 695                       <NA>                NA   2021           2 401320566
## 696                       <NA>                NA   2021           2 401320566
## 697                       <NA>                NA   2021           2 401320566
## 698                       <NA>                NA   2021           2 401320566
## 699                       <NA>                NA   2021           2 401320566
## 700                       <NA>                NA   2021           2 401320566
## 701                       <NA>                NA   2021           2 401320566
## 702                       <NA>                NA   2021           2 401320566
## 703                       <NA>                NA   2021           2 401320566
## 704                       <NA>                NA   2021           2 401320566
## 705                       <NA>                NA   2021           2 401320566
## 706                       <NA>                NA   2021           2 401320566
## 707                       <NA>                NA   2021           2 401320566
## 708                       <NA>                NA   2021           2 401320566
## 709                       <NA>                NA   2021           2 401320566
## 710                       <NA>                NA   2021           2 401320566
## 711                       <NA>                NA   2021           2 401320566
## 712                       <NA>                NA   2021           2 401320566
## 713                       <NA>                NA   2021           2 401320566
## 714                       <NA>                NA   2021           2 401320566
## 715                       <NA>                NA   2021           2 401320566
## 716                       <NA>                NA   2021           2 401320566
## 717                       <NA>                NA   2021           2 401320566
## 718                       <NA>                NA   2021           2 401320566
## 719                       <NA>                NA   2021           2 401320566
## 720                       <NA>                NA   2021           2 401320566
## 721                       <NA>                NA   2021           2 401320566
## 722                       <NA>                NA   2021           2 401320566
## 723                       <NA>                NA   2021           2 401320566
## 724                       <NA>                NA   2021           2 401320566
## 725                       <NA>                NA   2021           2 401320566
## 726                       <NA>                NA   2021           2 401320566
## 727                       <NA>                NA   2021           2 401320566
## 728                       <NA>                NA   2021           2 401320566
## 729                       <NA>                NA   2021           2 401320566
## 730                       <NA>                NA   2021           2 401320566
## 731                       <NA>                NA   2021           2 401320566
## 732                       <NA>                NA   2021           2 401320566
## 733                       <NA>                NA   2021           2 401320566
## 734                       <NA>                NA   2021           2 401320566
## 735                       <NA>                NA   2021           2 401320566
## 736                       <NA>                NA   2021           2 401320566
## 737                       <NA>                NA   2021           2 401320566
## 738                       <NA>                NA   2021           2 401320566
## 739                       <NA>                NA   2021           2 401320566
## 740                       <NA>                NA   2021           2 401320566
## 741                       <NA>                NA   2021           2 401320566
## 742                       <NA>                NA   2021           2 401320566
## 743                       <NA>                NA   2021           2 401320566
## 744                       <NA>                NA   2021           2 401320566
## 745                       <NA>                NA   2021           2 401320566
## 746                       <NA>                NA   2021           2 401320566
## 747                       <NA>                NA   2021           2 401320566
## 748                       <NA>                NA   2021           2 401320566
## 749                       <NA>                NA   2021           2 401320566
## 750                       <NA>                NA   2021           2 401320566
## 751                       <NA>                NA   2021           2 401320566
## 752                        860                NA   2021           2 401320566
## 753                       <NA>                NA   2021           2 401320566
## 754                       <NA>                NA   2021           2 401320566
## 755                       <NA>                NA   2021           2 401320566
## 756                       <NA>                NA   2021           2 401320566
## 757                       <NA>                NA   2021           2 401320566
## 758                       <NA>                NA   2021           2 401320566
## 759                       <NA>                NA   2021           2 401320566
## 760                       <NA>                NA   2021           2 401320566
## 761                       <NA>                NA   2021           2 401320566
## 762                       <NA>                NA   2021           2 401320566
## 763                       <NA>                NA   2021           2 401320566
## 764                       <NA>                NA   2021           2 401320566
## 765                       <NA>                NA   2021           2 401320566
## 766                       <NA>                NA   2021           2 401320566
## 767                       <NA>                NA   2021           2 401320566
## 768                       <NA>                NA   2021           2 401320566
## 769                       <NA>                NA   2021           2 401320566
## 770                       <NA>                NA   2021           2 401320566
## 771                       <NA>                NA   2021           2 401320566
## 772                       <NA>                NA   2021           2 401320566
## 773                       <NA>                NA   2021           2 401320566
## 774                       <NA>                NA   2021           2 401320566
## 775                       <NA>                NA   2021           2 401320566
## 776                       <NA>                NA   2021           2 401320566
## 777                       <NA>                NA   2021           2 401320566
## 778                       <NA>                NA   2021           2 401320566
## 779                       <NA>                NA   2021           2 401320566
## 780                       <NA>                NA   2021           2 401320566
## 781                       <NA>                NA   2021           2 401320566
## 782                       <NA>                NA   2021           2 401320566
## 783                       <NA>                NA   2021           2 401320566
## 784                       <NA>                NA   2021           2 401320566
## 785                       <NA>                NA   2021           2 401320566
## 786                       <NA>                NA   2021           2 401320566
## 787                       <NA>                NA   2021           2 401320566
## 788                       <NA>                NA   2021           2 401320566
## 789                       <NA>                NA   2021           2 401320566
## 790                       <NA>                NA   2021           2 401320566
## 791                       <NA>                NA   2021           2 401320566
## 792                       <NA>                NA   2021           2 401320566
## 793                       <NA>                NA   2021           2 401320566
## 794                       <NA>                NA   2021           2 401320566
## 795                       <NA>                NA   2021           2 401320566
## 796                       <NA>                NA   2021           2 401320566
## 797                       <NA>                NA   2021           2 401320566
## 798                       <NA>                NA   2021           2 401320566
## 799                       <NA>                NA   2021           2 401320566
## 800                    2999035                NA   2021           2 401320567
## 801                       <NA>                NA   2021           2 401320567
## 802                       <NA>                NA   2021           2 401320567
## 803                       <NA>                NA   2021           2 401320567
## 804                       <NA>                NA   2021           2 401320567
## 805                       <NA>                NA   2021           2 401320567
## 806                       <NA>                NA   2021           2 401320567
## 807                       <NA>                NA   2021           2 401320567
## 808                       <NA>                NA   2021           2 401320567
## 809                       <NA>                NA   2021           2 401320567
## 810                       <NA>                NA   2021           2 401320567
## 811                       <NA>                NA   2021           2 401320567
## 812                       <NA>                NA   2021           2 401320567
## 813                       <NA>                NA   2021           2 401320567
## 814                       <NA>                NA   2021           2 401320567
## 815                       <NA>                NA   2021           2 401320567
## 816                       <NA>                NA   2021           2 401320567
## 817                       <NA>                NA   2021           2 401320567
## 818                       <NA>                NA   2021           2 401320567
## 819                       <NA>                NA   2021           2 401320567
## 820                       <NA>                NA   2021           2 401320567
## 821                       <NA>                NA   2021           2 401320567
## 822                       <NA>                NA   2021           2 401320567
## 823                       <NA>                NA   2021           2 401320567
## 824                       <NA>                NA   2021           2 401320567
## 825                       <NA>                NA   2021           2 401320567
## 826                       <NA>                NA   2021           2 401320567
## 827                       <NA>                NA   2021           2 401320567
## 828                       <NA>                NA   2021           2 401320567
## 829                       <NA>                NA   2021           2 401320567
## 830                       <NA>                NA   2021           2 401320567
## 831                       <NA>                NA   2021           2 401320567
## 832                       <NA>                NA   2021           2 401320567
## 833                       <NA>                NA   2021           2 401320567
## 834                       <NA>                NA   2021           2 401320567
## 835                       <NA>                NA   2021           2 401320567
## 836                       <NA>                NA   2021           2 401320567
## 837                       <NA>                NA   2021           2 401320567
## 838                       <NA>                NA   2021           2 401320567
## 839                       <NA>                NA   2021           2 401320567
## 840                       <NA>                NA   2021           2 401320567
## 841                       <NA>                NA   2021           2 401320567
## 842                       <NA>                NA   2021           2 401320567
## 843                       <NA>                NA   2021           2 401320567
## 844                       <NA>                NA   2021           2 401320567
## 845                       <NA>                NA   2021           2 401320567
## 846                       <NA>                NA   2021           2 401320567
## 847                       <NA>                NA   2021           2 401320567
## 848                       <NA>                NA   2021           2 401320567
## 849                       <NA>                NA   2021           2 401320567
## 850                       <NA>                NA   2021           2 401320567
## 851                       <NA>                NA   2021           2 401320567
## 852                       <NA>                NA   2021           2 401320567
## 853                       <NA>                NA   2021           2 401320567
## 854                       <NA>                NA   2021           2 401320567
## 855                       <NA>                NA   2021           2 401320567
## 856                       <NA>                NA   2021           2 401320567
## 857                       <NA>                NA   2021           2 401320567
## 858                       <NA>                NA   2021           2 401320567
## 859                       <NA>                NA   2021           2 401320567
## 860                       <NA>                NA   2021           2 401320567
## 861                       <NA>                NA   2021           2 401320567
## 862                       <NA>                NA   2021           2 401320567
## 863                       <NA>                NA   2021           2 401320567
## 864                       <NA>                NA   2021           2 401320567
## 865                       <NA>                NA   2021           2 401320567
## 866                       <NA>                NA   2021           2 401320567
## 867                       <NA>                NA   2021           2 401320567
## 868                       <NA>                NA   2021           2 401320567
## 869                       <NA>                NA   2021           2 401320567
## 870                       <NA>                NA   2021           2 401320567
## 871                       <NA>                NA   2021           2 401320567
## 872                       <NA>                NA   2021           2 401320567
## 873                       <NA>                NA   2021           2 401320567
## 874                       <NA>                NA   2021           2 401320567
## 875                       <NA>                NA   2021           2 401320567
## 876                       <NA>                NA   2021           2 401320567
## 877                       <NA>                NA   2021           2 401320567
## 878                       <NA>                NA   2021           2 401320567
## 879                       <NA>                NA   2021           2 401320567
## 880                       <NA>                NA   2021           2 401320567
## 881                       <NA>                NA   2021           2 401320567
## 882                       <NA>                NA   2021           2 401320567
## 883                       <NA>                NA   2021           2 401320567
## 884                       <NA>                NA   2021           2 401320567
## 885                       <NA>                NA   2021           2 401320567
## 886                       <NA>                NA   2021           2 401320567
## 887                       <NA>                NA   2021           2 401320567
## 888                       <NA>                NA   2021           2 401320567
## 889                       <NA>                NA   2021           2 401320567
## 890                       <NA>                NA   2021           2 401320567
## 891                       <NA>                NA   2021           2 401320567
## 892                       <NA>                NA   2021           2 401320567
## 893                       <NA>                NA   2021           2 401320567
## 894                       <NA>                NA   2021           2 401320567
## 895                       <NA>                NA   2021           2 401320567
## 896                       <NA>                NA   2021           2 401320567
## 897                       <NA>                NA   2021           2 401320567
## 898                       <NA>                NA   2021           2 401320567
## 899                       <NA>                NA   2021           2 401320567
## 900                       <NA>                NA   2021           2 401320567
## 901                       <NA>                NA   2021           2 401320567
## 902                       <NA>                NA   2021           2 401320567
## 903                       <NA>                NA   2021           2 401320567
## 904                       <NA>                NA   2021           2 401320567
## 905                       <NA>                NA   2021           2 401320567
## 906                       <NA>                NA   2021           2 401320567
## 907                       <NA>                NA   2021           2 401320567
## 908                       <NA>                NA   2021           2 401320567
## 909                       <NA>                NA   2021           2 401320567
## 910                       <NA>                NA   2021           2 401320567
## 911                       <NA>                NA   2021           2 401320567
## 912                       <NA>                NA   2021           2 401320567
## 913                       <NA>                NA   2021           2 401320567
## 914                       <NA>                NA   2021           2 401320567
## 915                       <NA>                NA   2021           2 401320567
## 916                       <NA>                NA   2021           2 401320567
## 917                       <NA>                NA   2021           2 401320567
## 918                       <NA>                NA   2021           2 401320567
## 919                       <NA>                NA   2021           2 401320567
## 920                       <NA>                NA   2021           2 401320567
## 921                       <NA>                NA   2021           2 401320567
## 922                       <NA>                NA   2021           2 401320567
## 923                       <NA>                NA   2021           2 401320567
## 924                       <NA>                NA   2021           2 401320567
## 925                       <NA>                NA   2021           2 401320567
## 926                       <NA>                NA   2021           2 401320567
## 927                       <NA>                NA   2021           2 401320567
## 928                       <NA>                NA   2021           2 401320567
## 929                       <NA>                NA   2021           2 401320567
## 930                       <NA>                NA   2021           2 401320567
## 931                       <NA>                NA   2021           2 401320567
## 932                       <NA>                NA   2021           2 401320567
## 933                       <NA>                NA   2021           2 401320567
## 934                       <NA>                NA   2021           2 401320567
## 935                       <NA>                NA   2021           2 401320567
## 936                       <NA>                NA   2021           2 401320567
## 937                       <NA>                NA   2021           2 401320567
## 938                       <NA>                NA   2021           2 401320567
## 939                       <NA>                NA   2021           2 401320567
## 940                       <NA>                NA   2021           2 401320567
## 941                       <NA>                NA   2021           2 401320567
## 942                       <NA>                NA   2021           2 401320567
## 943                       <NA>                NA   2021           2 401320567
## 944                       <NA>                NA   2021           2 401320567
## 945                       <NA>                NA   2021           2 401320567
## 946                       <NA>                NA   2021           2 401320567
## 947                       <NA>                NA   2021           2 401320567
## 948                       <NA>                NA   2021           2 401320567
## 949                       <NA>                NA   2021           2 401320567
## 950                       <NA>                NA   2021           2 401320567
## 951                       <NA>                NA   2021           2 401320567
## 952                       <NA>                NA   2021           2 401320567
## 953                       <NA>                NA   2021           2 401320567
## 954                       <NA>                NA   2021           2 401320567
## 955                       <NA>                NA   2021           2 401320567
## 956                       <NA>                NA   2021           2 401320567
## 957                       <NA>                NA   2021           2 401320567
## 958                       <NA>                NA   2021           2 401320567
## 959                       <NA>                NA   2021           2 401320567
## 960                       <NA>                NA   2021           2 401320567
## 961                       <NA>                NA   2021           2 401320567
## 962                       <NA>                NA   2021           2 401320567
## 963                       <NA>                NA   2021           2 401320567
## 964                       <NA>                NA   2021           2 401320567
## 965                       <NA>                NA   2021           2 401320567
## 966                       <NA>                NA   2021           2 401320567
## 967                       <NA>                NA   2021           2 401320567
## 968                       <NA>                NA   2021           2 401320567
## 969                       <NA>                NA   2021           2 401320567
## 970                       <NA>                NA   2021           2 401320567
## 971                       <NA>                NA   2021           2 401320567
## 972                       <NA>                NA   2021           2 401320567
## 973                       <NA>                NA   2021           2 401320567
## 974                       <NA>                NA   2021           2 401320567
## 975                       <NA>                NA   2021           2 401320567
## 976                       <NA>                NA   2021           2 401320567
## 977                       <NA>                NA   2021           2 401320567
## 978                       <NA>                NA   2021           2 401320567
## 979                       <NA>                NA   2021           2 401320567
## 980                       <NA>                NA   2021           2 401320567
## 981                       <NA>                NA   2021           2 401320567
## 982                       <NA>                NA   2021           2 401320567
## 983                       <NA>                NA   2021           2 401320567
## 984                       <NA>                NA   2021           2 401320567
## 985                       <NA>                NA   2021           2 401320567
## 986                       <NA>                NA   2021           2 401320567
## 987                       <NA>                NA   2021           2 401320567
## 988                       <NA>                NA   2021           2 401320567
## 989                       <NA>                NA   2021           2 401320567
## 990                       <NA>                NA   2021           2 401320567
## 991                       <NA>                NA   2021           2 401320567
## 992                       <NA>                NA   2021           2 401320567
## 993                       <NA>                NA   2021           2 401320567
## 994                       <NA>                NA   2021           2 401320567
## 995                       <NA>                NA   2021           2 401320567
## 996                       <NA>                NA   2021           2 401320567
## 997                       <NA>                NA   2021           2 401320567
## 998                       <NA>                NA   2021           2 401320567
## 999                       <NA>                NA   2021           2 401320567
## 1000                      <NA>                NA   2021           2 401320567
## 1001                      <NA>                NA   2021           2 401320567
## 1002                      <NA>                NA   2021           2 401320567
## 1003                      <NA>                NA   2021           2 401320567
## 1004                      <NA>                NA   2021           2 401320567
## 1005                      <NA>                NA   2021           2 401320567
## 1006                      <NA>                NA   2021           2 401320567
## 1007                      <NA>                NA   2021           2 401320567
## 1008                      <NA>                NA   2021           2 401320567
## 1009                      <NA>                NA   2021           2 401320567
## 1010                      <NA>                NA   2021           2 401320567
## 1011                      <NA>                NA   2021           2 401320567
## 1012                      <NA>                NA   2021           2 401320567
## 1013                      <NA>                NA   2021           2 401320567
## 1014                      <NA>                NA   2021           2 401320567
## 1015                      <NA>                NA   2021           2 401320567
## 1016                      <NA>                NA   2021           2 401320567
## 1017                      <NA>                NA   2021           2 401320567
## 1018                      <NA>                NA   2021           2 401320567
## 1019                      <NA>                NA   2021           2 401320567
## 1020                      <NA>                NA   2021           2 401320567
## 1021                      <NA>                NA   2021           2 401320567
## 1022                      <NA>                NA   2021           2 401320567
## 1023                      <NA>                NA   2021           2 401320567
## 1024                      <NA>                NA   2021           2 401320567
## 1025                      <NA>                NA   2021           2 401320567
## 1026                      <NA>                NA   2021           2 401320567
## 1027                      <NA>                NA   2021           2 401320567
## 1028                      <NA>                NA   2021           2 401320567
## 1029                      <NA>                NA   2021           2 401320567
## 1030                      <NA>                NA   2021           2 401320567
## 1031                      <NA>                NA   2021           2 401320567
## 1032                      <NA>                NA   2021           2 401320567
## 1033                      <NA>                NA   2021           2 401320567
## 1034                      <NA>                NA   2021           2 401320567
## 1035                      <NA>                NA   2021           2 401320567
## 1036                      <NA>                NA   2021           2 401320567
## 1037                      <NA>                NA   2021           2 401320567
## 1038                      <NA>                NA   2021           2 401320567
## 1039                      <NA>                NA   2021           2 401320567
## 1040                      <NA>                NA   2021           2 401320567
## 1041                      <NA>                NA   2021           2 401320567
## 1042                      <NA>                NA   2021           2 401320567
## 1043                      <NA>                NA   2021           2 401320567
## 1044                      <NA>                NA   2021           2 401320567
## 1045                      <NA>                NA   2021           2 401320567
## 1046                      <NA>                NA   2021           2 401320567
## 1047                      <NA>                NA   2021           2 401320567
## 1048                      <NA>                NA   2021           2 401320567
## 1049                      <NA>                NA   2021           2 401320567
## 1050                      <NA>                NA   2021           2 401320567
## 1051                      <NA>                NA   2021           2 401320567
## 1052                      <NA>                NA   2021           2 401320567
## 1053                      <NA>                NA   2021           2 401320567
## 1054                      <NA>                NA   2021           2 401320567
## 1055                      <NA>                NA   2021           2 401320567
## 1056                      <NA>                NA   2021           2 401320567
## 1057                      <NA>                NA   2021           2 401320567
## 1058                      <NA>                NA   2021           2 401320567
## 1059                      <NA>                NA   2021           2 401320567
## 1060                      <NA>                NA   2021           2 401320567
## 1061                      <NA>                NA   2021           2 401320567
## 1062                      <NA>                NA   2021           2 401320567
## 1063                      <NA>                NA   2021           2 401320567
## 1064                      <NA>                NA   2021           2 401320567
## 1065                      <NA>                NA   2021           2 401320567
## 1066                      <NA>                NA   2021           2 401320567
## 1067                      <NA>                NA   2021           2 401320567
## 1068                      <NA>                NA   2021           2 401320567
## 1069                      <NA>                NA   2021           2 401320567
## 1070                      <NA>                NA   2021           2 401320567
## 1071                      <NA>                NA   2021           2 401320567
## 1072                      <NA>                NA   2021           2 401320567
## 1073                      <NA>                NA   2021           2 401320567
## 1074                      <NA>                NA   2021           2 401320567
## 1075                      <NA>                NA   2021           2 401320567
## 1076                      <NA>                NA   2021           2 401320567
## 1077                      <NA>                NA   2021           2 401320567
## 1078                      <NA>                NA   2021           2 401320567
## 1079                      <NA>                NA   2021           2 401320567
## 1080                      <NA>                NA   2021           2 401320567
## 1081                      <NA>                NA   2021           2 401320567
## 1082                      <NA>                NA   2021           2 401320567
## 1083                      <NA>                NA   2021           2 401320567
## 1084                      <NA>                NA   2021           2 401320567
## 1085                      <NA>                NA   2021           2 401320567
## 1086                      <NA>                NA   2021           2 401320567
## 1087                      <NA>                NA   2021           2 401320567
## 1088                      <NA>                NA   2021           2 401320567
## 1089                      <NA>                NA   2021           2 401320567
## 1090                      <NA>                NA   2021           2 401320567
## 1091                      <NA>                NA   2021           2 401320567
## 1092                      <NA>                NA   2021           2 401320567
## 1093                      <NA>                NA   2021           2 401320567
## 1094                      <NA>                NA   2021           2 401320567
## 1095                      <NA>                NA   2021           2 401320567
## 1096                      <NA>                NA   2021           2 401320567
## 1097                   2999035                NA   2021           2 401320567
## 1098                      <NA>                NA   2021           2 401320567
## 1099                      <NA>                NA   2021           2 401320567
## 1100                      <NA>                NA   2021           2 401320567
## 1101                      <NA>                NA   2021           2 401320567
## 1102                      <NA>                NA   2021           2 401320567
## 1103                      <NA>                NA   2021           2 401320567
## 1104                      <NA>                NA   2021           2 401320567
## 1105                      <NA>                NA   2021           2 401320567
## 1106                      <NA>                NA   2021           2 401320567
## 1107                      <NA>                NA   2021           2 401320567
## 1108                      <NA>                NA   2021           2 401320567
## 1109                      <NA>                NA   2021           2 401320567
## 1110                      <NA>                NA   2021           2 401320567
## 1111                      <NA>                NA   2021           2 401320567
## 1112                      <NA>                NA   2021           2 401320567
## 1113                      <NA>                NA   2021           2 401320567
## 1114                      <NA>                NA   2021           2 401320567
## 1115                      <NA>                NA   2021           2 401320567
## 1116                      <NA>                NA   2021           2 401320567
## 1117                      <NA>                NA   2021           2 401320567
## 1118                      <NA>                NA   2021           2 401320567
## 1119                      <NA>                NA   2021           2 401320567
## 1120                      <NA>                NA   2021           2 401320567
## 1121                      <NA>                NA   2021           2 401320567
## 1122                      <NA>                NA   2021           2 401320567
## 1123                      <NA>                NA   2021           2 401320567
## 1124                      <NA>                NA   2021           2 401320567
## 1125                      <NA>                NA   2021           2 401320567
## 1126                      <NA>                NA   2021           2 401320567
## 1127                      <NA>                NA   2021           2 401320567
## 1128                      <NA>                NA   2021           2 401320567
## 1129                      <NA>                NA   2021           2 401320567
## 1130                      <NA>                NA   2021           2 401320567
## 1131                      <NA>                NA   2021           2 401320567
## 1132                      <NA>                NA   2021           2 401320567
## 1133                      <NA>                NA   2021           2 401320567
## 1134                      <NA>                NA   2021           2 401320567
## 1135                      <NA>                NA   2021           2 401320567
## 1136                      <NA>                NA   2021           2 401320567
## 1137                      <NA>                NA   2021           2 401320567
## 1138                      <NA>                NA   2021           2 401320567
## 1139                      <NA>                NA   2021           2 401320567
## 1140                      <NA>                NA   2021           2 401320567
## 1141                      <NA>                NA   2021           2 401320567
## 1142                      <NA>                NA   2021           2 401320567
## 1143                      <NA>                NA   2021           2 401320567
## 1144                      <NA>                NA   2021           2 401320567
## 1145                      <NA>                NA   2021           2 401320567
## 1146                      <NA>                NA   2021           2 401320567
## 1147                      <NA>                NA   2021           2 401320567
## 1148                      <NA>                NA   2021           2 401320567
## 1149                      <NA>                NA   2021           2 401320567
## 1150                      <NA>                NA   2021           2 401320567
## 1151                      <NA>                NA   2021           2 401320567
## 1152                      <NA>                NA   2021           2 401320567
## 1153                      <NA>                NA   2021           2 401320567
## 1154                      <NA>                NA   2021           2 401320567
## 1155                      <NA>                NA   2021           2 401320567
## 1156                      <NA>                NA   2021           2 401320567
## 1157                      <NA>                NA   2021           2 401320567
## 1158                      <NA>                NA   2021           2 401320567
## 1159                      <NA>                NA   2021           2 401320567
## 1160                      <NA>                NA   2021           2 401320567
## 1161                      <NA>                NA   2021           2 401320567
## 1162                      <NA>                NA   2021           2 401320567
## 1163                      <NA>                NA   2021           2 401320567
## 1164                      <NA>                NA   2021           2 401320567
## 1165                      <NA>                NA   2021           2 401320567
## 1166                      <NA>                NA   2021           2 401320567
## 1167                      <NA>                NA   2021           2 401320567
## 1168                      <NA>                NA   2021           2 401320567
## 1169                      <NA>                NA   2021           2 401320567
## 1170                      <NA>                NA   2021           2 401320567
## 1171                      <NA>                NA   2021           2 401320567
## 1172                      <NA>                NA   2021           2 401320567
## 1173                      <NA>                NA   2021           2 401320567
## 1174                      <NA>                NA   2021           2 401320567
## 1175                      <NA>                NA   2021           2 401320567
## 1176                      <NA>                NA   2021           2 401320567
## 1177                      <NA>                NA   2021           2 401320567
## 1178                      <NA>                NA   2021           2 401320567
## 1179                      <NA>                NA   2021           2 401320567
## 1180                      <NA>                NA   2021           2 401320567
## 1181                      <NA>                NA   2021           2 401320567
## 1182                      <NA>                NA   2021           2 401320567
## 1183                      <NA>                NA   2021           2 401320567
## 1184                      <NA>                NA   2021           2 401320567
## 1185                      <NA>                NA   2021           2 401320567
## 1186                      <NA>                NA   2021           2 401320567
## 1187                      <NA>                NA   2021           2 401320567
## 1188                      <NA>                NA   2021           2 401320567
## 1189                      <NA>                NA   2021           2 401320567
## 1190                      <NA>                NA   2021           2 401320567
## 1191                      <NA>                NA   2021           2 401320567
## 1192                      <NA>                NA   2021           2 401320567
## 1193                      <NA>                NA   2021           2 401320567
## 1194                      <NA>                NA   2021           2 401320567
## 1195                      <NA>                NA   2021           2 401320567
## 1196                      <NA>                NA   2021           2 401320567
## 1197                   2491214                NA   2021           2 401320568
## 1198                      <NA>                NA   2021           2 401320568
## 1199                      <NA>                NA   2021           2 401320568
## 1200                      <NA>                NA   2021           2 401320568
## 1201                      <NA>                NA   2021           2 401320568
## 1202                      <NA>                NA   2021           2 401320568
## 1203                      <NA>                NA   2021           2 401320568
## 1204                      <NA>                NA   2021           2 401320568
## 1205                      <NA>                NA   2021           2 401320568
## 1206                      <NA>                NA   2021           2 401320568
## 1207                      <NA>                NA   2021           2 401320568
## 1208                      <NA>                NA   2021           2 401320568
## 1209                      <NA>                NA   2021           2 401320568
## 1210                      <NA>                NA   2021           2 401320568
## 1211                      <NA>                NA   2021           2 401320568
## 1212                      <NA>                NA   2021           2 401320568
## 1213                      <NA>                NA   2021           2 401320568
## 1214                      <NA>                NA   2021           2 401320568
## 1215                      <NA>                NA   2021           2 401320568
## 1216                      <NA>                NA   2021           2 401320568
## 1217                      <NA>                NA   2021           2 401320568
## 1218                      <NA>                NA   2021           2 401320568
## 1219                      <NA>                NA   2021           2 401320568
## 1220                      <NA>                NA   2021           2 401320568
## 1221                      <NA>                NA   2021           2 401320568
## 1222                      <NA>                NA   2021           2 401320568
## 1223                      <NA>                NA   2021           2 401320568
## 1224                      <NA>                NA   2021           2 401320568
## 1225                      <NA>                NA   2021           2 401320568
## 1226                      <NA>                NA   2021           2 401320568
## 1227                      <NA>                NA   2021           2 401320568
## 1228                      <NA>                NA   2021           2 401320568
## 1229                      <NA>                NA   2021           2 401320568
## 1230                       856                NA   2021           2 401320568
## 1231                      <NA>                NA   2021           2 401320568
## 1232                      <NA>                NA   2021           2 401320568
## 1233                      <NA>                NA   2021           2 401320568
## 1234                      <NA>                NA   2021           2 401320568
## 1235                      <NA>                NA   2021           2 401320568
## 1236                      <NA>                NA   2021           2 401320568
## 1237                      <NA>                NA   2021           2 401320568
## 1238                      <NA>                NA   2021           2 401320568
## 1239                      <NA>                NA   2021           2 401320568
## 1240                      <NA>                NA   2021           2 401320568
## 1241                      <NA>                NA   2021           2 401320568
## 1242                      <NA>                NA   2021           2 401320568
## 1243                      <NA>                NA   2021           2 401320568
## 1244                      <NA>                NA   2021           2 401320568
## 1245                      <NA>                NA   2021           2 401320568
## 1246                      <NA>                NA   2021           2 401320568
## 1247                      <NA>                NA   2021           2 401320568
## 1248                      <NA>                NA   2021           2 401320568
## 1249                      <NA>                NA   2021           2 401320568
## 1250                      <NA>                NA   2021           2 401320568
## 1251                      <NA>                NA   2021           2 401320568
## 1252                      <NA>                NA   2021           2 401320568
## 1253                      <NA>                NA   2021           2 401320568
## 1254                      <NA>                NA   2021           2 401320568
## 1255                      <NA>                NA   2021           2 401320568
## 1256                      <NA>                NA   2021           2 401320568
## 1257                      <NA>                NA   2021           2 401320568
## 1258                      <NA>                NA   2021           2 401320568
## 1259                      <NA>                NA   2021           2 401320568
## 1260                      <NA>                NA   2021           2 401320568
## 1261                      <NA>                NA   2021           2 401320568
## 1262                      <NA>                NA   2021           2 401320568
## 1263                      <NA>                NA   2021           2 401320568
## 1264                      <NA>                NA   2021           2 401320568
## 1265                      <NA>                NA   2021           2 401320568
## 1266                      <NA>                NA   2021           2 401320568
## 1267                      <NA>                NA   2021           2 401320568
## 1268                      <NA>                NA   2021           2 401320568
## 1269                      <NA>                NA   2021           2 401320568
## 1270                      <NA>                NA   2021           2 401320568
## 1271                      <NA>                NA   2021           2 401320568
## 1272                      <NA>                NA   2021           2 401320568
## 1273                      <NA>                NA   2021           2 401320568
## 1274                      <NA>                NA   2021           2 401320568
## 1275                      <NA>                NA   2021           2 401320568
## 1276                      <NA>                NA   2021           2 401320568
## 1277                      <NA>                NA   2021           2 401320568
## 1278                      <NA>                NA   2021           2 401320568
## 1279                      <NA>                NA   2021           2 401320568
## 1280                      <NA>                NA   2021           2 401320568
## 1281                      <NA>                NA   2021           2 401320568
## 1282                      <NA>                NA   2021           2 401320568
## 1283                      <NA>                NA   2021           2 401320568
## 1284                      <NA>                NA   2021           2 401320568
## 1285                      <NA>                NA   2021           2 401320568
## 1286                      <NA>                NA   2021           2 401320568
## 1287                      <NA>                NA   2021           2 401320568
## 1288                      <NA>                NA   2021           2 401320568
## 1289                      <NA>                NA   2021           2 401320568
## 1290                      <NA>                NA   2021           2 401320568
## 1291                      <NA>                NA   2021           2 401320568
## 1292                      <NA>                NA   2021           2 401320568
## 1293                      <NA>                NA   2021           2 401320568
## 1294                      <NA>                NA   2021           2 401320568
## 1295                      <NA>                NA   2021           2 401320568
## 1296                      <NA>                NA   2021           2 401320568
## 1297                      <NA>                NA   2021           2 401320568
## 1298                      <NA>                NA   2021           2 401320568
## 1299                      <NA>                NA   2021           2 401320568
## 1300                      <NA>                NA   2021           2 401320568
## 1301                      <NA>                NA   2021           2 401320568
## 1302                      <NA>                NA   2021           2 401320568
## 1303                      <NA>                NA   2021           2 401320568
## 1304                      <NA>                NA   2021           2 401320568
## 1305                      <NA>                NA   2021           2 401320568
## 1306                      <NA>                NA   2021           2 401320568
## 1307                      <NA>                NA   2021           2 401320568
## 1308                      <NA>                NA   2021           2 401320568
## 1309                      <NA>                NA   2021           2 401320568
## 1310                      <NA>                NA   2021           2 401320568
## 1311                      <NA>                NA   2021           2 401320568
## 1312                      <NA>                NA   2021           2 401320568
## 1313                      <NA>                NA   2021           2 401320568
## 1314                      <NA>                NA   2021           2 401320568
## 1315                      <NA>                NA   2021           2 401320568
## 1316                      <NA>                NA   2021           2 401320568
## 1317                      <NA>                NA   2021           2 401320568
## 1318                      <NA>                NA   2021           2 401320568
## 1319                      <NA>                NA   2021           2 401320568
## 1320                      <NA>                NA   2021           2 401320568
## 1321                      <NA>                NA   2021           2 401320568
## 1322                      <NA>                NA   2021           2 401320568
## 1323                      <NA>                NA   2021           2 401320568
## 1324                      <NA>                NA   2021           2 401320568
## 1325                      <NA>                NA   2021           2 401320568
## 1326                      <NA>                NA   2021           2 401320568
## 1327                      <NA>                NA   2021           2 401320568
## 1328                      <NA>                NA   2021           2 401320568
## 1329                      <NA>                NA   2021           2 401320568
## 1330                      <NA>                NA   2021           2 401320568
## 1331                      <NA>                NA   2021           2 401320568
## 1332                      <NA>                NA   2021           2 401320568
## 1333                   2491214                NA   2021           2 401320568
## 1334                      <NA>                NA   2021           2 401320568
## 1335                      <NA>                NA   2021           2 401320568
## 1336                      <NA>                NA   2021           2 401320568
## 1337                      <NA>                NA   2021           2 401320568
## 1338                      <NA>                NA   2021           2 401320568
## 1339                      <NA>                NA   2021           2 401320568
## 1340                      <NA>                NA   2021           2 401320568
## 1341                      <NA>                NA   2021           2 401320568
## 1342                      <NA>                NA   2021           2 401320568
## 1343                      <NA>                NA   2021           2 401320568
## 1344                      <NA>                NA   2021           2 401320568
## 1345                      <NA>                NA   2021           2 401320568
## 1346                      <NA>                NA   2021           2 401320568
## 1347                      <NA>                NA   2021           2 401320568
## 1348                      <NA>                NA   2021           2 401320568
## 1349                      <NA>                NA   2021           2 401320568
## 1350                      <NA>                NA   2021           2 401320568
## 1351                      <NA>                NA   2021           2 401320568
## 1352                      <NA>                NA   2021           2 401320568
## 1353                      <NA>                NA   2021           2 401320568
## 1354                      <NA>                NA   2021           2 401320568
## 1355                      <NA>                NA   2021           2 401320568
## 1356                      <NA>                NA   2021           2 401320568
## 1357                      <NA>                NA   2021           2 401320568
## 1358                      <NA>                NA   2021           2 401320568
## 1359                      <NA>                NA   2021           2 401320568
## 1360                      <NA>                NA   2021           2 401320568
## 1361                      <NA>                NA   2021           2 401320568
## 1362                      <NA>                NA   2021           2 401320568
## 1363                      <NA>                NA   2021           2 401320568
## 1364                      <NA>                NA   2021           2 401320568
## 1365                      <NA>                NA   2021           2 401320568
## 1366                      <NA>                NA   2021           2 401320568
## 1367                      <NA>                NA   2021           2 401320568
## 1368                      <NA>                NA   2021           2 401320568
## 1369                      <NA>                NA   2021           2 401320568
## 1370                      <NA>                NA   2021           2 401320568
## 1371                      <NA>                NA   2021           2 401320568
## 1372                      <NA>                NA   2021           2 401320568
## 1373                      <NA>                NA   2021           2 401320568
## 1374                      <NA>                NA   2021           2 401320568
## 1375                      <NA>                NA   2021           2 401320568
## 1376                      <NA>                NA   2021           2 401320568
## 1377                      <NA>                NA   2021           2 401320568
## 1378                      <NA>                NA   2021           2 401320568
## 1379                      <NA>                NA   2021           2 401320568
## 1380                      <NA>                NA   2021           2 401320568
## 1381                      <NA>                NA   2021           2 401320568
## 1382                      <NA>                NA   2021           2 401320568
## 1383                      <NA>                NA   2021           2 401320568
## 1384                      <NA>                NA   2021           2 401320568
## 1385                      <NA>                NA   2021           2 401320568
## 1386                      <NA>                NA   2021           2 401320568
## 1387                      <NA>                NA   2021           2 401320568
## 1388                      <NA>                NA   2021           2 401320568
## 1389                      <NA>                NA   2021           2 401320568
## 1390                      <NA>                NA   2021           2 401320568
## 1391                      <NA>                NA   2021           2 401320568
## 1392                      <NA>                NA   2021           2 401320568
## 1393                      <NA>                NA   2021           2 401320568
## 1394                      <NA>                NA   2021           2 401320568
## 1395                      <NA>                NA   2021           2 401320568
## 1396                      <NA>                NA   2021           2 401320568
## 1397                      <NA>                NA   2021           2 401320568
## 1398                      <NA>                NA   2021           2 401320568
## 1399                      <NA>                NA   2021           2 401320568
## 1400                      <NA>                NA   2021           2 401320568
## 1401                      <NA>                NA   2021           2 401320568
## 1402                      <NA>                NA   2021           2 401320568
## 1403                      <NA>                NA   2021           2 401320568
## 1404                      <NA>                NA   2021           2 401320568
## 1405                      <NA>                NA   2021           2 401320568
## 1406                      <NA>                NA   2021           2 401320568
## 1407                      <NA>                NA   2021           2 401320568
## 1408                      <NA>                NA   2021           2 401320568
## 1409                      <NA>                NA   2021           2 401320568
## 1410                      <NA>                NA   2021           2 401320568
## 1411                      <NA>                NA   2021           2 401320568
## 1412                      <NA>                NA   2021           2 401320568
## 1413                      <NA>                NA   2021           2 401320568
## 1414                      <NA>                NA   2021           2 401320568
## 1415                      <NA>                NA   2021           2 401320568
## 1416                      <NA>                NA   2021           2 401320568
## 1417                      <NA>                NA   2021           2 401320568
## 1418                      <NA>                NA   2021           2 401320568
## 1419                      <NA>                NA   2021           2 401320568
## 1420                      <NA>                NA   2021           2 401320568
## 1421                      <NA>                NA   2021           2 401320568
## 1422                      <NA>                NA   2021           2 401320568
## 1423                      <NA>                NA   2021           2 401320568
## 1424                      <NA>                NA   2021           2 401320568
## 1425                      <NA>                NA   2021           2 401320568
## 1426                      <NA>                NA   2021           2 401320568
## 1427                      <NA>                NA   2021           2 401320568
## 1428                      <NA>                NA   2021           2 401320568
## 1429                      <NA>                NA   2021           2 401320568
## 1430                      <NA>                NA   2021           2 401320568
## 1431                      <NA>                NA   2021           2 401320568
## 1432                      <NA>                NA   2021           2 401320568
## 1433                      <NA>                NA   2021           2 401320568
## 1434                      <NA>                NA   2021           2 401320568
## 1435                      <NA>                NA   2021           2 401320568
## 1436                      <NA>                NA   2021           2 401320568
## 1437                      <NA>                NA   2021           2 401320568
## 1438                      <NA>                NA   2021           2 401320568
## 1439                      <NA>                NA   2021           2 401320568
## 1440                      <NA>                NA   2021           2 401320568
## 1441                      <NA>                NA   2021           2 401320568
## 1442                      <NA>                NA   2021           2 401320568
## 1443                      <NA>                NA   2021           2 401320568
## 1444                      <NA>                NA   2021           2 401320568
## 1445                      <NA>                NA   2021           2 401320568
## 1446                      <NA>                NA   2021           2 401320568
## 1447                      <NA>                NA   2021           2 401320568
## 1448                      <NA>                NA   2021           2 401320568
## 1449                      <NA>                NA   2021           2 401320568
## 1450                      <NA>                NA   2021           2 401320568
## 1451                      <NA>                NA   2021           2 401320568
## 1452                      <NA>                NA   2021           2 401320568
## 1453                      <NA>                NA   2021           2 401320568
## 1454                      <NA>                NA   2021           2 401320568
## 1455                      <NA>                NA   2021           2 401320568
## 1456                      <NA>                NA   2021           2 401320568
## 1457                      <NA>                NA   2021           2 401320568
## 1458                      <NA>                NA   2021           2 401320568
## 1459                      <NA>                NA   2021           2 401320568
## 1460                      <NA>                NA   2021           2 401320568
## 1461                      <NA>                NA   2021           2 401320568
## 1462                      <NA>                NA   2021           2 401320568
## 1463                      <NA>                NA   2021           2 401320568
## 1464                      <NA>                NA   2021           2 401320568
## 1465                      <NA>                NA   2021           2 401320568
## 1466                      <NA>                NA   2021           2 401320568
## 1467                      <NA>                NA   2021           2 401320568
## 1468                      <NA>                NA   2021           2 401320568
## 1469                      <NA>                NA   2021           2 401320568
## 1470                      <NA>                NA   2021           2 401320568
## 1471                      <NA>                NA   2021           2 401320568
## 1472                      <NA>                NA   2021           2 401320568
## 1473                      <NA>                NA   2021           2 401320568
## 1474                      <NA>                NA   2021           2 401320568
## 1475                      <NA>                NA   2021           2 401320568
## 1476                      <NA>                NA   2021           2 401320568
## 1477                      <NA>                NA   2021           2 401320568
## 1478                      <NA>                NA   2021           2 401320568
## 1479                      <NA>                NA   2021           2 401320568
## 1480                      <NA>                NA   2021           2 401320568
## 1481                      <NA>                NA   2021           2 401320568
## 1482                      <NA>                NA   2021           2 401320568
## 1483                      <NA>                NA   2021           2 401320568
## 1484                      <NA>                NA   2021           2 401320568
## 1485                      <NA>                NA   2021           2 401320568
## 1486                      <NA>                NA   2021           2 401320568
## 1487                      <NA>                NA   2021           2 401320568
## 1488                      <NA>                NA   2021           2 401320568
## 1489                      <NA>                NA   2021           2 401320568
## 1490                      <NA>                NA   2021           2 401320568
## 1491                      <NA>                NA   2021           2 401320568
## 1492                      <NA>                NA   2021           2 401320568
## 1493                      <NA>                NA   2021           2 401320568
## 1494                      <NA>                NA   2021           2 401320568
## 1495                      <NA>                NA   2021           2 401320568
## 1496                      <NA>                NA   2021           2 401320568
## 1497                      <NA>                NA   2021           2 401320568
## 1498                      <NA>                NA   2021           2 401320568
## 1499                      <NA>                NA   2021           2 401320568
## 1500                      <NA>                NA   2021           2 401320568
## 1501                      <NA>                NA   2021           2 401320568
## 1502                      <NA>                NA   2021           2 401320568
## 1503                      <NA>                NA   2021           2 401320568
## 1504                      <NA>                NA   2021           2 401320568
## 1505                      <NA>                NA   2021           2 401320568
## 1506                      <NA>                NA   2021           2 401320568
## 1507                      <NA>                NA   2021           2 401320568
## 1508                      <NA>                NA   2021           2 401320568
## 1509                      <NA>                NA   2021           2 401320568
## 1510                      <NA>                NA   2021           2 401320568
## 1511                      <NA>                NA   2021           2 401320568
## 1512                      <NA>                NA   2021           2 401320568
## 1513                      <NA>                NA   2021           2 401320568
## 1514                      <NA>                NA   2021           2 401320568
## 1515                      <NA>                NA   2021           2 401320568
## 1516                      <NA>                NA   2021           2 401320568
## 1517                      <NA>                NA   2021           2 401320568
## 1518                      <NA>                NA   2021           2 401320568
## 1519                      <NA>                NA   2021           2 401320568
## 1520                      <NA>                NA   2021           2 401320568
## 1521                      <NA>                NA   2021           2 401320568
## 1522                      <NA>                NA   2021           2 401320568
## 1523                      <NA>                NA   2021           2 401320568
## 1524                      <NA>                NA   2021           2 401320568
## 1525                      <NA>                NA   2021           2 401320568
## 1526                      <NA>                NA   2021           2 401320568
## 1527                      <NA>                NA   2021           2 401320568
## 1528                      <NA>                NA   2021           2 401320568
## 1529                      <NA>                NA   2021           2 401320568
## 1530                      <NA>                NA   2021           2 401320568
## 1531                      <NA>                NA   2021           2 401320568
## 1532                      <NA>                NA   2021           2 401320568
## 1533                      <NA>                NA   2021           2 401320568
## 1534                      <NA>                NA   2021           2 401320568
## 1535                      <NA>                NA   2021           2 401320568
## 1536                      <NA>                NA   2021           2 401320568
## 1537                      <NA>                NA   2021           2 401320568
## 1538                      <NA>                NA   2021           2 401320568
## 1539                      <NA>                NA   2021           2 401320568
## 1540                      <NA>                NA   2021           2 401320568
## 1541                      <NA>                NA   2021           2 401320568
## 1542                      <NA>                NA   2021           2 401320568
## 1543                      <NA>                NA   2021           2 401320568
## 1544                      <NA>                NA   2021           2 401320568
## 1545                      <NA>                NA   2021           2 401320568
## 1546                      <NA>                NA   2021           2 401320568
## 1547                      <NA>                NA   2021           2 401320568
## 1548                      <NA>                NA   2021           2 401320568
## 1549                      <NA>                NA   2021           2 401320568
## 1550                      <NA>                NA   2021           2 401320568
## 1551                      <NA>                NA   2021           2 401320568
## 1552                      <NA>                NA   2021           2 401320568
## 1553                   2491214                NA   2021           2 401320568
## 1554                      <NA>                NA   2021           2 401320568
## 1555                      <NA>                NA   2021           2 401320568
## 1556                      <NA>                NA   2021           2 401320568
## 1557                      <NA>                NA   2021           2 401320568
## 1558                      <NA>                NA   2021           2 401320568
## 1559                      <NA>                NA   2021           2 401320568
## 1560                      <NA>                NA   2021           2 401320568
## 1561                      <NA>                NA   2021           2 401320568
## 1562                      <NA>                NA   2021           2 401320568
## 1563                      <NA>                NA   2021           2 401320568
## 1564                      <NA>                NA   2021           2 401320568
## 1565                      <NA>                NA   2021           2 401320568
## 1566                      <NA>                NA   2021           2 401320568
## 1567                      <NA>                NA   2021           2 401320568
## 1568                      <NA>                NA   2021           2 401320568
## 1569                      <NA>                NA   2021           2 401320568
## 1570                   2566453                NA   2021           2 401320568
## 1571                      <NA>                NA   2021           2 401320568
## 1572                      <NA>                NA   2021           2 401320568
## 1573                      <NA>                NA   2021           2 401320568
## 1574                      <NA>                NA   2021           2 401320568
## 1575                      <NA>                NA   2021           2 401320568
## 1576                      <NA>                NA   2021           2 401320568
## 1577                      <NA>                NA   2021           2 401320568
## 1578                      <NA>                NA   2021           2 401320568
## 1579                      <NA>                NA   2021           2 401320568
## 1580                      <NA>                NA   2021           2 401320568
## 1581                      <NA>                NA   2021           2 401320568
## 1582                      <NA>                NA   2021           2 401320568
## 1583                      <NA>                NA   2021           2 401320568
## 1584                      <NA>                NA   2021           2 401320568
## 1585                      <NA>                NA   2021           2 401320568
## 1586                      <NA>                NA   2021           2 401320568
## 1587                      <NA>                NA   2021           2 401320568
## 1588                      <NA>                NA   2021           2 401320568
## 1589                      <NA>                NA   2021           2 401320568
## 1590                      <NA>                NA   2021           2 401320568
## 1591                      <NA>                NA   2021           2 401320568
## 1592                      <NA>                NA   2021           2 401320568
## 1593                      <NA>                NA   2021           2 401320568
## 1594                      <NA>                NA   2021           2 401320568
## 1595                      <NA>                NA   2021           2 401320568
## 1596                      <NA>                NA   2021           2 401320568
## 1597                      <NA>                NA   2021           2 401320568
## 1598                      <NA>                NA   2021           2 401320568
## 1599                      <NA>                NA   2021           2 401320568
## 1600                      <NA>                NA   2021           2 401320568
## 1601                      <NA>                NA   2021           2 401320568
## 1602                      <NA>                NA   2021           2 401320568
## 1603                      <NA>                NA   2021           2 401320568
## 1604                      <NA>                NA   2021           2 401320568
## 1605                      <NA>                NA   2021           2 401320568
## 1606                      <NA>                NA   2021           2 401320568
## 1607                      <NA>                NA   2021           2 401320568
## 1608                      <NA>                NA   2021           2 401320568
## 1609                      <NA>                NA   2021           2 401320568
## 1610                      <NA>                NA   2021           2 401320568
## 1611                      <NA>                NA   2021           2 401320568
## 1612                      <NA>                NA   2021           2 401320568
## 1613                      <NA>                NA   2021           2 401320568
## 1614                      <NA>                NA   2021           2 401320568
## 1615                      <NA>                NA   2021           2 401320568
## 1616                      <NA>                NA   2021           2 401320568
## 1617                      <NA>                NA   2021           2 401320568
## 1618                      <NA>                NA   2021           2 401320568
## 1619                      <NA>                NA   2021           2 401320568
## 1620                      <NA>                NA   2021           2 401320568
## 1621                      <NA>                NA   2021           2 401320568
## 1622                      <NA>                NA   2021           2 401320568
## 1623                      <NA>                NA   2021           2 401320568
## 1624                      <NA>                NA   2021           2 401320568
## 1625                      <NA>                NA   2021           2 401320568
## 1626                       812                NA   2021           2 401320569
## 1627                      <NA>                NA   2021           2 401320569
## 1628                      <NA>                NA   2021           2 401320569
## 1629                      <NA>                NA   2021           2 401320569
## 1630                      <NA>                NA   2021           2 401320569
## 1631                      <NA>                NA   2021           2 401320569
## 1632                      <NA>                NA   2021           2 401320569
## 1633                      <NA>                NA   2021           2 401320569
## 1634                      <NA>                NA   2021           2 401320569
## 1635                      <NA>                NA   2021           2 401320569
## 1636                      <NA>                NA   2021           2 401320569
## 1637                      <NA>                NA   2021           2 401320569
## 1638                      <NA>                NA   2021           2 401320569
## 1639                      <NA>                NA   2021           2 401320569
## 1640                      <NA>                NA   2021           2 401320569
## 1641                      <NA>                NA   2021           2 401320569
## 1642                      <NA>                NA   2021           2 401320569
## 1643                      <NA>                NA   2021           2 401320569
## 1644                      <NA>                NA   2021           2 401320569
## 1645                      <NA>                NA   2021           2 401320569
## 1646                      <NA>                NA   2021           2 401320569
## 1647                      <NA>                NA   2021           2 401320569
## 1648                      <NA>                NA   2021           2 401320569
## 1649                      <NA>                NA   2021           2 401320569
## 1650                      <NA>                NA   2021           2 401320569
## 1651                      <NA>                NA   2021           2 401320569
## 1652                      <NA>                NA   2021           2 401320569
## 1653                      <NA>                NA   2021           2 401320569
## 1654                      <NA>                NA   2021           2 401320569
## 1655                      <NA>                NA   2021           2 401320569
## 1656                      <NA>                NA   2021           2 401320569
## 1657                      <NA>                NA   2021           2 401320569
## 1658                      <NA>                NA   2021           2 401320569
## 1659                      <NA>                NA   2021           2 401320569
## 1660                      <NA>                NA   2021           2 401320569
## 1661                      <NA>                NA   2021           2 401320569
## 1662                      <NA>                NA   2021           2 401320569
## 1663                      <NA>                NA   2021           2 401320569
## 1664                      <NA>                NA   2021           2 401320569
## 1665                      <NA>                NA   2021           2 401320569
## 1666                      <NA>                NA   2021           2 401320569
## 1667                      <NA>                NA   2021           2 401320569
## 1668                      <NA>                NA   2021           2 401320569
## 1669                      <NA>                NA   2021           2 401320569
## 1670                      <NA>                NA   2021           2 401320569
## 1671                      <NA>                NA   2021           2 401320569
## 1672                      <NA>                NA   2021           2 401320569
## 1673                      <NA>                NA   2021           2 401320569
## 1674                      <NA>                NA   2021           2 401320569
## 1675                      <NA>                NA   2021           2 401320569
## 1676                      <NA>                NA   2021           2 401320569
## 1677                      <NA>                NA   2021           2 401320569
## 1678                      <NA>                NA   2021           2 401320569
## 1679                      <NA>                NA   2021           2 401320569
## 1680                      <NA>                NA   2021           2 401320569
## 1681                      <NA>                NA   2021           2 401320569
## 1682                      <NA>                NA   2021           2 401320569
## 1683                      <NA>                NA   2021           2 401320569
## 1684                      <NA>                NA   2021           2 401320569
## 1685                      <NA>                NA   2021           2 401320569
## 1686                      <NA>                NA   2021           2 401320569
## 1687                      <NA>                NA   2021           2 401320569
## 1688                      <NA>                NA   2021           2 401320569
## 1689                      <NA>                NA   2021           2 401320569
## 1690                      <NA>                NA   2021           2 401320569
## 1691                      <NA>                NA   2021           2 401320569
## 1692                      <NA>                NA   2021           2 401320569
## 1693                      <NA>                NA   2021           2 401320569
## 1694                      <NA>                NA   2021           2 401320569
## 1695                      <NA>                NA   2021           2 401320569
## 1696                      <NA>                NA   2021           2 401320569
## 1697                      <NA>                NA   2021           2 401320569
## 1698                      <NA>                NA   2021           2 401320569
## 1699                      <NA>                NA   2021           2 401320569
## 1700                      <NA>                NA   2021           2 401320569
## 1701                      <NA>                NA   2021           2 401320569
## 1702                      <NA>                NA   2021           2 401320569
## 1703                      <NA>                NA   2021           2 401320569
## 1704                      <NA>                NA   2021           2 401320569
## 1705                      <NA>                NA   2021           2 401320569
## 1706                      <NA>                NA   2021           2 401320569
## 1707                      <NA>                NA   2021           2 401320569
## 1708                      <NA>                NA   2021           2 401320569
## 1709                      <NA>                NA   2021           2 401320569
## 1710                      <NA>                NA   2021           2 401320569
## 1711                      <NA>                NA   2021           2 401320569
## 1712                      <NA>                NA   2021           2 401320569
## 1713                      <NA>                NA   2021           2 401320569
## 1714                      <NA>                NA   2021           2 401320569
## 1715                      <NA>                NA   2021           2 401320569
## 1716                      <NA>                NA   2021           2 401320569
## 1717                      <NA>                NA   2021           2 401320569
## 1718                      <NA>                NA   2021           2 401320569
## 1719                      <NA>                NA   2021           2 401320569
## 1720                      <NA>                NA   2021           2 401320569
## 1721                      <NA>                NA   2021           2 401320569
## 1722                      <NA>                NA   2021           2 401320569
## 1723                      <NA>                NA   2021           2 401320569
## 1724                      <NA>                NA   2021           2 401320569
## 1725                      <NA>                NA   2021           2 401320569
## 1726                      <NA>                NA   2021           2 401320569
## 1727                      <NA>                NA   2021           2 401320569
## 1728                      <NA>                NA   2021           2 401320569
## 1729                      <NA>                NA   2021           2 401320569
## 1730                      <NA>                NA   2021           2 401320569
## 1731                      <NA>                NA   2021           2 401320569
## 1732                      <NA>                NA   2021           2 401320569
## 1733                      <NA>                NA   2021           2 401320569
## 1734                      <NA>                NA   2021           2 401320569
## 1735                      <NA>                NA   2021           2 401320569
## 1736                      <NA>                NA   2021           2 401320569
## 1737                      <NA>                NA   2021           2 401320569
## 1738                      <NA>                NA   2021           2 401320569
## 1739                      <NA>                NA   2021           2 401320569
## 1740                      <NA>                NA   2021           2 401320569
## 1741                      <NA>                NA   2021           2 401320569
## 1742                      <NA>                NA   2021           2 401320569
## 1743                      <NA>                NA   2021           2 401320569
## 1744                      <NA>                NA   2021           2 401320569
## 1745                      <NA>                NA   2021           2 401320569
## 1746                      <NA>                NA   2021           2 401320569
## 1747                      <NA>                NA   2021           2 401320569
## 1748                      <NA>                NA   2021           2 401320569
## 1749                      <NA>                NA   2021           2 401320569
## 1750                      <NA>                NA   2021           2 401320569
## 1751                      <NA>                NA   2021           2 401320569
## 1752                      <NA>                NA   2021           2 401320569
## 1753                      <NA>                NA   2021           2 401320569
## 1754                      <NA>                NA   2021           2 401320569
## 1755                      <NA>                NA   2021           2 401320569
## 1756                      <NA>                NA   2021           2 401320569
## 1757                      <NA>                NA   2021           2 401320569
## 1758                      <NA>                NA   2021           2 401320569
## 1759                      <NA>                NA   2021           2 401320569
## 1760                      <NA>                NA   2021           2 401320569
## 1761                      <NA>                NA   2021           2 401320569
## 1762                      <NA>                NA   2021           2 401320569
## 1763                      <NA>                NA   2021           2 401320569
## 1764                      <NA>                NA   2021           2 401320569
## 1765                      <NA>                NA   2021           2 401320569
## 1766                      <NA>                NA   2021           2 401320569
## 1767                      <NA>                NA   2021           2 401320569
## 1768                      <NA>                NA   2021           2 401320569
## 1769                      <NA>                NA   2021           2 401320569
## 1770                      <NA>                NA   2021           2 401320569
## 1771                      <NA>                NA   2021           2 401320569
## 1772                      <NA>                NA   2021           2 401320569
## 1773                      <NA>                NA   2021           2 401320569
## 1774                      <NA>                NA   2021           2 401320569
## 1775                      <NA>                NA   2021           2 401320569
## 1776                      <NA>                NA   2021           2 401320569
## 1777                      <NA>                NA   2021           2 401320569
## 1778                      <NA>                NA   2021           2 401320569
## 1779                      <NA>                NA   2021           2 401320569
## 1780                      <NA>                NA   2021           2 401320569
## 1781                      <NA>                NA   2021           2 401320569
## 1782                      <NA>                NA   2021           2 401320569
## 1783                      <NA>                NA   2021           2 401320569
## 1784                      <NA>                NA   2021           2 401320569
## 1785                      <NA>                NA   2021           2 401320569
## 1786                      <NA>                NA   2021           2 401320569
## 1787                      <NA>                NA   2021           2 401320569
## 1788                      <NA>                NA   2021           2 401320569
## 1789                      <NA>                NA   2021           2 401320569
## 1790                      <NA>                NA   2021           2 401320569
## 1791                      <NA>                NA   2021           2 401320569
## 1792                      <NA>                NA   2021           2 401320569
## 1793                      <NA>                NA   2021           2 401320569
## 1794                      <NA>                NA   2021           2 401320569
## 1795                      <NA>                NA   2021           2 401320569
## 1796                      <NA>                NA   2021           2 401320569
## 1797                      <NA>                NA   2021           2 401320569
## 1798                      <NA>                NA   2021           2 401320569
## 1799                      <NA>                NA   2021           2 401320569
## 1800                      <NA>                NA   2021           2 401320569
## 1801                      <NA>                NA   2021           2 401320569
## 1802                      <NA>                NA   2021           2 401320569
## 1803                      <NA>                NA   2021           2 401320569
## 1804                      <NA>                NA   2021           2 401320569
## 1805                      <NA>                NA   2021           2 401320569
## 1806                      <NA>                NA   2021           2 401320569
## 1807                      <NA>                NA   2021           2 401320569
## 1808                      <NA>                NA   2021           2 401320569
## 1809                      <NA>                NA   2021           2 401320569
## 1810                      <NA>                NA   2021           2 401320569
## 1811                      <NA>                NA   2021           2 401320569
## 1812                      <NA>                NA   2021           2 401320569
## 1813                      <NA>                NA   2021           2 401320569
## 1814                      <NA>                NA   2021           2 401320569
## 1815                      <NA>                NA   2021           2 401320569
## 1816                      <NA>                NA   2021           2 401320569
## 1817                      <NA>                NA   2021           2 401320569
## 1818                      <NA>                NA   2021           2 401320569
## 1819                      <NA>                NA   2021           2 401320569
## 1820                      <NA>                NA   2021           2 401320569
## 1821                      <NA>                NA   2021           2 401320569
## 1822                      <NA>                NA   2021           2 401320569
## 1823                      <NA>                NA   2021           2 401320569
## 1824                      <NA>                NA   2021           2 401320569
## 1825                      <NA>                NA   2021           2 401320569
## 1826                      <NA>                NA   2021           2 401320569
## 1827                      <NA>                NA   2021           2 401320569
## 1828                      <NA>                NA   2021           2 401320569
## 1829                      <NA>                NA   2021           2 401320569
## 1830                      <NA>                NA   2021           2 401320569
## 1831                      <NA>                NA   2021           2 401320569
## 1832                      <NA>                NA   2021           2 401320569
## 1833                      <NA>                NA   2021           2 401320569
## 1834                      <NA>                NA   2021           2 401320569
## 1835                      <NA>                NA   2021           2 401320569
## 1836                      <NA>                NA   2021           2 401320569
## 1837                      <NA>                NA   2021           2 401320569
## 1838                      <NA>                NA   2021           2 401320569
## 1839                      <NA>                NA   2021           2 401320569
## 1840                      <NA>                NA   2021           2 401320569
## 1841                      <NA>                NA   2021           2 401320569
## 1842                      <NA>                NA   2021           2 401320569
## 1843                      <NA>                NA   2021           2 401320569
## 1844                      <NA>                NA   2021           2 401320569
## 1845                      <NA>                NA   2021           2 401320569
## 1846                      <NA>                NA   2021           2 401320569
## 1847                      <NA>                NA   2021           2 401320569
## 1848                      <NA>                NA   2021           2 401320569
## 1849                      <NA>                NA   2021           2 401320569
## 1850                      <NA>                NA   2021           2 401320569
## 1851                      <NA>                NA   2021           2 401320569
## 1852                      <NA>                NA   2021           2 401320569
## 1853                      <NA>                NA   2021           2 401320569
## 1854                      <NA>                NA   2021           2 401320569
## 1855                      <NA>                NA   2021           2 401320569
## 1856                      <NA>                NA   2021           2 401320569
## 1857                      <NA>                NA   2021           2 401320569
## 1858                      <NA>                NA   2021           2 401320569
## 1859                      <NA>                NA   2021           2 401320569
## 1860                      <NA>                NA   2021           2 401320569
## 1861                      <NA>                NA   2021           2 401320569
## 1862                      <NA>                NA   2021           2 401320569
## 1863                      <NA>                NA   2021           2 401320569
## 1864                      <NA>                NA   2021           2 401320569
## 1865                      <NA>                NA   2021           2 401320569
## 1866                      <NA>                NA   2021           2 401320569
## 1867                      <NA>                NA   2021           2 401320569
## 1868                      <NA>                NA   2021           2 401320569
## 1869                      <NA>                NA   2021           2 401320569
## 1870                      <NA>                NA   2021           2 401320569
## 1871                      <NA>                NA   2021           2 401320569
## 1872                      <NA>                NA   2021           2 401320569
## 1873                      <NA>                NA   2021           2 401320569
## 1874                      <NA>                NA   2021           2 401320569
## 1875                      <NA>                NA   2021           2 401320569
## 1876                      <NA>                NA   2021           2 401320569
## 1877                      <NA>                NA   2021           2 401320569
## 1878                      <NA>                NA   2021           2 401320569
## 1879                      <NA>                NA   2021           2 401320569
## 1880                      <NA>                NA   2021           2 401320569
## 1881                      <NA>                NA   2021           2 401320569
## 1882                      <NA>                NA   2021           2 401320569
## 1883                      <NA>                NA   2021           2 401320569
## 1884                      <NA>                NA   2021           2 401320569
## 1885                      <NA>                NA   2021           2 401320569
## 1886                      <NA>                NA   2021           2 401320569
## 1887                      <NA>                NA   2021           2 401320569
## 1888                      <NA>                NA   2021           2 401320569
## 1889                      <NA>                NA   2021           2 401320569
## 1890                      <NA>                NA   2021           2 401320569
## 1891                      <NA>                NA   2021           2 401320569
## 1892                      <NA>                NA   2021           2 401320569
## 1893                      <NA>                NA   2021           2 401320569
## 1894                      <NA>                NA   2021           2 401320569
## 1895                      <NA>                NA   2021           2 401320569
## 1896                      <NA>                NA   2021           2 401320569
## 1897                      <NA>                NA   2021           2 401320569
## 1898                      <NA>                NA   2021           2 401320569
## 1899                      <NA>                NA   2021           2 401320569
## 1900                      <NA>                NA   2021           2 401320569
## 1901                      <NA>                NA   2021           2 401320569
## 1902                      <NA>                NA   2021           2 401320569
## 1903                      <NA>                NA   2021           2 401320569
## 1904                      <NA>                NA   2021           2 401320569
## 1905                      <NA>                NA   2021           2 401320569
## 1906                      <NA>                NA   2021           2 401320569
## 1907                      <NA>                NA   2021           2 401320569
## 1908                      <NA>                NA   2021           2 401320569
## 1909                      <NA>                NA   2021           2 401320569
## 1910                      <NA>                NA   2021           2 401320569
## 1911                      <NA>                NA   2021           2 401320569
## 1912                      <NA>                NA   2021           2 401320569
## 1913                      <NA>                NA   2021           2 401320569
## 1914                      <NA>                NA   2021           2 401320569
## 1915                      <NA>                NA   2021           2 401320569
## 1916                      <NA>                NA   2021           2 401320569
## 1917                      <NA>                NA   2021           2 401320569
## 1918                      <NA>                NA   2021           2 401320569
## 1919                      <NA>                NA   2021           2 401320569
## 1920                      <NA>                NA   2021           2 401320569
## 1921                      <NA>                NA   2021           2 401320569
## 1922                      <NA>                NA   2021           2 401320569
## 1923                      <NA>                NA   2021           2 401320569
## 1924                      <NA>                NA   2021           2 401320569
## 1925                      <NA>                NA   2021           2 401320569
## 1926                      <NA>                NA   2021           2 401320569
## 1927                      <NA>                NA   2021           2 401320569
## 1928                      <NA>                NA   2021           2 401320569
## 1929                      <NA>                NA   2021           2 401320569
## 1930                      <NA>                NA   2021           2 401320569
## 1931                      <NA>                NA   2021           2 401320569
## 1932                      <NA>                NA   2021           2 401320569
## 1933                      <NA>                NA   2021           2 401320569
## 1934                      <NA>                NA   2021           2 401320569
## 1935                      <NA>                NA   2021           2 401320569
## 1936                      <NA>                NA   2021           2 401320569
## 1937                      <NA>                NA   2021           2 401320569
## 1938                      <NA>                NA   2021           2 401320569
## 1939                      <NA>                NA   2021           2 401320569
## 1940                      <NA>                NA   2021           2 401320569
## 1941                      <NA>                NA   2021           2 401320569
## 1942                      <NA>                NA   2021           2 401320569
## 1943                      <NA>                NA   2021           2 401320569
## 1944                      <NA>                NA   2021           2 401320569
## 1945                      <NA>                NA   2021           2 401320569
## 1946                      <NA>                NA   2021           2 401320569
## 1947                      <NA>                NA   2021           2 401320569
## 1948                      <NA>                NA   2021           2 401320569
## 1949                      <NA>                NA   2021           2 401320569
## 1950                      <NA>                NA   2021           2 401320569
## 1951                      <NA>                NA   2021           2 401320569
## 1952                      <NA>                NA   2021           2 401320569
## 1953                      <NA>                NA   2021           2 401320569
## 1954                      <NA>                NA   2021           2 401320569
## 1955                      <NA>                NA   2021           2 401320569
## 1956                      <NA>                NA   2021           2 401320569
## 1957                      <NA>                NA   2021           2 401320569
## 1958                      <NA>                NA   2021           2 401320569
## 1959                      <NA>                NA   2021           2 401320569
## 1960                      <NA>                NA   2021           2 401320569
## 1961                      <NA>                NA   2021           2 401320569
## 1962                      <NA>                NA   2021           2 401320569
## 1963                      <NA>                NA   2021           2 401320569
## 1964                      <NA>                NA   2021           2 401320569
## 1965                      <NA>                NA   2021           2 401320569
## 1966                      <NA>                NA   2021           2 401320569
## 1967                      <NA>                NA   2021           2 401320569
## 1968                      <NA>                NA   2021           2 401320569
## 1969                      <NA>                NA   2021           2 401320569
## 1970                      <NA>                NA   2021           2 401320569
## 1971                      <NA>                NA   2021           2 401320569
## 1972                      <NA>                NA   2021           2 401320569
## 1973                      <NA>                NA   2021           2 401320569
## 1974                      <NA>                NA   2021           2 401320569
## 1975                      <NA>                NA   2021           2 401320569
## 1976                      <NA>                NA   2021           2 401320569
## 1977                      <NA>                NA   2021           2 401320569
## 1978                      <NA>                NA   2021           2 401320569
## 1979                      <NA>                NA   2021           2 401320569
## 1980                      <NA>                NA   2021           2 401320569
## 1981                      <NA>                NA   2021           2 401320569
## 1982                      <NA>                NA   2021           2 401320569
## 1983                      <NA>                NA   2021           2 401320569
## 1984                      <NA>                NA   2021           2 401320569
## 1985                      <NA>                NA   2021           2 401320569
## 1986                      <NA>                NA   2021           2 401320569
## 1987                      <NA>                NA   2021           2 401320569
## 1988                      <NA>                NA   2021           2 401320569
## 1989                      <NA>                NA   2021           2 401320569
## 1990                      <NA>                NA   2021           2 401320569
## 1991                      <NA>                NA   2021           2 401320569
## 1992                      <NA>                NA   2021           2 401320569
## 1993                      <NA>                NA   2021           2 401320569
## 1994                      <NA>                NA   2021           2 401320569
## 1995                      <NA>                NA   2021           2 401320569
## 1996                      <NA>                NA   2021           2 401320569
## 1997                      <NA>                NA   2021           2 401320569
## 1998                      <NA>                NA   2021           2 401320569
## 1999                      <NA>                NA   2021           2 401320569
## 2000                      <NA>                NA   2021           2 401320569
## 2001                      <NA>                NA   2021           2 401320569
## 2002                      <NA>                NA   2021           2 401320569
## 2003                      <NA>                NA   2021           2 401320569
## 2004                      <NA>                NA   2021           2 401320569
## 2005                      <NA>                NA   2021           2 401320569
## 2006                      <NA>                NA   2021           2 401320569
## 2007                      <NA>                NA   2021           2 401320569
## 2008                      <NA>                NA   2021           2 401320569
## 2009                      <NA>                NA   2021           2 401320569
## 2010                      <NA>                NA   2021           2 401320569
## 2011                      <NA>                NA   2021           2 401320569
## 2012                      <NA>                NA   2021           2 401320569
## 2013                      <NA>                NA   2021           2 401320569
## 2014                      <NA>                NA   2021           2 401320569
## 2015                      <NA>                NA   2021           2 401320569
## 2016                      <NA>                NA   2021           2 401320569
## 2017                      <NA>                NA   2021           2 401320569
## 2018                      <NA>                NA   2021           2 401320569
## 2019                      <NA>                NA   2021           2 401320569
## 2020                      <NA>                NA   2021           2 401320569
## 2021                      <NA>                NA   2021           2 401320569
## 2022                      <NA>                NA   2021           2 401320569
## 2023                   3056728                NA   2021           2 401320569
## 2024                      <NA>                NA   2021           2 401320569
## 2025                      <NA>                NA   2021           2 401320569
## 2026                      <NA>                NA   2021           2 401320569
## 2027                      <NA>                NA   2021           2 401320569
## 2028                      <NA>                NA   2021           2 401320569
## 2029                      <NA>                NA   2021           2 401320569
## 2030                      <NA>                NA   2021           2 401320569
## 2031                      <NA>                NA   2021           2 401320569
## 2032                      <NA>                NA   2021           2 401320569
## 2033                      <NA>                NA   2021           2 401320569
## 2034                      <NA>                NA   2021           2 401320569
## 2035                      <NA>                NA   2021           2 401320569
## 2036                      <NA>                NA   2021           2 401320569
## 2037                      <NA>                NA   2021           2 401320569
## 2038                      <NA>                NA   2021           2 401320569
## 2039                   2529122                NA   2021           2 401320570
## 2040                      <NA>                NA   2021           2 401320570
## 2041                      <NA>                NA   2021           2 401320570
## 2042                      <NA>                NA   2021           2 401320570
## 2043                      <NA>                NA   2021           2 401320570
## 2044                      <NA>                NA   2021           2 401320570
## 2045                      <NA>                NA   2021           2 401320570
## 2046                      <NA>                NA   2021           2 401320570
## 2047                      <NA>                NA   2021           2 401320570
## 2048                      <NA>                NA   2021           2 401320570
## 2049                      <NA>                NA   2021           2 401320570
## 2050                      <NA>                NA   2021           2 401320570
## 2051                      <NA>                NA   2021           2 401320570
## 2052                      <NA>                NA   2021           2 401320570
## 2053                      <NA>                NA   2021           2 401320570
## 2054                      <NA>                NA   2021           2 401320570
## 2055                      <NA>                NA   2021           2 401320570
## 2056                      <NA>                NA   2021           2 401320570
## 2057                      <NA>                NA   2021           2 401320570
## 2058                      <NA>                NA   2021           2 401320570
## 2059                      <NA>                NA   2021           2 401320570
## 2060                      <NA>                NA   2021           2 401320570
## 2061                      <NA>                NA   2021           2 401320570
## 2062                      <NA>                NA   2021           2 401320570
## 2063                      <NA>                NA   2021           2 401320570
## 2064                      <NA>                NA   2021           2 401320570
## 2065                      <NA>                NA   2021           2 401320570
## 2066                      <NA>                NA   2021           2 401320570
## 2067                      <NA>                NA   2021           2 401320570
## 2068                      <NA>                NA   2021           2 401320570
## 2069                      <NA>                NA   2021           2 401320570
## 2070                      <NA>                NA   2021           2 401320570
## 2071                      <NA>                NA   2021           2 401320570
## 2072                      <NA>                NA   2021           2 401320570
## 2073                      <NA>                NA   2021           2 401320570
## 2074                      <NA>                NA   2021           2 401320570
## 2075                      <NA>                NA   2021           2 401320570
## 2076                      <NA>                NA   2021           2 401320570
## 2077                      <NA>                NA   2021           2 401320570
## 2078                      <NA>                NA   2021           2 401320570
## 2079                      <NA>                NA   2021           2 401320570
## 2080                      <NA>                NA   2021           2 401320570
## 2081                      <NA>                NA   2021           2 401320570
## 2082                      <NA>                NA   2021           2 401320570
## 2083                      <NA>                NA   2021           2 401320570
## 2084                      <NA>                NA   2021           2 401320570
## 2085                      <NA>                NA   2021           2 401320570
## 2086                      <NA>                NA   2021           2 401320570
## 2087                      <NA>                NA   2021           2 401320570
## 2088                      <NA>                NA   2021           2 401320570
## 2089                      <NA>                NA   2021           2 401320570
## 2090                      <NA>                NA   2021           2 401320570
## 2091                      <NA>                NA   2021           2 401320570
## 2092                      <NA>                NA   2021           2 401320570
## 2093                      <NA>                NA   2021           2 401320570
## 2094                      <NA>                NA   2021           2 401320570
## 2095                      <NA>                NA   2021           2 401320570
## 2096                      <NA>                NA   2021           2 401320570
## 2097                      <NA>                NA   2021           2 401320570
## 2098                      <NA>                NA   2021           2 401320570
## 2099                      <NA>                NA   2021           2 401320570
## 2100                      <NA>                NA   2021           2 401320570
## 2101                      <NA>                NA   2021           2 401320570
## 2102                      <NA>                NA   2021           2 401320570
## 2103                      <NA>                NA   2021           2 401320570
## 2104                      <NA>                NA   2021           2 401320570
## 2105                      <NA>                NA   2021           2 401320570
## 2106                      <NA>                NA   2021           2 401320570
## 2107                      <NA>                NA   2021           2 401320570
## 2108                      <NA>                NA   2021           2 401320570
## 2109                      <NA>                NA   2021           2 401320570
## 2110                      <NA>                NA   2021           2 401320570
## 2111                      <NA>                NA   2021           2 401320570
## 2112                      <NA>                NA   2021           2 401320570
## 2113                      <NA>                NA   2021           2 401320570
## 2114                      <NA>                NA   2021           2 401320570
## 2115                      <NA>                NA   2021           2 401320570
## 2116                      <NA>                NA   2021           2 401320570
## 2117                      <NA>                NA   2021           2 401320570
## 2118                      <NA>                NA   2021           2 401320570
## 2119                      <NA>                NA   2021           2 401320570
## 2120                      <NA>                NA   2021           2 401320570
## 2121                      <NA>                NA   2021           2 401320570
## 2122                      <NA>                NA   2021           2 401320570
## 2123                      <NA>                NA   2021           2 401320570
## 2124                      <NA>                NA   2021           2 401320570
## 2125                      <NA>                NA   2021           2 401320570
## 2126                      <NA>                NA   2021           2 401320570
## 2127                      <NA>                NA   2021           2 401320570
## 2128                      <NA>                NA   2021           2 401320570
## 2129                      <NA>                NA   2021           2 401320570
## 2130                      <NA>                NA   2021           2 401320570
## 2131                      <NA>                NA   2021           2 401320570
## 2132                      <NA>                NA   2021           2 401320570
## 2133                      <NA>                NA   2021           2 401320570
## 2134                      <NA>                NA   2021           2 401320570
## 2135                      <NA>                NA   2021           2 401320570
## 2136                      <NA>                NA   2021           2 401320570
## 2137                      <NA>                NA   2021           2 401320570
## 2138                      <NA>                NA   2021           2 401320570
## 2139                      <NA>                NA   2021           2 401320570
## 2140                      <NA>                NA   2021           2 401320570
## 2141                      <NA>                NA   2021           2 401320570
## 2142                      <NA>                NA   2021           2 401320570
## 2143                      <NA>                NA   2021           2 401320570
## 2144                      <NA>                NA   2021           2 401320570
## 2145                      <NA>                NA   2021           2 401320570
## 2146                      <NA>                NA   2021           2 401320570
## 2147                      <NA>                NA   2021           2 401320570
## 2148                      <NA>                NA   2021           2 401320570
## 2149                      <NA>                NA   2021           2 401320570
## 2150                      <NA>                NA   2021           2 401320570
## 2151                      <NA>                NA   2021           2 401320570
## 2152                      <NA>                NA   2021           2 401320570
## 2153                      <NA>                NA   2021           2 401320570
## 2154                      <NA>                NA   2021           2 401320570
## 2155                      <NA>                NA   2021           2 401320570
## 2156                      <NA>                NA   2021           2 401320570
## 2157                      <NA>                NA   2021           2 401320570
## 2158                      <NA>                NA   2021           2 401320570
## 2159                      <NA>                NA   2021           2 401320570
## 2160                      <NA>                NA   2021           2 401320570
## 2161                      <NA>                NA   2021           2 401320570
## 2162                      <NA>                NA   2021           2 401320570
## 2163                      <NA>                NA   2021           2 401320570
## 2164                      <NA>                NA   2021           2 401320570
## 2165                      <NA>                NA   2021           2 401320570
## 2166                      <NA>                NA   2021           2 401320570
## 2167                      <NA>                NA   2021           2 401320570
## 2168                      <NA>                NA   2021           2 401320570
## 2169                      <NA>                NA   2021           2 401320570
## 2170                      <NA>                NA   2021           2 401320570
## 2171                      <NA>                NA   2021           2 401320570
## 2172                      <NA>                NA   2021           2 401320570
## 2173                      <NA>                NA   2021           2 401320570
## 2174                      <NA>                NA   2021           2 401320570
## 2175                      <NA>                NA   2021           2 401320570
## 2176                      <NA>                NA   2021           2 401320570
## 2177                      <NA>                NA   2021           2 401320570
## 2178                      <NA>                NA   2021           2 401320570
## 2179                      <NA>                NA   2021           2 401320570
## 2180                      <NA>                NA   2021           2 401320570
## 2181                      <NA>                NA   2021           2 401320570
## 2182                      <NA>                NA   2021           2 401320570
## 2183                      <NA>                NA   2021           2 401320570
## 2184                      <NA>                NA   2021           2 401320570
## 2185                      <NA>                NA   2021           2 401320570
## 2186                      <NA>                NA   2021           2 401320570
## 2187                      <NA>                NA   2021           2 401320570
## 2188                      <NA>                NA   2021           2 401320570
## 2189                      <NA>                NA   2021           2 401320570
## 2190                      <NA>                NA   2021           2 401320570
## 2191                      <NA>                NA   2021           2 401320570
## 2192                      <NA>                NA   2021           2 401320570
## 2193                      <NA>                NA   2021           2 401320570
## 2194                      <NA>                NA   2021           2 401320570
## 2195                      <NA>                NA   2021           2 401320570
## 2196                      <NA>                NA   2021           2 401320570
## 2197                      <NA>                NA   2021           2 401320570
## 2198                      <NA>                NA   2021           2 401320570
## 2199                      <NA>                NA   2021           2 401320570
## 2200                      <NA>                NA   2021           2 401320570
## 2201                      <NA>                NA   2021           2 401320570
## 2202                      <NA>                NA   2021           2 401320570
## 2203                      <NA>                NA   2021           2 401320570
## 2204                      <NA>                NA   2021           2 401320570
## 2205                      <NA>                NA   2021           2 401320570
## 2206                      <NA>                NA   2021           2 401320570
## 2207                      <NA>                NA   2021           2 401320570
## 2208                      <NA>                NA   2021           2 401320570
## 2209                      <NA>                NA   2021           2 401320570
## 2210                      <NA>                NA   2021           2 401320570
## 2211                      <NA>                NA   2021           2 401320570
## 2212                      <NA>                NA   2021           2 401320570
## 2213                      <NA>                NA   2021           2 401320570
## 2214                      <NA>                NA   2021           2 401320570
## 2215                      <NA>                NA   2021           2 401320570
## 2216                      <NA>                NA   2021           2 401320570
## 2217                      <NA>                NA   2021           2 401320570
## 2218                      <NA>                NA   2021           2 401320570
## 2219                      <NA>                NA   2021           2 401320570
## 2220                      <NA>                NA   2021           2 401320570
## 2221                      <NA>                NA   2021           2 401320570
## 2222                      <NA>                NA   2021           2 401320570
## 2223                      <NA>                NA   2021           2 401320570
## 2224                      <NA>                NA   2021           2 401320570
## 2225                      <NA>                NA   2021           2 401320570
## 2226                      <NA>                NA   2021           2 401320570
## 2227                      <NA>                NA   2021           2 401320570
## 2228                      <NA>                NA   2021           2 401320570
## 2229                      <NA>                NA   2021           2 401320570
## 2230                      <NA>                NA   2021           2 401320570
## 2231                      <NA>                NA   2021           2 401320570
## 2232                      <NA>                NA   2021           2 401320570
## 2233                      <NA>                NA   2021           2 401320570
## 2234                   2987869                NA   2021           2 401320570
## 2235                      <NA>                NA   2021           2 401320570
## 2236                      <NA>                NA   2021           2 401320570
## 2237                      <NA>                NA   2021           2 401320570
## 2238                      <NA>                NA   2021           2 401320570
## 2239                      <NA>                NA   2021           2 401320570
## 2240                      <NA>                NA   2021           2 401320570
## 2241                      <NA>                NA   2021           2 401320570
## 2242                      <NA>                NA   2021           2 401320570
## 2243                      <NA>                NA   2021           2 401320570
## 2244                      <NA>                NA   2021           2 401320570
## 2245                      <NA>                NA   2021           2 401320570
## 2246                      <NA>                NA   2021           2 401320570
## 2247                      <NA>                NA   2021           2 401320570
## 2248                      <NA>                NA   2021           2 401320570
## 2249                      <NA>                NA   2021           2 401320570
## 2250                      <NA>                NA   2021           2 401320570
## 2251                      <NA>                NA   2021           2 401320570
## 2252                      <NA>                NA   2021           2 401320570
## 2253                      <NA>                NA   2021           2 401320570
## 2254                      <NA>                NA   2021           2 401320570
## 2255                      <NA>                NA   2021           2 401320570
## 2256                      <NA>                NA   2021           2 401320570
## 2257                      <NA>                NA   2021           2 401320570
## 2258                      <NA>                NA   2021           2 401320570
## 2259                      <NA>                NA   2021           2 401320570
## 2260                      <NA>                NA   2021           2 401320570
## 2261                      <NA>                NA   2021           2 401320570
## 2262                      <NA>                NA   2021           2 401320570
## 2263                      <NA>                NA   2021           2 401320570
## 2264                      <NA>                NA   2021           2 401320570
## 2265                      <NA>                NA   2021           2 401320570
## 2266                      <NA>                NA   2021           2 401320570
## 2267                      <NA>                NA   2021           2 401320570
## 2268                      <NA>                NA   2021           2 401320570
## 2269                      <NA>                NA   2021           2 401320570
## 2270                      <NA>                NA   2021           2 401320570
## 2271                      <NA>                NA   2021           2 401320570
## 2272                      <NA>                NA   2021           2 401320570
## 2273                      <NA>                NA   2021           2 401320570
## 2274                      <NA>                NA   2021           2 401320570
## 2275                      <NA>                NA   2021           2 401320570
## 2276                      <NA>                NA   2021           2 401320570
## 2277                      <NA>                NA   2021           2 401320570
## 2278                      <NA>                NA   2021           2 401320570
## 2279                      <NA>                NA   2021           2 401320570
## 2280                      <NA>                NA   2021           2 401320570
## 2281                      <NA>                NA   2021           2 401320570
## 2282                      <NA>                NA   2021           2 401320570
## 2283                      <NA>                NA   2021           2 401320570
## 2284                      <NA>                NA   2021           2 401320570
## 2285                      <NA>                NA   2021           2 401320570
## 2286                      <NA>                NA   2021           2 401320570
## 2287                      <NA>                NA   2021           2 401320570
## 2288                      <NA>                NA   2021           2 401320570
## 2289                      <NA>                NA   2021           2 401320570
## 2290                      <NA>                NA   2021           2 401320570
## 2291                      <NA>                NA   2021           2 401320570
## 2292                      <NA>                NA   2021           2 401320570
## 2293                      <NA>                NA   2021           2 401320570
## 2294                      <NA>                NA   2021           2 401320570
## 2295                      <NA>                NA   2021           2 401320570
## 2296                      <NA>                NA   2021           2 401320570
## 2297                      <NA>                NA   2021           2 401320570
## 2298                      <NA>                NA   2021           2 401320570
## 2299                      <NA>                NA   2021           2 401320570
## 2300                      <NA>                NA   2021           2 401320570
## 2301                      <NA>                NA   2021           2 401320570
## 2302                      <NA>                NA   2021           2 401320570
## 2303                      <NA>                NA   2021           2 401320570
## 2304                      <NA>                NA   2021           2 401320570
## 2305                      <NA>                NA   2021           2 401320570
## 2306                      <NA>                NA   2021           2 401320570
## 2307                      <NA>                NA   2021           2 401320570
## 2308                      <NA>                NA   2021           2 401320570
## 2309                      <NA>                NA   2021           2 401320570
## 2310                      <NA>                NA   2021           2 401320570
## 2311                      <NA>                NA   2021           2 401320570
## 2312                      <NA>                NA   2021           2 401320570
## 2313                      <NA>                NA   2021           2 401320570
## 2314                      <NA>                NA   2021           2 401320570
## 2315                      <NA>                NA   2021           2 401320570
## 2316                      <NA>                NA   2021           2 401320570
## 2317                      <NA>                NA   2021           2 401320570
## 2318                      <NA>                NA   2021           2 401320570
## 2319                      <NA>                NA   2021           2 401320570
## 2320                      <NA>                NA   2021           2 401320570
## 2321                      <NA>                NA   2021           2 401320570
## 2322                      <NA>                NA   2021           2 401320570
## 2323                      <NA>                NA   2021           2 401320570
## 2324                      <NA>                NA   2021           2 401320570
## 2325                      <NA>                NA   2021           2 401320570
## 2326                      <NA>                NA   2021           2 401320570
## 2327                      <NA>                NA   2021           2 401320570
## 2328                      <NA>                NA   2021           2 401320570
## 2329                      <NA>                NA   2021           2 401320570
## 2330                      <NA>                NA   2021           2 401320570
## 2331                      <NA>                NA   2021           2 401320570
## 2332                      <NA>                NA   2021           2 401320570
## 2333                      <NA>                NA   2021           2 401320570
## 2334                      <NA>                NA   2021           2 401320570
## 2335                      <NA>                NA   2021           2 401320570
## 2336                      <NA>                NA   2021           2 401320570
## 2337                      <NA>                NA   2021           2 401320570
## 2338                      <NA>                NA   2021           2 401320570
## 2339                      <NA>                NA   2021           2 401320570
## 2340                      <NA>                NA   2021           2 401320570
## 2341                      <NA>                NA   2021           2 401320570
## 2342                      <NA>                NA   2021           2 401320570
## 2343                      <NA>                NA   2021           2 401320570
## 2344                      <NA>                NA   2021           2 401320570
## 2345                      <NA>                NA   2021           2 401320570
## 2346                      <NA>                NA   2021           2 401320570
## 2347                      <NA>                NA   2021           2 401320570
## 2348                      <NA>                NA   2021           2 401320570
## 2349                      <NA>                NA   2021           2 401320570
## 2350                      <NA>                NA   2021           2 401320570
## 2351                      <NA>                NA   2021           2 401320570
## 2352                      <NA>                NA   2021           2 401320570
## 2353                      <NA>                NA   2021           2 401320570
## 2354                      <NA>                NA   2021           2 401320570
## 2355                      <NA>                NA   2021           2 401320570
## 2356                      <NA>                NA   2021           2 401320570
## 2357                      <NA>                NA   2021           2 401320570
## 2358                      <NA>                NA   2021           2 401320570
## 2359                      <NA>                NA   2021           2 401320570
## 2360                      <NA>                NA   2021           2 401320570
## 2361                      <NA>                NA   2021           2 401320570
## 2362                      <NA>                NA   2021           2 401320570
## 2363                      <NA>                NA   2021           2 401320570
## 2364                      <NA>                NA   2021           2 401320570
## 2365                      <NA>                NA   2021           2 401320570
## 2366                      <NA>                NA   2021           2 401320570
## 2367                      <NA>                NA   2021           2 401320570
## 2368                      <NA>                NA   2021           2 401320570
## 2369                      <NA>                NA   2021           2 401320570
## 2370                      <NA>                NA   2021           2 401320570
## 2371                      <NA>                NA   2021           2 401320570
## 2372                      <NA>                NA   2021           2 401320570
## 2373                      <NA>                NA   2021           2 401320570
## 2374                      <NA>                NA   2021           2 401320570
## 2375                      <NA>                NA   2021           2 401320570
## 2376                      <NA>                NA   2021           2 401320570
## 2377                      <NA>                NA   2021           2 401320570
## 2378                      <NA>                NA   2021           2 401320570
## 2379                      <NA>                NA   2021           2 401320570
## 2380                      <NA>                NA   2021           2 401320570
##      away_team_id away_team_name away_team_mascot away_team_abbrev
## 1               5        Indiana            Fever              IND
## 2               5        Indiana            Fever              IND
## 3               5        Indiana            Fever              IND
## 4               5        Indiana            Fever              IND
## 5               5        Indiana            Fever              IND
## 6               5        Indiana            Fever              IND
## 7               5        Indiana            Fever              IND
## 8               5        Indiana            Fever              IND
## 9               5        Indiana            Fever              IND
## 10              5        Indiana            Fever              IND
## 11              5        Indiana            Fever              IND
## 12              5        Indiana            Fever              IND
## 13              5        Indiana            Fever              IND
## 14              5        Indiana            Fever              IND
## 15              5        Indiana            Fever              IND
## 16              5        Indiana            Fever              IND
## 17              5        Indiana            Fever              IND
## 18              5        Indiana            Fever              IND
## 19              5        Indiana            Fever              IND
## 20              5        Indiana            Fever              IND
## 21              5        Indiana            Fever              IND
## 22              5        Indiana            Fever              IND
## 23              5        Indiana            Fever              IND
## 24              5        Indiana            Fever              IND
## 25              5        Indiana            Fever              IND
## 26              5        Indiana            Fever              IND
## 27              5        Indiana            Fever              IND
## 28              5        Indiana            Fever              IND
## 29              5        Indiana            Fever              IND
## 30              5        Indiana            Fever              IND
## 31              5        Indiana            Fever              IND
## 32              5        Indiana            Fever              IND
## 33              5        Indiana            Fever              IND
## 34              5        Indiana            Fever              IND
## 35              5        Indiana            Fever              IND
## 36              5        Indiana            Fever              IND
## 37              5        Indiana            Fever              IND
## 38              5        Indiana            Fever              IND
## 39              5        Indiana            Fever              IND
## 40              5        Indiana            Fever              IND
## 41              5        Indiana            Fever              IND
## 42              5        Indiana            Fever              IND
## 43              5        Indiana            Fever              IND
## 44              5        Indiana            Fever              IND
## 45              5        Indiana            Fever              IND
## 46              5        Indiana            Fever              IND
## 47              5        Indiana            Fever              IND
## 48              5        Indiana            Fever              IND
## 49              5        Indiana            Fever              IND
## 50              5        Indiana            Fever              IND
## 51              5        Indiana            Fever              IND
## 52              5        Indiana            Fever              IND
## 53              5        Indiana            Fever              IND
## 54              5        Indiana            Fever              IND
## 55              5        Indiana            Fever              IND
## 56              5        Indiana            Fever              IND
## 57              5        Indiana            Fever              IND
## 58              5        Indiana            Fever              IND
## 59              5        Indiana            Fever              IND
## 60              5        Indiana            Fever              IND
## 61              5        Indiana            Fever              IND
## 62              5        Indiana            Fever              IND
## 63              5        Indiana            Fever              IND
## 64              5        Indiana            Fever              IND
## 65              5        Indiana            Fever              IND
## 66              5        Indiana            Fever              IND
## 67              5        Indiana            Fever              IND
## 68              5        Indiana            Fever              IND
## 69              5        Indiana            Fever              IND
## 70              5        Indiana            Fever              IND
## 71              5        Indiana            Fever              IND
## 72              5        Indiana            Fever              IND
## 73              5        Indiana            Fever              IND
## 74              5        Indiana            Fever              IND
## 75              5        Indiana            Fever              IND
## 76              5        Indiana            Fever              IND
## 77              5        Indiana            Fever              IND
## 78              5        Indiana            Fever              IND
## 79              5        Indiana            Fever              IND
## 80              5        Indiana            Fever              IND
## 81              5        Indiana            Fever              IND
## 82              5        Indiana            Fever              IND
## 83              5        Indiana            Fever              IND
## 84              5        Indiana            Fever              IND
## 85              5        Indiana            Fever              IND
## 86              5        Indiana            Fever              IND
## 87              5        Indiana            Fever              IND
## 88              5        Indiana            Fever              IND
## 89              5        Indiana            Fever              IND
## 90              5        Indiana            Fever              IND
## 91              5        Indiana            Fever              IND
## 92              5        Indiana            Fever              IND
## 93              5        Indiana            Fever              IND
## 94              5        Indiana            Fever              IND
## 95              5        Indiana            Fever              IND
## 96              5        Indiana            Fever              IND
## 97              5        Indiana            Fever              IND
## 98              5        Indiana            Fever              IND
## 99              5        Indiana            Fever              IND
## 100             5        Indiana            Fever              IND
## 101             5        Indiana            Fever              IND
## 102             5        Indiana            Fever              IND
## 103             5        Indiana            Fever              IND
## 104             5        Indiana            Fever              IND
## 105             5        Indiana            Fever              IND
## 106             5        Indiana            Fever              IND
## 107             5        Indiana            Fever              IND
## 108             5        Indiana            Fever              IND
## 109             5        Indiana            Fever              IND
## 110             5        Indiana            Fever              IND
## 111             5        Indiana            Fever              IND
## 112             5        Indiana            Fever              IND
## 113             5        Indiana            Fever              IND
## 114             5        Indiana            Fever              IND
## 115             5        Indiana            Fever              IND
## 116             5        Indiana            Fever              IND
## 117             5        Indiana            Fever              IND
## 118             5        Indiana            Fever              IND
## 119             5        Indiana            Fever              IND
## 120             5        Indiana            Fever              IND
## 121             5        Indiana            Fever              IND
## 122             5        Indiana            Fever              IND
## 123             5        Indiana            Fever              IND
## 124             5        Indiana            Fever              IND
## 125             5        Indiana            Fever              IND
## 126             5        Indiana            Fever              IND
## 127             5        Indiana            Fever              IND
## 128             5        Indiana            Fever              IND
## 129             5        Indiana            Fever              IND
## 130             5        Indiana            Fever              IND
## 131             5        Indiana            Fever              IND
## 132             5        Indiana            Fever              IND
## 133             5        Indiana            Fever              IND
## 134             5        Indiana            Fever              IND
## 135             5        Indiana            Fever              IND
## 136             5        Indiana            Fever              IND
## 137             5        Indiana            Fever              IND
## 138             5        Indiana            Fever              IND
## 139             5        Indiana            Fever              IND
## 140             5        Indiana            Fever              IND
## 141             5        Indiana            Fever              IND
## 142             5        Indiana            Fever              IND
## 143             5        Indiana            Fever              IND
## 144             5        Indiana            Fever              IND
## 145             5        Indiana            Fever              IND
## 146             5        Indiana            Fever              IND
## 147             5        Indiana            Fever              IND
## 148             5        Indiana            Fever              IND
## 149             5        Indiana            Fever              IND
## 150             5        Indiana            Fever              IND
## 151             5        Indiana            Fever              IND
## 152             5        Indiana            Fever              IND
## 153             5        Indiana            Fever              IND
## 154             5        Indiana            Fever              IND
## 155             5        Indiana            Fever              IND
## 156             5        Indiana            Fever              IND
## 157             5        Indiana            Fever              IND
## 158             5        Indiana            Fever              IND
## 159             5        Indiana            Fever              IND
## 160             5        Indiana            Fever              IND
## 161             5        Indiana            Fever              IND
## 162             5        Indiana            Fever              IND
## 163             5        Indiana            Fever              IND
## 164             5        Indiana            Fever              IND
## 165             5        Indiana            Fever              IND
## 166             5        Indiana            Fever              IND
## 167             5        Indiana            Fever              IND
## 168             5        Indiana            Fever              IND
## 169             5        Indiana            Fever              IND
## 170             5        Indiana            Fever              IND
## 171             5        Indiana            Fever              IND
## 172             5        Indiana            Fever              IND
## 173             5        Indiana            Fever              IND
## 174             5        Indiana            Fever              IND
## 175             5        Indiana            Fever              IND
## 176             5        Indiana            Fever              IND
## 177             5        Indiana            Fever              IND
## 178             5        Indiana            Fever              IND
## 179             5        Indiana            Fever              IND
## 180             5        Indiana            Fever              IND
## 181             5        Indiana            Fever              IND
## 182             5        Indiana            Fever              IND
## 183             5        Indiana            Fever              IND
## 184             5        Indiana            Fever              IND
## 185             5        Indiana            Fever              IND
## 186             5        Indiana            Fever              IND
## 187             5        Indiana            Fever              IND
## 188             5        Indiana            Fever              IND
## 189             5        Indiana            Fever              IND
## 190             5        Indiana            Fever              IND
## 191             5        Indiana            Fever              IND
## 192             5        Indiana            Fever              IND
## 193             5        Indiana            Fever              IND
## 194             5        Indiana            Fever              IND
## 195             5        Indiana            Fever              IND
## 196             5        Indiana            Fever              IND
## 197             5        Indiana            Fever              IND
## 198             5        Indiana            Fever              IND
## 199             5        Indiana            Fever              IND
## 200             5        Indiana            Fever              IND
## 201             5        Indiana            Fever              IND
## 202             5        Indiana            Fever              IND
## 203             5        Indiana            Fever              IND
## 204             5        Indiana            Fever              IND
## 205             5        Indiana            Fever              IND
## 206             5        Indiana            Fever              IND
## 207             5        Indiana            Fever              IND
## 208             5        Indiana            Fever              IND
## 209             5        Indiana            Fever              IND
## 210             5        Indiana            Fever              IND
## 211             5        Indiana            Fever              IND
## 212             5        Indiana            Fever              IND
## 213             5        Indiana            Fever              IND
## 214             5        Indiana            Fever              IND
## 215             5        Indiana            Fever              IND
## 216             5        Indiana            Fever              IND
## 217             5        Indiana            Fever              IND
## 218             5        Indiana            Fever              IND
## 219             5        Indiana            Fever              IND
## 220             5        Indiana            Fever              IND
## 221             5        Indiana            Fever              IND
## 222             5        Indiana            Fever              IND
## 223             5        Indiana            Fever              IND
## 224             5        Indiana            Fever              IND
## 225             5        Indiana            Fever              IND
## 226             5        Indiana            Fever              IND
## 227             5        Indiana            Fever              IND
## 228             5        Indiana            Fever              IND
## 229             5        Indiana            Fever              IND
## 230             5        Indiana            Fever              IND
## 231             5        Indiana            Fever              IND
## 232             5        Indiana            Fever              IND
## 233             5        Indiana            Fever              IND
## 234             5        Indiana            Fever              IND
## 235             5        Indiana            Fever              IND
## 236             5        Indiana            Fever              IND
## 237             5        Indiana            Fever              IND
## 238             5        Indiana            Fever              IND
## 239             5        Indiana            Fever              IND
## 240             5        Indiana            Fever              IND
## 241             5        Indiana            Fever              IND
## 242             5        Indiana            Fever              IND
## 243             5        Indiana            Fever              IND
## 244             5        Indiana            Fever              IND
## 245             5        Indiana            Fever              IND
## 246             5        Indiana            Fever              IND
## 247             5        Indiana            Fever              IND
## 248             5        Indiana            Fever              IND
## 249             5        Indiana            Fever              IND
## 250             5        Indiana            Fever              IND
## 251             5        Indiana            Fever              IND
## 252             5        Indiana            Fever              IND
## 253             5        Indiana            Fever              IND
## 254             5        Indiana            Fever              IND
## 255             5        Indiana            Fever              IND
## 256             5        Indiana            Fever              IND
## 257             5        Indiana            Fever              IND
## 258             5        Indiana            Fever              IND
## 259             5        Indiana            Fever              IND
## 260             5        Indiana            Fever              IND
## 261             5        Indiana            Fever              IND
## 262             5        Indiana            Fever              IND
## 263             5        Indiana            Fever              IND
## 264             5        Indiana            Fever              IND
## 265             5        Indiana            Fever              IND
## 266             5        Indiana            Fever              IND
## 267             5        Indiana            Fever              IND
## 268             5        Indiana            Fever              IND
## 269             5        Indiana            Fever              IND
## 270             5        Indiana            Fever              IND
## 271             5        Indiana            Fever              IND
## 272             5        Indiana            Fever              IND
## 273             5        Indiana            Fever              IND
## 274             5        Indiana            Fever              IND
## 275             5        Indiana            Fever              IND
## 276             5        Indiana            Fever              IND
## 277             5        Indiana            Fever              IND
## 278             5        Indiana            Fever              IND
## 279             5        Indiana            Fever              IND
## 280             5        Indiana            Fever              IND
## 281             5        Indiana            Fever              IND
## 282             5        Indiana            Fever              IND
## 283             5        Indiana            Fever              IND
## 284             5        Indiana            Fever              IND
## 285             5        Indiana            Fever              IND
## 286             5        Indiana            Fever              IND
## 287             5        Indiana            Fever              IND
## 288             5        Indiana            Fever              IND
## 289             5        Indiana            Fever              IND
## 290             5        Indiana            Fever              IND
## 291             5        Indiana            Fever              IND
## 292             5        Indiana            Fever              IND
## 293             5        Indiana            Fever              IND
## 294             5        Indiana            Fever              IND
## 295             5        Indiana            Fever              IND
## 296             5        Indiana            Fever              IND
## 297             5        Indiana            Fever              IND
## 298             5        Indiana            Fever              IND
## 299             5        Indiana            Fever              IND
## 300             5        Indiana            Fever              IND
## 301             5        Indiana            Fever              IND
## 302             5        Indiana            Fever              IND
## 303             5        Indiana            Fever              IND
## 304             5        Indiana            Fever              IND
## 305             5        Indiana            Fever              IND
## 306             5        Indiana            Fever              IND
## 307             5        Indiana            Fever              IND
## 308             5        Indiana            Fever              IND
## 309             5        Indiana            Fever              IND
## 310             5        Indiana            Fever              IND
## 311             5        Indiana            Fever              IND
## 312             5        Indiana            Fever              IND
## 313             5        Indiana            Fever              IND
## 314             5        Indiana            Fever              IND
## 315             5        Indiana            Fever              IND
## 316             5        Indiana            Fever              IND
## 317             5        Indiana            Fever              IND
## 318             5        Indiana            Fever              IND
## 319             5        Indiana            Fever              IND
## 320             5        Indiana            Fever              IND
## 321             5        Indiana            Fever              IND
## 322             5        Indiana            Fever              IND
## 323             5        Indiana            Fever              IND
## 324             5        Indiana            Fever              IND
## 325             5        Indiana            Fever              IND
## 326             5        Indiana            Fever              IND
## 327             5        Indiana            Fever              IND
## 328             5        Indiana            Fever              IND
## 329             5        Indiana            Fever              IND
## 330             5        Indiana            Fever              IND
## 331             5        Indiana            Fever              IND
## 332             5        Indiana            Fever              IND
## 333             5        Indiana            Fever              IND
## 334             5        Indiana            Fever              IND
## 335             5        Indiana            Fever              IND
## 336             5        Indiana            Fever              IND
## 337             5        Indiana            Fever              IND
## 338             5        Indiana            Fever              IND
## 339             5        Indiana            Fever              IND
## 340             5        Indiana            Fever              IND
## 341             5        Indiana            Fever              IND
## 342             5        Indiana            Fever              IND
## 343             5        Indiana            Fever              IND
## 344             5        Indiana            Fever              IND
## 345             5        Indiana            Fever              IND
## 346             5        Indiana            Fever              IND
## 347             5        Indiana            Fever              IND
## 348             5        Indiana            Fever              IND
## 349             5        Indiana            Fever              IND
## 350             5        Indiana            Fever              IND
## 351             5        Indiana            Fever              IND
## 352             5        Indiana            Fever              IND
## 353             5        Indiana            Fever              IND
## 354             5        Indiana            Fever              IND
## 355             5        Indiana            Fever              IND
## 356             5        Indiana            Fever              IND
## 357             5        Indiana            Fever              IND
## 358             5        Indiana            Fever              IND
## 359             5        Indiana            Fever              IND
## 360             5        Indiana            Fever              IND
## 361             5        Indiana            Fever              IND
## 362             5        Indiana            Fever              IND
## 363             5        Indiana            Fever              IND
## 364             5        Indiana            Fever              IND
## 365             5        Indiana            Fever              IND
## 366             5        Indiana            Fever              IND
## 367             5        Indiana            Fever              IND
## 368             5        Indiana            Fever              IND
## 369             5        Indiana            Fever              IND
## 370             5        Indiana            Fever              IND
## 371             5        Indiana            Fever              IND
## 372             5        Indiana            Fever              IND
## 373             5        Indiana            Fever              IND
## 374             5        Indiana            Fever              IND
## 375             5        Indiana            Fever              IND
## 376             5        Indiana            Fever              IND
## 377             5        Indiana            Fever              IND
## 378             5        Indiana            Fever              IND
## 379             5        Indiana            Fever              IND
## 380             5        Indiana            Fever              IND
## 381             5        Indiana            Fever              IND
## 382             5        Indiana            Fever              IND
## 383             5        Indiana            Fever              IND
## 384             5        Indiana            Fever              IND
## 385             5        Indiana            Fever              IND
## 386             5        Indiana            Fever              IND
## 387             5        Indiana            Fever              IND
## 388             5        Indiana            Fever              IND
## 389             5        Indiana            Fever              IND
## 390             5        Indiana            Fever              IND
## 391             5        Indiana            Fever              IND
## 392             5        Indiana            Fever              IND
## 393             5        Indiana            Fever              IND
## 394             5        Indiana            Fever              IND
## 395             5        Indiana            Fever              IND
## 396             5        Indiana            Fever              IND
## 397             5        Indiana            Fever              IND
## 398             5        Indiana            Fever              IND
## 399             5        Indiana            Fever              IND
## 400             5        Indiana            Fever              IND
## 401             5        Indiana            Fever              IND
## 402             5        Indiana            Fever              IND
## 403             5        Indiana            Fever              IND
## 404             5        Indiana            Fever              IND
## 405             5        Indiana            Fever              IND
## 406             5        Indiana            Fever              IND
## 407             5        Indiana            Fever              IND
## 408             5        Indiana            Fever              IND
## 409             5        Indiana            Fever              IND
## 410             5        Indiana            Fever              IND
## 411             5        Indiana            Fever              IND
## 412             5        Indiana            Fever              IND
## 413            18    Connecticut              Sun             CONN
## 414            18    Connecticut              Sun             CONN
## 415            18    Connecticut              Sun             CONN
## 416            18    Connecticut              Sun             CONN
## 417            18    Connecticut              Sun             CONN
## 418            18    Connecticut              Sun             CONN
## 419            18    Connecticut              Sun             CONN
## 420            18    Connecticut              Sun             CONN
## 421            18    Connecticut              Sun             CONN
## 422            18    Connecticut              Sun             CONN
## 423            18    Connecticut              Sun             CONN
## 424            18    Connecticut              Sun             CONN
## 425            18    Connecticut              Sun             CONN
## 426            18    Connecticut              Sun             CONN
## 427            18    Connecticut              Sun             CONN
## 428            18    Connecticut              Sun             CONN
## 429            18    Connecticut              Sun             CONN
## 430            18    Connecticut              Sun             CONN
## 431            18    Connecticut              Sun             CONN
## 432            18    Connecticut              Sun             CONN
## 433            18    Connecticut              Sun             CONN
## 434            18    Connecticut              Sun             CONN
## 435            18    Connecticut              Sun             CONN
## 436            18    Connecticut              Sun             CONN
## 437            18    Connecticut              Sun             CONN
## 438            18    Connecticut              Sun             CONN
## 439            18    Connecticut              Sun             CONN
## 440            18    Connecticut              Sun             CONN
## 441            18    Connecticut              Sun             CONN
## 442            18    Connecticut              Sun             CONN
## 443            18    Connecticut              Sun             CONN
## 444            18    Connecticut              Sun             CONN
## 445            18    Connecticut              Sun             CONN
## 446            18    Connecticut              Sun             CONN
## 447            18    Connecticut              Sun             CONN
## 448            18    Connecticut              Sun             CONN
## 449            18    Connecticut              Sun             CONN
## 450            18    Connecticut              Sun             CONN
## 451            18    Connecticut              Sun             CONN
## 452            18    Connecticut              Sun             CONN
## 453            18    Connecticut              Sun             CONN
## 454            18    Connecticut              Sun             CONN
## 455            18    Connecticut              Sun             CONN
## 456            18    Connecticut              Sun             CONN
## 457            18    Connecticut              Sun             CONN
## 458            18    Connecticut              Sun             CONN
## 459            18    Connecticut              Sun             CONN
## 460            18    Connecticut              Sun             CONN
## 461            18    Connecticut              Sun             CONN
## 462            18    Connecticut              Sun             CONN
## 463            18    Connecticut              Sun             CONN
## 464            18    Connecticut              Sun             CONN
## 465            18    Connecticut              Sun             CONN
## 466            18    Connecticut              Sun             CONN
## 467            18    Connecticut              Sun             CONN
## 468            18    Connecticut              Sun             CONN
## 469            18    Connecticut              Sun             CONN
## 470            18    Connecticut              Sun             CONN
## 471            18    Connecticut              Sun             CONN
## 472            18    Connecticut              Sun             CONN
## 473            18    Connecticut              Sun             CONN
## 474            18    Connecticut              Sun             CONN
## 475            18    Connecticut              Sun             CONN
## 476            18    Connecticut              Sun             CONN
## 477            18    Connecticut              Sun             CONN
## 478            18    Connecticut              Sun             CONN
## 479            18    Connecticut              Sun             CONN
## 480            18    Connecticut              Sun             CONN
## 481            18    Connecticut              Sun             CONN
## 482            18    Connecticut              Sun             CONN
## 483            18    Connecticut              Sun             CONN
## 484            18    Connecticut              Sun             CONN
## 485            18    Connecticut              Sun             CONN
## 486            18    Connecticut              Sun             CONN
## 487            18    Connecticut              Sun             CONN
## 488            18    Connecticut              Sun             CONN
## 489            18    Connecticut              Sun             CONN
## 490            18    Connecticut              Sun             CONN
## 491            18    Connecticut              Sun             CONN
## 492            18    Connecticut              Sun             CONN
## 493            18    Connecticut              Sun             CONN
## 494            18    Connecticut              Sun             CONN
## 495            18    Connecticut              Sun             CONN
## 496            18    Connecticut              Sun             CONN
## 497            18    Connecticut              Sun             CONN
## 498            18    Connecticut              Sun             CONN
## 499            18    Connecticut              Sun             CONN
## 500            18    Connecticut              Sun             CONN
## 501            18    Connecticut              Sun             CONN
## 502            18    Connecticut              Sun             CONN
## 503            18    Connecticut              Sun             CONN
## 504            18    Connecticut              Sun             CONN
## 505            18    Connecticut              Sun             CONN
## 506            18    Connecticut              Sun             CONN
## 507            18    Connecticut              Sun             CONN
## 508            18    Connecticut              Sun             CONN
## 509            18    Connecticut              Sun             CONN
## 510            18    Connecticut              Sun             CONN
## 511            18    Connecticut              Sun             CONN
## 512            18    Connecticut              Sun             CONN
## 513            18    Connecticut              Sun             CONN
## 514            18    Connecticut              Sun             CONN
## 515            18    Connecticut              Sun             CONN
## 516            18    Connecticut              Sun             CONN
## 517            18    Connecticut              Sun             CONN
## 518            18    Connecticut              Sun             CONN
## 519            18    Connecticut              Sun             CONN
## 520            18    Connecticut              Sun             CONN
## 521            18    Connecticut              Sun             CONN
## 522            18    Connecticut              Sun             CONN
## 523            18    Connecticut              Sun             CONN
## 524            18    Connecticut              Sun             CONN
## 525            18    Connecticut              Sun             CONN
## 526            18    Connecticut              Sun             CONN
## 527            18    Connecticut              Sun             CONN
## 528            18    Connecticut              Sun             CONN
## 529            18    Connecticut              Sun             CONN
## 530            18    Connecticut              Sun             CONN
## 531            18    Connecticut              Sun             CONN
## 532            18    Connecticut              Sun             CONN
## 533            18    Connecticut              Sun             CONN
## 534            18    Connecticut              Sun             CONN
## 535            18    Connecticut              Sun             CONN
## 536            18    Connecticut              Sun             CONN
## 537            18    Connecticut              Sun             CONN
## 538            18    Connecticut              Sun             CONN
## 539            18    Connecticut              Sun             CONN
## 540            18    Connecticut              Sun             CONN
## 541            18    Connecticut              Sun             CONN
## 542            18    Connecticut              Sun             CONN
## 543            18    Connecticut              Sun             CONN
## 544            18    Connecticut              Sun             CONN
## 545            18    Connecticut              Sun             CONN
## 546            18    Connecticut              Sun             CONN
## 547            18    Connecticut              Sun             CONN
## 548            18    Connecticut              Sun             CONN
## 549            18    Connecticut              Sun             CONN
## 550            18    Connecticut              Sun             CONN
## 551            18    Connecticut              Sun             CONN
## 552            18    Connecticut              Sun             CONN
## 553            18    Connecticut              Sun             CONN
## 554            18    Connecticut              Sun             CONN
## 555            18    Connecticut              Sun             CONN
## 556            18    Connecticut              Sun             CONN
## 557            18    Connecticut              Sun             CONN
## 558            18    Connecticut              Sun             CONN
## 559            18    Connecticut              Sun             CONN
## 560            18    Connecticut              Sun             CONN
## 561            18    Connecticut              Sun             CONN
## 562            18    Connecticut              Sun             CONN
## 563            18    Connecticut              Sun             CONN
## 564            18    Connecticut              Sun             CONN
## 565            18    Connecticut              Sun             CONN
## 566            18    Connecticut              Sun             CONN
## 567            18    Connecticut              Sun             CONN
## 568            18    Connecticut              Sun             CONN
## 569            18    Connecticut              Sun             CONN
## 570            18    Connecticut              Sun             CONN
## 571            18    Connecticut              Sun             CONN
## 572            18    Connecticut              Sun             CONN
## 573            18    Connecticut              Sun             CONN
## 574            18    Connecticut              Sun             CONN
## 575            18    Connecticut              Sun             CONN
## 576            18    Connecticut              Sun             CONN
## 577            18    Connecticut              Sun             CONN
## 578            18    Connecticut              Sun             CONN
## 579            18    Connecticut              Sun             CONN
## 580            18    Connecticut              Sun             CONN
## 581            18    Connecticut              Sun             CONN
## 582            18    Connecticut              Sun             CONN
## 583            18    Connecticut              Sun             CONN
## 584            18    Connecticut              Sun             CONN
## 585            18    Connecticut              Sun             CONN
## 586            18    Connecticut              Sun             CONN
## 587            18    Connecticut              Sun             CONN
## 588            18    Connecticut              Sun             CONN
## 589            18    Connecticut              Sun             CONN
## 590            18    Connecticut              Sun             CONN
## 591            18    Connecticut              Sun             CONN
## 592            18    Connecticut              Sun             CONN
## 593            18    Connecticut              Sun             CONN
## 594            18    Connecticut              Sun             CONN
## 595            18    Connecticut              Sun             CONN
## 596            18    Connecticut              Sun             CONN
## 597            18    Connecticut              Sun             CONN
## 598            18    Connecticut              Sun             CONN
## 599            18    Connecticut              Sun             CONN
## 600            18    Connecticut              Sun             CONN
## 601            18    Connecticut              Sun             CONN
## 602            18    Connecticut              Sun             CONN
## 603            18    Connecticut              Sun             CONN
## 604            18    Connecticut              Sun             CONN
## 605            18    Connecticut              Sun             CONN
## 606            18    Connecticut              Sun             CONN
## 607            18    Connecticut              Sun             CONN
## 608            18    Connecticut              Sun             CONN
## 609            18    Connecticut              Sun             CONN
## 610            18    Connecticut              Sun             CONN
## 611            18    Connecticut              Sun             CONN
## 612            18    Connecticut              Sun             CONN
## 613            18    Connecticut              Sun             CONN
## 614            18    Connecticut              Sun             CONN
## 615            18    Connecticut              Sun             CONN
## 616            18    Connecticut              Sun             CONN
## 617            18    Connecticut              Sun             CONN
## 618            18    Connecticut              Sun             CONN
## 619            18    Connecticut              Sun             CONN
## 620            18    Connecticut              Sun             CONN
## 621            18    Connecticut              Sun             CONN
## 622            18    Connecticut              Sun             CONN
## 623            18    Connecticut              Sun             CONN
## 624            18    Connecticut              Sun             CONN
## 625            18    Connecticut              Sun             CONN
## 626            18    Connecticut              Sun             CONN
## 627            18    Connecticut              Sun             CONN
## 628            18    Connecticut              Sun             CONN
## 629            18    Connecticut              Sun             CONN
## 630            18    Connecticut              Sun             CONN
## 631            18    Connecticut              Sun             CONN
## 632            18    Connecticut              Sun             CONN
## 633            18    Connecticut              Sun             CONN
## 634            18    Connecticut              Sun             CONN
## 635            18    Connecticut              Sun             CONN
## 636            18    Connecticut              Sun             CONN
## 637            18    Connecticut              Sun             CONN
## 638            18    Connecticut              Sun             CONN
## 639            18    Connecticut              Sun             CONN
## 640            18    Connecticut              Sun             CONN
## 641            18    Connecticut              Sun             CONN
## 642            18    Connecticut              Sun             CONN
## 643            18    Connecticut              Sun             CONN
## 644            18    Connecticut              Sun             CONN
## 645            18    Connecticut              Sun             CONN
## 646            18    Connecticut              Sun             CONN
## 647            18    Connecticut              Sun             CONN
## 648            18    Connecticut              Sun             CONN
## 649            18    Connecticut              Sun             CONN
## 650            18    Connecticut              Sun             CONN
## 651            18    Connecticut              Sun             CONN
## 652            18    Connecticut              Sun             CONN
## 653            18    Connecticut              Sun             CONN
## 654            18    Connecticut              Sun             CONN
## 655            18    Connecticut              Sun             CONN
## 656            18    Connecticut              Sun             CONN
## 657            18    Connecticut              Sun             CONN
## 658            18    Connecticut              Sun             CONN
## 659            18    Connecticut              Sun             CONN
## 660            18    Connecticut              Sun             CONN
## 661            18    Connecticut              Sun             CONN
## 662            18    Connecticut              Sun             CONN
## 663            18    Connecticut              Sun             CONN
## 664            18    Connecticut              Sun             CONN
## 665            18    Connecticut              Sun             CONN
## 666            18    Connecticut              Sun             CONN
## 667            18    Connecticut              Sun             CONN
## 668            18    Connecticut              Sun             CONN
## 669            18    Connecticut              Sun             CONN
## 670            18    Connecticut              Sun             CONN
## 671            18    Connecticut              Sun             CONN
## 672            18    Connecticut              Sun             CONN
## 673            18    Connecticut              Sun             CONN
## 674            18    Connecticut              Sun             CONN
## 675            18    Connecticut              Sun             CONN
## 676            18    Connecticut              Sun             CONN
## 677            18    Connecticut              Sun             CONN
## 678            18    Connecticut              Sun             CONN
## 679            18    Connecticut              Sun             CONN
## 680            18    Connecticut              Sun             CONN
## 681            18    Connecticut              Sun             CONN
## 682            18    Connecticut              Sun             CONN
## 683            18    Connecticut              Sun             CONN
## 684            18    Connecticut              Sun             CONN
## 685            18    Connecticut              Sun             CONN
## 686            18    Connecticut              Sun             CONN
## 687            18    Connecticut              Sun             CONN
## 688            18    Connecticut              Sun             CONN
## 689            18    Connecticut              Sun             CONN
## 690            18    Connecticut              Sun             CONN
## 691            18    Connecticut              Sun             CONN
## 692            18    Connecticut              Sun             CONN
## 693            18    Connecticut              Sun             CONN
## 694            18    Connecticut              Sun             CONN
## 695            18    Connecticut              Sun             CONN
## 696            18    Connecticut              Sun             CONN
## 697            18    Connecticut              Sun             CONN
## 698            18    Connecticut              Sun             CONN
## 699            18    Connecticut              Sun             CONN
## 700            18    Connecticut              Sun             CONN
## 701            18    Connecticut              Sun             CONN
## 702            18    Connecticut              Sun             CONN
## 703            18    Connecticut              Sun             CONN
## 704            18    Connecticut              Sun             CONN
## 705            18    Connecticut              Sun             CONN
## 706            18    Connecticut              Sun             CONN
## 707            18    Connecticut              Sun             CONN
## 708            18    Connecticut              Sun             CONN
## 709            18    Connecticut              Sun             CONN
## 710            18    Connecticut              Sun             CONN
## 711            18    Connecticut              Sun             CONN
## 712            18    Connecticut              Sun             CONN
## 713            18    Connecticut              Sun             CONN
## 714            18    Connecticut              Sun             CONN
## 715            18    Connecticut              Sun             CONN
## 716            18    Connecticut              Sun             CONN
## 717            18    Connecticut              Sun             CONN
## 718            18    Connecticut              Sun             CONN
## 719            18    Connecticut              Sun             CONN
## 720            18    Connecticut              Sun             CONN
## 721            18    Connecticut              Sun             CONN
## 722            18    Connecticut              Sun             CONN
## 723            18    Connecticut              Sun             CONN
## 724            18    Connecticut              Sun             CONN
## 725            18    Connecticut              Sun             CONN
## 726            18    Connecticut              Sun             CONN
## 727            18    Connecticut              Sun             CONN
## 728            18    Connecticut              Sun             CONN
## 729            18    Connecticut              Sun             CONN
## 730            18    Connecticut              Sun             CONN
## 731            18    Connecticut              Sun             CONN
## 732            18    Connecticut              Sun             CONN
## 733            18    Connecticut              Sun             CONN
## 734            18    Connecticut              Sun             CONN
## 735            18    Connecticut              Sun             CONN
## 736            18    Connecticut              Sun             CONN
## 737            18    Connecticut              Sun             CONN
## 738            18    Connecticut              Sun             CONN
## 739            18    Connecticut              Sun             CONN
## 740            18    Connecticut              Sun             CONN
## 741            18    Connecticut              Sun             CONN
## 742            18    Connecticut              Sun             CONN
## 743            18    Connecticut              Sun             CONN
## 744            18    Connecticut              Sun             CONN
## 745            18    Connecticut              Sun             CONN
## 746            18    Connecticut              Sun             CONN
## 747            18    Connecticut              Sun             CONN
## 748            18    Connecticut              Sun             CONN
## 749            18    Connecticut              Sun             CONN
## 750            18    Connecticut              Sun             CONN
## 751            18    Connecticut              Sun             CONN
## 752            18    Connecticut              Sun             CONN
## 753            18    Connecticut              Sun             CONN
## 754            18    Connecticut              Sun             CONN
## 755            18    Connecticut              Sun             CONN
## 756            18    Connecticut              Sun             CONN
## 757            18    Connecticut              Sun             CONN
## 758            18    Connecticut              Sun             CONN
## 759            18    Connecticut              Sun             CONN
## 760            18    Connecticut              Sun             CONN
## 761            18    Connecticut              Sun             CONN
## 762            18    Connecticut              Sun             CONN
## 763            18    Connecticut              Sun             CONN
## 764            18    Connecticut              Sun             CONN
## 765            18    Connecticut              Sun             CONN
## 766            18    Connecticut              Sun             CONN
## 767            18    Connecticut              Sun             CONN
## 768            18    Connecticut              Sun             CONN
## 769            18    Connecticut              Sun             CONN
## 770            18    Connecticut              Sun             CONN
## 771            18    Connecticut              Sun             CONN
## 772            18    Connecticut              Sun             CONN
## 773            18    Connecticut              Sun             CONN
## 774            18    Connecticut              Sun             CONN
## 775            18    Connecticut              Sun             CONN
## 776            18    Connecticut              Sun             CONN
## 777            18    Connecticut              Sun             CONN
## 778            18    Connecticut              Sun             CONN
## 779            18    Connecticut              Sun             CONN
## 780            18    Connecticut              Sun             CONN
## 781            18    Connecticut              Sun             CONN
## 782            18    Connecticut              Sun             CONN
## 783            18    Connecticut              Sun             CONN
## 784            18    Connecticut              Sun             CONN
## 785            18    Connecticut              Sun             CONN
## 786            18    Connecticut              Sun             CONN
## 787            18    Connecticut              Sun             CONN
## 788            18    Connecticut              Sun             CONN
## 789            18    Connecticut              Sun             CONN
## 790            18    Connecticut              Sun             CONN
## 791            18    Connecticut              Sun             CONN
## 792            18    Connecticut              Sun             CONN
## 793            18    Connecticut              Sun             CONN
## 794            18    Connecticut              Sun             CONN
## 795            18    Connecticut              Sun             CONN
## 796            18    Connecticut              Sun             CONN
## 797            18    Connecticut              Sun             CONN
## 798            18    Connecticut              Sun             CONN
## 799            18    Connecticut              Sun             CONN
## 800            11        Phoenix          Mercury              PHX
## 801            11        Phoenix          Mercury              PHX
## 802            11        Phoenix          Mercury              PHX
## 803            11        Phoenix          Mercury              PHX
## 804            11        Phoenix          Mercury              PHX
## 805            11        Phoenix          Mercury              PHX
## 806            11        Phoenix          Mercury              PHX
## 807            11        Phoenix          Mercury              PHX
## 808            11        Phoenix          Mercury              PHX
## 809            11        Phoenix          Mercury              PHX
## 810            11        Phoenix          Mercury              PHX
## 811            11        Phoenix          Mercury              PHX
## 812            11        Phoenix          Mercury              PHX
## 813            11        Phoenix          Mercury              PHX
## 814            11        Phoenix          Mercury              PHX
## 815            11        Phoenix          Mercury              PHX
## 816            11        Phoenix          Mercury              PHX
## 817            11        Phoenix          Mercury              PHX
## 818            11        Phoenix          Mercury              PHX
## 819            11        Phoenix          Mercury              PHX
## 820            11        Phoenix          Mercury              PHX
## 821            11        Phoenix          Mercury              PHX
## 822            11        Phoenix          Mercury              PHX
## 823            11        Phoenix          Mercury              PHX
## 824            11        Phoenix          Mercury              PHX
## 825            11        Phoenix          Mercury              PHX
## 826            11        Phoenix          Mercury              PHX
## 827            11        Phoenix          Mercury              PHX
## 828            11        Phoenix          Mercury              PHX
## 829            11        Phoenix          Mercury              PHX
## 830            11        Phoenix          Mercury              PHX
## 831            11        Phoenix          Mercury              PHX
## 832            11        Phoenix          Mercury              PHX
## 833            11        Phoenix          Mercury              PHX
## 834            11        Phoenix          Mercury              PHX
## 835            11        Phoenix          Mercury              PHX
## 836            11        Phoenix          Mercury              PHX
## 837            11        Phoenix          Mercury              PHX
## 838            11        Phoenix          Mercury              PHX
## 839            11        Phoenix          Mercury              PHX
## 840            11        Phoenix          Mercury              PHX
## 841            11        Phoenix          Mercury              PHX
## 842            11        Phoenix          Mercury              PHX
## 843            11        Phoenix          Mercury              PHX
## 844            11        Phoenix          Mercury              PHX
## 845            11        Phoenix          Mercury              PHX
## 846            11        Phoenix          Mercury              PHX
## 847            11        Phoenix          Mercury              PHX
## 848            11        Phoenix          Mercury              PHX
## 849            11        Phoenix          Mercury              PHX
## 850            11        Phoenix          Mercury              PHX
## 851            11        Phoenix          Mercury              PHX
## 852            11        Phoenix          Mercury              PHX
## 853            11        Phoenix          Mercury              PHX
## 854            11        Phoenix          Mercury              PHX
## 855            11        Phoenix          Mercury              PHX
## 856            11        Phoenix          Mercury              PHX
## 857            11        Phoenix          Mercury              PHX
## 858            11        Phoenix          Mercury              PHX
## 859            11        Phoenix          Mercury              PHX
## 860            11        Phoenix          Mercury              PHX
## 861            11        Phoenix          Mercury              PHX
## 862            11        Phoenix          Mercury              PHX
## 863            11        Phoenix          Mercury              PHX
## 864            11        Phoenix          Mercury              PHX
## 865            11        Phoenix          Mercury              PHX
## 866            11        Phoenix          Mercury              PHX
## 867            11        Phoenix          Mercury              PHX
## 868            11        Phoenix          Mercury              PHX
## 869            11        Phoenix          Mercury              PHX
## 870            11        Phoenix          Mercury              PHX
## 871            11        Phoenix          Mercury              PHX
## 872            11        Phoenix          Mercury              PHX
## 873            11        Phoenix          Mercury              PHX
## 874            11        Phoenix          Mercury              PHX
## 875            11        Phoenix          Mercury              PHX
## 876            11        Phoenix          Mercury              PHX
## 877            11        Phoenix          Mercury              PHX
## 878            11        Phoenix          Mercury              PHX
## 879            11        Phoenix          Mercury              PHX
## 880            11        Phoenix          Mercury              PHX
## 881            11        Phoenix          Mercury              PHX
## 882            11        Phoenix          Mercury              PHX
## 883            11        Phoenix          Mercury              PHX
## 884            11        Phoenix          Mercury              PHX
## 885            11        Phoenix          Mercury              PHX
## 886            11        Phoenix          Mercury              PHX
## 887            11        Phoenix          Mercury              PHX
## 888            11        Phoenix          Mercury              PHX
## 889            11        Phoenix          Mercury              PHX
## 890            11        Phoenix          Mercury              PHX
## 891            11        Phoenix          Mercury              PHX
## 892            11        Phoenix          Mercury              PHX
## 893            11        Phoenix          Mercury              PHX
## 894            11        Phoenix          Mercury              PHX
## 895            11        Phoenix          Mercury              PHX
## 896            11        Phoenix          Mercury              PHX
## 897            11        Phoenix          Mercury              PHX
## 898            11        Phoenix          Mercury              PHX
## 899            11        Phoenix          Mercury              PHX
## 900            11        Phoenix          Mercury              PHX
## 901            11        Phoenix          Mercury              PHX
## 902            11        Phoenix          Mercury              PHX
## 903            11        Phoenix          Mercury              PHX
## 904            11        Phoenix          Mercury              PHX
## 905            11        Phoenix          Mercury              PHX
## 906            11        Phoenix          Mercury              PHX
## 907            11        Phoenix          Mercury              PHX
## 908            11        Phoenix          Mercury              PHX
## 909            11        Phoenix          Mercury              PHX
## 910            11        Phoenix          Mercury              PHX
## 911            11        Phoenix          Mercury              PHX
## 912            11        Phoenix          Mercury              PHX
## 913            11        Phoenix          Mercury              PHX
## 914            11        Phoenix          Mercury              PHX
## 915            11        Phoenix          Mercury              PHX
## 916            11        Phoenix          Mercury              PHX
## 917            11        Phoenix          Mercury              PHX
## 918            11        Phoenix          Mercury              PHX
## 919            11        Phoenix          Mercury              PHX
## 920            11        Phoenix          Mercury              PHX
## 921            11        Phoenix          Mercury              PHX
## 922            11        Phoenix          Mercury              PHX
## 923            11        Phoenix          Mercury              PHX
## 924            11        Phoenix          Mercury              PHX
## 925            11        Phoenix          Mercury              PHX
## 926            11        Phoenix          Mercury              PHX
## 927            11        Phoenix          Mercury              PHX
## 928            11        Phoenix          Mercury              PHX
## 929            11        Phoenix          Mercury              PHX
## 930            11        Phoenix          Mercury              PHX
## 931            11        Phoenix          Mercury              PHX
## 932            11        Phoenix          Mercury              PHX
## 933            11        Phoenix          Mercury              PHX
## 934            11        Phoenix          Mercury              PHX
## 935            11        Phoenix          Mercury              PHX
## 936            11        Phoenix          Mercury              PHX
## 937            11        Phoenix          Mercury              PHX
## 938            11        Phoenix          Mercury              PHX
## 939            11        Phoenix          Mercury              PHX
## 940            11        Phoenix          Mercury              PHX
## 941            11        Phoenix          Mercury              PHX
## 942            11        Phoenix          Mercury              PHX
## 943            11        Phoenix          Mercury              PHX
## 944            11        Phoenix          Mercury              PHX
## 945            11        Phoenix          Mercury              PHX
## 946            11        Phoenix          Mercury              PHX
## 947            11        Phoenix          Mercury              PHX
## 948            11        Phoenix          Mercury              PHX
## 949            11        Phoenix          Mercury              PHX
## 950            11        Phoenix          Mercury              PHX
## 951            11        Phoenix          Mercury              PHX
## 952            11        Phoenix          Mercury              PHX
## 953            11        Phoenix          Mercury              PHX
## 954            11        Phoenix          Mercury              PHX
## 955            11        Phoenix          Mercury              PHX
## 956            11        Phoenix          Mercury              PHX
## 957            11        Phoenix          Mercury              PHX
## 958            11        Phoenix          Mercury              PHX
## 959            11        Phoenix          Mercury              PHX
## 960            11        Phoenix          Mercury              PHX
## 961            11        Phoenix          Mercury              PHX
## 962            11        Phoenix          Mercury              PHX
## 963            11        Phoenix          Mercury              PHX
## 964            11        Phoenix          Mercury              PHX
## 965            11        Phoenix          Mercury              PHX
## 966            11        Phoenix          Mercury              PHX
## 967            11        Phoenix          Mercury              PHX
## 968            11        Phoenix          Mercury              PHX
## 969            11        Phoenix          Mercury              PHX
## 970            11        Phoenix          Mercury              PHX
## 971            11        Phoenix          Mercury              PHX
## 972            11        Phoenix          Mercury              PHX
## 973            11        Phoenix          Mercury              PHX
## 974            11        Phoenix          Mercury              PHX
## 975            11        Phoenix          Mercury              PHX
## 976            11        Phoenix          Mercury              PHX
## 977            11        Phoenix          Mercury              PHX
## 978            11        Phoenix          Mercury              PHX
## 979            11        Phoenix          Mercury              PHX
## 980            11        Phoenix          Mercury              PHX
## 981            11        Phoenix          Mercury              PHX
## 982            11        Phoenix          Mercury              PHX
## 983            11        Phoenix          Mercury              PHX
## 984            11        Phoenix          Mercury              PHX
## 985            11        Phoenix          Mercury              PHX
## 986            11        Phoenix          Mercury              PHX
## 987            11        Phoenix          Mercury              PHX
## 988            11        Phoenix          Mercury              PHX
## 989            11        Phoenix          Mercury              PHX
## 990            11        Phoenix          Mercury              PHX
## 991            11        Phoenix          Mercury              PHX
## 992            11        Phoenix          Mercury              PHX
## 993            11        Phoenix          Mercury              PHX
## 994            11        Phoenix          Mercury              PHX
## 995            11        Phoenix          Mercury              PHX
## 996            11        Phoenix          Mercury              PHX
## 997            11        Phoenix          Mercury              PHX
## 998            11        Phoenix          Mercury              PHX
## 999            11        Phoenix          Mercury              PHX
## 1000           11        Phoenix          Mercury              PHX
## 1001           11        Phoenix          Mercury              PHX
## 1002           11        Phoenix          Mercury              PHX
## 1003           11        Phoenix          Mercury              PHX
## 1004           11        Phoenix          Mercury              PHX
## 1005           11        Phoenix          Mercury              PHX
## 1006           11        Phoenix          Mercury              PHX
## 1007           11        Phoenix          Mercury              PHX
## 1008           11        Phoenix          Mercury              PHX
## 1009           11        Phoenix          Mercury              PHX
## 1010           11        Phoenix          Mercury              PHX
## 1011           11        Phoenix          Mercury              PHX
## 1012           11        Phoenix          Mercury              PHX
## 1013           11        Phoenix          Mercury              PHX
## 1014           11        Phoenix          Mercury              PHX
## 1015           11        Phoenix          Mercury              PHX
## 1016           11        Phoenix          Mercury              PHX
## 1017           11        Phoenix          Mercury              PHX
## 1018           11        Phoenix          Mercury              PHX
## 1019           11        Phoenix          Mercury              PHX
## 1020           11        Phoenix          Mercury              PHX
## 1021           11        Phoenix          Mercury              PHX
## 1022           11        Phoenix          Mercury              PHX
## 1023           11        Phoenix          Mercury              PHX
## 1024           11        Phoenix          Mercury              PHX
## 1025           11        Phoenix          Mercury              PHX
## 1026           11        Phoenix          Mercury              PHX
## 1027           11        Phoenix          Mercury              PHX
## 1028           11        Phoenix          Mercury              PHX
## 1029           11        Phoenix          Mercury              PHX
## 1030           11        Phoenix          Mercury              PHX
## 1031           11        Phoenix          Mercury              PHX
## 1032           11        Phoenix          Mercury              PHX
## 1033           11        Phoenix          Mercury              PHX
## 1034           11        Phoenix          Mercury              PHX
## 1035           11        Phoenix          Mercury              PHX
## 1036           11        Phoenix          Mercury              PHX
## 1037           11        Phoenix          Mercury              PHX
## 1038           11        Phoenix          Mercury              PHX
## 1039           11        Phoenix          Mercury              PHX
## 1040           11        Phoenix          Mercury              PHX
## 1041           11        Phoenix          Mercury              PHX
## 1042           11        Phoenix          Mercury              PHX
## 1043           11        Phoenix          Mercury              PHX
## 1044           11        Phoenix          Mercury              PHX
## 1045           11        Phoenix          Mercury              PHX
## 1046           11        Phoenix          Mercury              PHX
## 1047           11        Phoenix          Mercury              PHX
## 1048           11        Phoenix          Mercury              PHX
## 1049           11        Phoenix          Mercury              PHX
## 1050           11        Phoenix          Mercury              PHX
## 1051           11        Phoenix          Mercury              PHX
## 1052           11        Phoenix          Mercury              PHX
## 1053           11        Phoenix          Mercury              PHX
## 1054           11        Phoenix          Mercury              PHX
## 1055           11        Phoenix          Mercury              PHX
## 1056           11        Phoenix          Mercury              PHX
## 1057           11        Phoenix          Mercury              PHX
## 1058           11        Phoenix          Mercury              PHX
## 1059           11        Phoenix          Mercury              PHX
## 1060           11        Phoenix          Mercury              PHX
## 1061           11        Phoenix          Mercury              PHX
## 1062           11        Phoenix          Mercury              PHX
## 1063           11        Phoenix          Mercury              PHX
## 1064           11        Phoenix          Mercury              PHX
## 1065           11        Phoenix          Mercury              PHX
## 1066           11        Phoenix          Mercury              PHX
## 1067           11        Phoenix          Mercury              PHX
## 1068           11        Phoenix          Mercury              PHX
## 1069           11        Phoenix          Mercury              PHX
## 1070           11        Phoenix          Mercury              PHX
## 1071           11        Phoenix          Mercury              PHX
## 1072           11        Phoenix          Mercury              PHX
## 1073           11        Phoenix          Mercury              PHX
## 1074           11        Phoenix          Mercury              PHX
## 1075           11        Phoenix          Mercury              PHX
## 1076           11        Phoenix          Mercury              PHX
## 1077           11        Phoenix          Mercury              PHX
## 1078           11        Phoenix          Mercury              PHX
## 1079           11        Phoenix          Mercury              PHX
## 1080           11        Phoenix          Mercury              PHX
## 1081           11        Phoenix          Mercury              PHX
## 1082           11        Phoenix          Mercury              PHX
## 1083           11        Phoenix          Mercury              PHX
## 1084           11        Phoenix          Mercury              PHX
## 1085           11        Phoenix          Mercury              PHX
## 1086           11        Phoenix          Mercury              PHX
## 1087           11        Phoenix          Mercury              PHX
## 1088           11        Phoenix          Mercury              PHX
## 1089           11        Phoenix          Mercury              PHX
## 1090           11        Phoenix          Mercury              PHX
## 1091           11        Phoenix          Mercury              PHX
## 1092           11        Phoenix          Mercury              PHX
## 1093           11        Phoenix          Mercury              PHX
## 1094           11        Phoenix          Mercury              PHX
## 1095           11        Phoenix          Mercury              PHX
## 1096           11        Phoenix          Mercury              PHX
## 1097           11        Phoenix          Mercury              PHX
## 1098           11        Phoenix          Mercury              PHX
## 1099           11        Phoenix          Mercury              PHX
## 1100           11        Phoenix          Mercury              PHX
## 1101           11        Phoenix          Mercury              PHX
## 1102           11        Phoenix          Mercury              PHX
## 1103           11        Phoenix          Mercury              PHX
## 1104           11        Phoenix          Mercury              PHX
## 1105           11        Phoenix          Mercury              PHX
## 1106           11        Phoenix          Mercury              PHX
## 1107           11        Phoenix          Mercury              PHX
## 1108           11        Phoenix          Mercury              PHX
## 1109           11        Phoenix          Mercury              PHX
## 1110           11        Phoenix          Mercury              PHX
## 1111           11        Phoenix          Mercury              PHX
## 1112           11        Phoenix          Mercury              PHX
## 1113           11        Phoenix          Mercury              PHX
## 1114           11        Phoenix          Mercury              PHX
## 1115           11        Phoenix          Mercury              PHX
## 1116           11        Phoenix          Mercury              PHX
## 1117           11        Phoenix          Mercury              PHX
## 1118           11        Phoenix          Mercury              PHX
## 1119           11        Phoenix          Mercury              PHX
## 1120           11        Phoenix          Mercury              PHX
## 1121           11        Phoenix          Mercury              PHX
## 1122           11        Phoenix          Mercury              PHX
## 1123           11        Phoenix          Mercury              PHX
## 1124           11        Phoenix          Mercury              PHX
## 1125           11        Phoenix          Mercury              PHX
## 1126           11        Phoenix          Mercury              PHX
## 1127           11        Phoenix          Mercury              PHX
## 1128           11        Phoenix          Mercury              PHX
## 1129           11        Phoenix          Mercury              PHX
## 1130           11        Phoenix          Mercury              PHX
## 1131           11        Phoenix          Mercury              PHX
## 1132           11        Phoenix          Mercury              PHX
## 1133           11        Phoenix          Mercury              PHX
## 1134           11        Phoenix          Mercury              PHX
## 1135           11        Phoenix          Mercury              PHX
## 1136           11        Phoenix          Mercury              PHX
## 1137           11        Phoenix          Mercury              PHX
## 1138           11        Phoenix          Mercury              PHX
## 1139           11        Phoenix          Mercury              PHX
## 1140           11        Phoenix          Mercury              PHX
## 1141           11        Phoenix          Mercury              PHX
## 1142           11        Phoenix          Mercury              PHX
## 1143           11        Phoenix          Mercury              PHX
## 1144           11        Phoenix          Mercury              PHX
## 1145           11        Phoenix          Mercury              PHX
## 1146           11        Phoenix          Mercury              PHX
## 1147           11        Phoenix          Mercury              PHX
## 1148           11        Phoenix          Mercury              PHX
## 1149           11        Phoenix          Mercury              PHX
## 1150           11        Phoenix          Mercury              PHX
## 1151           11        Phoenix          Mercury              PHX
## 1152           11        Phoenix          Mercury              PHX
## 1153           11        Phoenix          Mercury              PHX
## 1154           11        Phoenix          Mercury              PHX
## 1155           11        Phoenix          Mercury              PHX
## 1156           11        Phoenix          Mercury              PHX
## 1157           11        Phoenix          Mercury              PHX
## 1158           11        Phoenix          Mercury              PHX
## 1159           11        Phoenix          Mercury              PHX
## 1160           11        Phoenix          Mercury              PHX
## 1161           11        Phoenix          Mercury              PHX
## 1162           11        Phoenix          Mercury              PHX
## 1163           11        Phoenix          Mercury              PHX
## 1164           11        Phoenix          Mercury              PHX
## 1165           11        Phoenix          Mercury              PHX
## 1166           11        Phoenix          Mercury              PHX
## 1167           11        Phoenix          Mercury              PHX
## 1168           11        Phoenix          Mercury              PHX
## 1169           11        Phoenix          Mercury              PHX
## 1170           11        Phoenix          Mercury              PHX
## 1171           11        Phoenix          Mercury              PHX
## 1172           11        Phoenix          Mercury              PHX
## 1173           11        Phoenix          Mercury              PHX
## 1174           11        Phoenix          Mercury              PHX
## 1175           11        Phoenix          Mercury              PHX
## 1176           11        Phoenix          Mercury              PHX
## 1177           11        Phoenix          Mercury              PHX
## 1178           11        Phoenix          Mercury              PHX
## 1179           11        Phoenix          Mercury              PHX
## 1180           11        Phoenix          Mercury              PHX
## 1181           11        Phoenix          Mercury              PHX
## 1182           11        Phoenix          Mercury              PHX
## 1183           11        Phoenix          Mercury              PHX
## 1184           11        Phoenix          Mercury              PHX
## 1185           11        Phoenix          Mercury              PHX
## 1186           11        Phoenix          Mercury              PHX
## 1187           11        Phoenix          Mercury              PHX
## 1188           11        Phoenix          Mercury              PHX
## 1189           11        Phoenix          Mercury              PHX
## 1190           11        Phoenix          Mercury              PHX
## 1191           11        Phoenix          Mercury              PHX
## 1192           11        Phoenix          Mercury              PHX
## 1193           11        Phoenix          Mercury              PHX
## 1194           11        Phoenix          Mercury              PHX
## 1195           11        Phoenix          Mercury              PHX
## 1196           11        Phoenix          Mercury              PHX
## 1197            3         Dallas            Wings              DAL
## 1198            3         Dallas            Wings              DAL
## 1199            3         Dallas            Wings              DAL
## 1200            3         Dallas            Wings              DAL
## 1201            3         Dallas            Wings              DAL
## 1202            3         Dallas            Wings              DAL
## 1203            3         Dallas            Wings              DAL
## 1204            3         Dallas            Wings              DAL
## 1205            3         Dallas            Wings              DAL
## 1206            3         Dallas            Wings              DAL
## 1207            3         Dallas            Wings              DAL
## 1208            3         Dallas            Wings              DAL
## 1209            3         Dallas            Wings              DAL
## 1210            3         Dallas            Wings              DAL
## 1211            3         Dallas            Wings              DAL
## 1212            3         Dallas            Wings              DAL
## 1213            3         Dallas            Wings              DAL
## 1214            3         Dallas            Wings              DAL
## 1215            3         Dallas            Wings              DAL
## 1216            3         Dallas            Wings              DAL
## 1217            3         Dallas            Wings              DAL
## 1218            3         Dallas            Wings              DAL
## 1219            3         Dallas            Wings              DAL
## 1220            3         Dallas            Wings              DAL
## 1221            3         Dallas            Wings              DAL
## 1222            3         Dallas            Wings              DAL
## 1223            3         Dallas            Wings              DAL
## 1224            3         Dallas            Wings              DAL
## 1225            3         Dallas            Wings              DAL
## 1226            3         Dallas            Wings              DAL
## 1227            3         Dallas            Wings              DAL
## 1228            3         Dallas            Wings              DAL
## 1229            3         Dallas            Wings              DAL
## 1230            3         Dallas            Wings              DAL
## 1231            3         Dallas            Wings              DAL
## 1232            3         Dallas            Wings              DAL
## 1233            3         Dallas            Wings              DAL
## 1234            3         Dallas            Wings              DAL
## 1235            3         Dallas            Wings              DAL
## 1236            3         Dallas            Wings              DAL
## 1237            3         Dallas            Wings              DAL
## 1238            3         Dallas            Wings              DAL
## 1239            3         Dallas            Wings              DAL
## 1240            3         Dallas            Wings              DAL
## 1241            3         Dallas            Wings              DAL
## 1242            3         Dallas            Wings              DAL
## 1243            3         Dallas            Wings              DAL
## 1244            3         Dallas            Wings              DAL
## 1245            3         Dallas            Wings              DAL
## 1246            3         Dallas            Wings              DAL
## 1247            3         Dallas            Wings              DAL
## 1248            3         Dallas            Wings              DAL
## 1249            3         Dallas            Wings              DAL
## 1250            3         Dallas            Wings              DAL
## 1251            3         Dallas            Wings              DAL
## 1252            3         Dallas            Wings              DAL
## 1253            3         Dallas            Wings              DAL
## 1254            3         Dallas            Wings              DAL
## 1255            3         Dallas            Wings              DAL
## 1256            3         Dallas            Wings              DAL
## 1257            3         Dallas            Wings              DAL
## 1258            3         Dallas            Wings              DAL
## 1259            3         Dallas            Wings              DAL
## 1260            3         Dallas            Wings              DAL
## 1261            3         Dallas            Wings              DAL
## 1262            3         Dallas            Wings              DAL
## 1263            3         Dallas            Wings              DAL
## 1264            3         Dallas            Wings              DAL
## 1265            3         Dallas            Wings              DAL
## 1266            3         Dallas            Wings              DAL
## 1267            3         Dallas            Wings              DAL
## 1268            3         Dallas            Wings              DAL
## 1269            3         Dallas            Wings              DAL
## 1270            3         Dallas            Wings              DAL
## 1271            3         Dallas            Wings              DAL
## 1272            3         Dallas            Wings              DAL
## 1273            3         Dallas            Wings              DAL
## 1274            3         Dallas            Wings              DAL
## 1275            3         Dallas            Wings              DAL
## 1276            3         Dallas            Wings              DAL
## 1277            3         Dallas            Wings              DAL
## 1278            3         Dallas            Wings              DAL
## 1279            3         Dallas            Wings              DAL
## 1280            3         Dallas            Wings              DAL
## 1281            3         Dallas            Wings              DAL
## 1282            3         Dallas            Wings              DAL
## 1283            3         Dallas            Wings              DAL
## 1284            3         Dallas            Wings              DAL
## 1285            3         Dallas            Wings              DAL
## 1286            3         Dallas            Wings              DAL
## 1287            3         Dallas            Wings              DAL
## 1288            3         Dallas            Wings              DAL
## 1289            3         Dallas            Wings              DAL
## 1290            3         Dallas            Wings              DAL
## 1291            3         Dallas            Wings              DAL
## 1292            3         Dallas            Wings              DAL
## 1293            3         Dallas            Wings              DAL
## 1294            3         Dallas            Wings              DAL
## 1295            3         Dallas            Wings              DAL
## 1296            3         Dallas            Wings              DAL
## 1297            3         Dallas            Wings              DAL
## 1298            3         Dallas            Wings              DAL
## 1299            3         Dallas            Wings              DAL
## 1300            3         Dallas            Wings              DAL
## 1301            3         Dallas            Wings              DAL
## 1302            3         Dallas            Wings              DAL
## 1303            3         Dallas            Wings              DAL
## 1304            3         Dallas            Wings              DAL
## 1305            3         Dallas            Wings              DAL
## 1306            3         Dallas            Wings              DAL
## 1307            3         Dallas            Wings              DAL
## 1308            3         Dallas            Wings              DAL
## 1309            3         Dallas            Wings              DAL
## 1310            3         Dallas            Wings              DAL
## 1311            3         Dallas            Wings              DAL
## 1312            3         Dallas            Wings              DAL
## 1313            3         Dallas            Wings              DAL
## 1314            3         Dallas            Wings              DAL
## 1315            3         Dallas            Wings              DAL
## 1316            3         Dallas            Wings              DAL
## 1317            3         Dallas            Wings              DAL
## 1318            3         Dallas            Wings              DAL
## 1319            3         Dallas            Wings              DAL
## 1320            3         Dallas            Wings              DAL
## 1321            3         Dallas            Wings              DAL
## 1322            3         Dallas            Wings              DAL
## 1323            3         Dallas            Wings              DAL
## 1324            3         Dallas            Wings              DAL
## 1325            3         Dallas            Wings              DAL
## 1326            3         Dallas            Wings              DAL
## 1327            3         Dallas            Wings              DAL
## 1328            3         Dallas            Wings              DAL
## 1329            3         Dallas            Wings              DAL
## 1330            3         Dallas            Wings              DAL
## 1331            3         Dallas            Wings              DAL
## 1332            3         Dallas            Wings              DAL
## 1333            3         Dallas            Wings              DAL
## 1334            3         Dallas            Wings              DAL
## 1335            3         Dallas            Wings              DAL
## 1336            3         Dallas            Wings              DAL
## 1337            3         Dallas            Wings              DAL
## 1338            3         Dallas            Wings              DAL
## 1339            3         Dallas            Wings              DAL
## 1340            3         Dallas            Wings              DAL
## 1341            3         Dallas            Wings              DAL
## 1342            3         Dallas            Wings              DAL
## 1343            3         Dallas            Wings              DAL
## 1344            3         Dallas            Wings              DAL
## 1345            3         Dallas            Wings              DAL
## 1346            3         Dallas            Wings              DAL
## 1347            3         Dallas            Wings              DAL
## 1348            3         Dallas            Wings              DAL
## 1349            3         Dallas            Wings              DAL
## 1350            3         Dallas            Wings              DAL
## 1351            3         Dallas            Wings              DAL
## 1352            3         Dallas            Wings              DAL
## 1353            3         Dallas            Wings              DAL
## 1354            3         Dallas            Wings              DAL
## 1355            3         Dallas            Wings              DAL
## 1356            3         Dallas            Wings              DAL
## 1357            3         Dallas            Wings              DAL
## 1358            3         Dallas            Wings              DAL
## 1359            3         Dallas            Wings              DAL
## 1360            3         Dallas            Wings              DAL
## 1361            3         Dallas            Wings              DAL
## 1362            3         Dallas            Wings              DAL
## 1363            3         Dallas            Wings              DAL
## 1364            3         Dallas            Wings              DAL
## 1365            3         Dallas            Wings              DAL
## 1366            3         Dallas            Wings              DAL
## 1367            3         Dallas            Wings              DAL
## 1368            3         Dallas            Wings              DAL
## 1369            3         Dallas            Wings              DAL
## 1370            3         Dallas            Wings              DAL
## 1371            3         Dallas            Wings              DAL
## 1372            3         Dallas            Wings              DAL
## 1373            3         Dallas            Wings              DAL
## 1374            3         Dallas            Wings              DAL
## 1375            3         Dallas            Wings              DAL
## 1376            3         Dallas            Wings              DAL
## 1377            3         Dallas            Wings              DAL
## 1378            3         Dallas            Wings              DAL
## 1379            3         Dallas            Wings              DAL
## 1380            3         Dallas            Wings              DAL
## 1381            3         Dallas            Wings              DAL
## 1382            3         Dallas            Wings              DAL
## 1383            3         Dallas            Wings              DAL
## 1384            3         Dallas            Wings              DAL
## 1385            3         Dallas            Wings              DAL
## 1386            3         Dallas            Wings              DAL
## 1387            3         Dallas            Wings              DAL
## 1388            3         Dallas            Wings              DAL
## 1389            3         Dallas            Wings              DAL
## 1390            3         Dallas            Wings              DAL
## 1391            3         Dallas            Wings              DAL
## 1392            3         Dallas            Wings              DAL
## 1393            3         Dallas            Wings              DAL
## 1394            3         Dallas            Wings              DAL
## 1395            3         Dallas            Wings              DAL
## 1396            3         Dallas            Wings              DAL
## 1397            3         Dallas            Wings              DAL
## 1398            3         Dallas            Wings              DAL
## 1399            3         Dallas            Wings              DAL
## 1400            3         Dallas            Wings              DAL
## 1401            3         Dallas            Wings              DAL
## 1402            3         Dallas            Wings              DAL
## 1403            3         Dallas            Wings              DAL
## 1404            3         Dallas            Wings              DAL
## 1405            3         Dallas            Wings              DAL
## 1406            3         Dallas            Wings              DAL
## 1407            3         Dallas            Wings              DAL
## 1408            3         Dallas            Wings              DAL
## 1409            3         Dallas            Wings              DAL
## 1410            3         Dallas            Wings              DAL
## 1411            3         Dallas            Wings              DAL
## 1412            3         Dallas            Wings              DAL
## 1413            3         Dallas            Wings              DAL
## 1414            3         Dallas            Wings              DAL
## 1415            3         Dallas            Wings              DAL
## 1416            3         Dallas            Wings              DAL
## 1417            3         Dallas            Wings              DAL
## 1418            3         Dallas            Wings              DAL
## 1419            3         Dallas            Wings              DAL
## 1420            3         Dallas            Wings              DAL
## 1421            3         Dallas            Wings              DAL
## 1422            3         Dallas            Wings              DAL
## 1423            3         Dallas            Wings              DAL
## 1424            3         Dallas            Wings              DAL
## 1425            3         Dallas            Wings              DAL
## 1426            3         Dallas            Wings              DAL
## 1427            3         Dallas            Wings              DAL
## 1428            3         Dallas            Wings              DAL
## 1429            3         Dallas            Wings              DAL
## 1430            3         Dallas            Wings              DAL
## 1431            3         Dallas            Wings              DAL
## 1432            3         Dallas            Wings              DAL
## 1433            3         Dallas            Wings              DAL
## 1434            3         Dallas            Wings              DAL
## 1435            3         Dallas            Wings              DAL
## 1436            3         Dallas            Wings              DAL
## 1437            3         Dallas            Wings              DAL
## 1438            3         Dallas            Wings              DAL
## 1439            3         Dallas            Wings              DAL
## 1440            3         Dallas            Wings              DAL
## 1441            3         Dallas            Wings              DAL
## 1442            3         Dallas            Wings              DAL
## 1443            3         Dallas            Wings              DAL
## 1444            3         Dallas            Wings              DAL
## 1445            3         Dallas            Wings              DAL
## 1446            3         Dallas            Wings              DAL
## 1447            3         Dallas            Wings              DAL
## 1448            3         Dallas            Wings              DAL
## 1449            3         Dallas            Wings              DAL
## 1450            3         Dallas            Wings              DAL
## 1451            3         Dallas            Wings              DAL
## 1452            3         Dallas            Wings              DAL
## 1453            3         Dallas            Wings              DAL
## 1454            3         Dallas            Wings              DAL
## 1455            3         Dallas            Wings              DAL
## 1456            3         Dallas            Wings              DAL
## 1457            3         Dallas            Wings              DAL
## 1458            3         Dallas            Wings              DAL
## 1459            3         Dallas            Wings              DAL
## 1460            3         Dallas            Wings              DAL
## 1461            3         Dallas            Wings              DAL
## 1462            3         Dallas            Wings              DAL
## 1463            3         Dallas            Wings              DAL
## 1464            3         Dallas            Wings              DAL
## 1465            3         Dallas            Wings              DAL
## 1466            3         Dallas            Wings              DAL
## 1467            3         Dallas            Wings              DAL
## 1468            3         Dallas            Wings              DAL
## 1469            3         Dallas            Wings              DAL
## 1470            3         Dallas            Wings              DAL
## 1471            3         Dallas            Wings              DAL
## 1472            3         Dallas            Wings              DAL
## 1473            3         Dallas            Wings              DAL
## 1474            3         Dallas            Wings              DAL
## 1475            3         Dallas            Wings              DAL
## 1476            3         Dallas            Wings              DAL
## 1477            3         Dallas            Wings              DAL
## 1478            3         Dallas            Wings              DAL
## 1479            3         Dallas            Wings              DAL
## 1480            3         Dallas            Wings              DAL
## 1481            3         Dallas            Wings              DAL
## 1482            3         Dallas            Wings              DAL
## 1483            3         Dallas            Wings              DAL
## 1484            3         Dallas            Wings              DAL
## 1485            3         Dallas            Wings              DAL
## 1486            3         Dallas            Wings              DAL
## 1487            3         Dallas            Wings              DAL
## 1488            3         Dallas            Wings              DAL
## 1489            3         Dallas            Wings              DAL
## 1490            3         Dallas            Wings              DAL
## 1491            3         Dallas            Wings              DAL
## 1492            3         Dallas            Wings              DAL
## 1493            3         Dallas            Wings              DAL
## 1494            3         Dallas            Wings              DAL
## 1495            3         Dallas            Wings              DAL
## 1496            3         Dallas            Wings              DAL
## 1497            3         Dallas            Wings              DAL
## 1498            3         Dallas            Wings              DAL
## 1499            3         Dallas            Wings              DAL
## 1500            3         Dallas            Wings              DAL
## 1501            3         Dallas            Wings              DAL
## 1502            3         Dallas            Wings              DAL
## 1503            3         Dallas            Wings              DAL
## 1504            3         Dallas            Wings              DAL
## 1505            3         Dallas            Wings              DAL
## 1506            3         Dallas            Wings              DAL
## 1507            3         Dallas            Wings              DAL
## 1508            3         Dallas            Wings              DAL
## 1509            3         Dallas            Wings              DAL
## 1510            3         Dallas            Wings              DAL
## 1511            3         Dallas            Wings              DAL
## 1512            3         Dallas            Wings              DAL
## 1513            3         Dallas            Wings              DAL
## 1514            3         Dallas            Wings              DAL
## 1515            3         Dallas            Wings              DAL
## 1516            3         Dallas            Wings              DAL
## 1517            3         Dallas            Wings              DAL
## 1518            3         Dallas            Wings              DAL
## 1519            3         Dallas            Wings              DAL
## 1520            3         Dallas            Wings              DAL
## 1521            3         Dallas            Wings              DAL
## 1522            3         Dallas            Wings              DAL
## 1523            3         Dallas            Wings              DAL
## 1524            3         Dallas            Wings              DAL
## 1525            3         Dallas            Wings              DAL
## 1526            3         Dallas            Wings              DAL
## 1527            3         Dallas            Wings              DAL
## 1528            3         Dallas            Wings              DAL
## 1529            3         Dallas            Wings              DAL
## 1530            3         Dallas            Wings              DAL
## 1531            3         Dallas            Wings              DAL
## 1532            3         Dallas            Wings              DAL
## 1533            3         Dallas            Wings              DAL
## 1534            3         Dallas            Wings              DAL
## 1535            3         Dallas            Wings              DAL
## 1536            3         Dallas            Wings              DAL
## 1537            3         Dallas            Wings              DAL
## 1538            3         Dallas            Wings              DAL
## 1539            3         Dallas            Wings              DAL
## 1540            3         Dallas            Wings              DAL
## 1541            3         Dallas            Wings              DAL
## 1542            3         Dallas            Wings              DAL
## 1543            3         Dallas            Wings              DAL
## 1544            3         Dallas            Wings              DAL
## 1545            3         Dallas            Wings              DAL
## 1546            3         Dallas            Wings              DAL
## 1547            3         Dallas            Wings              DAL
## 1548            3         Dallas            Wings              DAL
## 1549            3         Dallas            Wings              DAL
## 1550            3         Dallas            Wings              DAL
## 1551            3         Dallas            Wings              DAL
## 1552            3         Dallas            Wings              DAL
## 1553            3         Dallas            Wings              DAL
## 1554            3         Dallas            Wings              DAL
## 1555            3         Dallas            Wings              DAL
## 1556            3         Dallas            Wings              DAL
## 1557            3         Dallas            Wings              DAL
## 1558            3         Dallas            Wings              DAL
## 1559            3         Dallas            Wings              DAL
## 1560            3         Dallas            Wings              DAL
## 1561            3         Dallas            Wings              DAL
## 1562            3         Dallas            Wings              DAL
## 1563            3         Dallas            Wings              DAL
## 1564            3         Dallas            Wings              DAL
## 1565            3         Dallas            Wings              DAL
## 1566            3         Dallas            Wings              DAL
## 1567            3         Dallas            Wings              DAL
## 1568            3         Dallas            Wings              DAL
## 1569            3         Dallas            Wings              DAL
## 1570            3         Dallas            Wings              DAL
## 1571            3         Dallas            Wings              DAL
## 1572            3         Dallas            Wings              DAL
## 1573            3         Dallas            Wings              DAL
## 1574            3         Dallas            Wings              DAL
## 1575            3         Dallas            Wings              DAL
## 1576            3         Dallas            Wings              DAL
## 1577            3         Dallas            Wings              DAL
## 1578            3         Dallas            Wings              DAL
## 1579            3         Dallas            Wings              DAL
## 1580            3         Dallas            Wings              DAL
## 1581            3         Dallas            Wings              DAL
## 1582            3         Dallas            Wings              DAL
## 1583            3         Dallas            Wings              DAL
## 1584            3         Dallas            Wings              DAL
## 1585            3         Dallas            Wings              DAL
## 1586            3         Dallas            Wings              DAL
## 1587            3         Dallas            Wings              DAL
## 1588            3         Dallas            Wings              DAL
## 1589            3         Dallas            Wings              DAL
## 1590            3         Dallas            Wings              DAL
## 1591            3         Dallas            Wings              DAL
## 1592            3         Dallas            Wings              DAL
## 1593            3         Dallas            Wings              DAL
## 1594            3         Dallas            Wings              DAL
## 1595            3         Dallas            Wings              DAL
## 1596            3         Dallas            Wings              DAL
## 1597            3         Dallas            Wings              DAL
## 1598            3         Dallas            Wings              DAL
## 1599            3         Dallas            Wings              DAL
## 1600            3         Dallas            Wings              DAL
## 1601            3         Dallas            Wings              DAL
## 1602            3         Dallas            Wings              DAL
## 1603            3         Dallas            Wings              DAL
## 1604            3         Dallas            Wings              DAL
## 1605            3         Dallas            Wings              DAL
## 1606            3         Dallas            Wings              DAL
## 1607            3         Dallas            Wings              DAL
## 1608            3         Dallas            Wings              DAL
## 1609            3         Dallas            Wings              DAL
## 1610            3         Dallas            Wings              DAL
## 1611            3         Dallas            Wings              DAL
## 1612            3         Dallas            Wings              DAL
## 1613            3         Dallas            Wings              DAL
## 1614            3         Dallas            Wings              DAL
## 1615            3         Dallas            Wings              DAL
## 1616            3         Dallas            Wings              DAL
## 1617            3         Dallas            Wings              DAL
## 1618            3         Dallas            Wings              DAL
## 1619            3         Dallas            Wings              DAL
## 1620            3         Dallas            Wings              DAL
## 1621            3         Dallas            Wings              DAL
## 1622            3         Dallas            Wings              DAL
## 1623            3         Dallas            Wings              DAL
## 1624            3         Dallas            Wings              DAL
## 1625            3         Dallas            Wings              DAL
## 1626           19        Chicago              Sky              CHI
## 1627           19        Chicago              Sky              CHI
## 1628           19        Chicago              Sky              CHI
## 1629           19        Chicago              Sky              CHI
## 1630           19        Chicago              Sky              CHI
## 1631           19        Chicago              Sky              CHI
## 1632           19        Chicago              Sky              CHI
## 1633           19        Chicago              Sky              CHI
## 1634           19        Chicago              Sky              CHI
## 1635           19        Chicago              Sky              CHI
## 1636           19        Chicago              Sky              CHI
## 1637           19        Chicago              Sky              CHI
## 1638           19        Chicago              Sky              CHI
## 1639           19        Chicago              Sky              CHI
## 1640           19        Chicago              Sky              CHI
## 1641           19        Chicago              Sky              CHI
## 1642           19        Chicago              Sky              CHI
## 1643           19        Chicago              Sky              CHI
## 1644           19        Chicago              Sky              CHI
## 1645           19        Chicago              Sky              CHI
## 1646           19        Chicago              Sky              CHI
## 1647           19        Chicago              Sky              CHI
## 1648           19        Chicago              Sky              CHI
## 1649           19        Chicago              Sky              CHI
## 1650           19        Chicago              Sky              CHI
## 1651           19        Chicago              Sky              CHI
## 1652           19        Chicago              Sky              CHI
## 1653           19        Chicago              Sky              CHI
## 1654           19        Chicago              Sky              CHI
## 1655           19        Chicago              Sky              CHI
## 1656           19        Chicago              Sky              CHI
## 1657           19        Chicago              Sky              CHI
## 1658           19        Chicago              Sky              CHI
## 1659           19        Chicago              Sky              CHI
## 1660           19        Chicago              Sky              CHI
## 1661           19        Chicago              Sky              CHI
## 1662           19        Chicago              Sky              CHI
## 1663           19        Chicago              Sky              CHI
## 1664           19        Chicago              Sky              CHI
## 1665           19        Chicago              Sky              CHI
## 1666           19        Chicago              Sky              CHI
## 1667           19        Chicago              Sky              CHI
## 1668           19        Chicago              Sky              CHI
## 1669           19        Chicago              Sky              CHI
## 1670           19        Chicago              Sky              CHI
## 1671           19        Chicago              Sky              CHI
## 1672           19        Chicago              Sky              CHI
## 1673           19        Chicago              Sky              CHI
## 1674           19        Chicago              Sky              CHI
## 1675           19        Chicago              Sky              CHI
## 1676           19        Chicago              Sky              CHI
## 1677           19        Chicago              Sky              CHI
## 1678           19        Chicago              Sky              CHI
## 1679           19        Chicago              Sky              CHI
## 1680           19        Chicago              Sky              CHI
## 1681           19        Chicago              Sky              CHI
## 1682           19        Chicago              Sky              CHI
## 1683           19        Chicago              Sky              CHI
## 1684           19        Chicago              Sky              CHI
## 1685           19        Chicago              Sky              CHI
## 1686           19        Chicago              Sky              CHI
## 1687           19        Chicago              Sky              CHI
## 1688           19        Chicago              Sky              CHI
## 1689           19        Chicago              Sky              CHI
## 1690           19        Chicago              Sky              CHI
## 1691           19        Chicago              Sky              CHI
## 1692           19        Chicago              Sky              CHI
## 1693           19        Chicago              Sky              CHI
## 1694           19        Chicago              Sky              CHI
## 1695           19        Chicago              Sky              CHI
## 1696           19        Chicago              Sky              CHI
## 1697           19        Chicago              Sky              CHI
## 1698           19        Chicago              Sky              CHI
## 1699           19        Chicago              Sky              CHI
## 1700           19        Chicago              Sky              CHI
## 1701           19        Chicago              Sky              CHI
## 1702           19        Chicago              Sky              CHI
## 1703           19        Chicago              Sky              CHI
## 1704           19        Chicago              Sky              CHI
## 1705           19        Chicago              Sky              CHI
## 1706           19        Chicago              Sky              CHI
## 1707           19        Chicago              Sky              CHI
## 1708           19        Chicago              Sky              CHI
## 1709           19        Chicago              Sky              CHI
## 1710           19        Chicago              Sky              CHI
## 1711           19        Chicago              Sky              CHI
## 1712           19        Chicago              Sky              CHI
## 1713           19        Chicago              Sky              CHI
## 1714           19        Chicago              Sky              CHI
## 1715           19        Chicago              Sky              CHI
## 1716           19        Chicago              Sky              CHI
## 1717           19        Chicago              Sky              CHI
## 1718           19        Chicago              Sky              CHI
## 1719           19        Chicago              Sky              CHI
## 1720           19        Chicago              Sky              CHI
## 1721           19        Chicago              Sky              CHI
## 1722           19        Chicago              Sky              CHI
## 1723           19        Chicago              Sky              CHI
## 1724           19        Chicago              Sky              CHI
## 1725           19        Chicago              Sky              CHI
## 1726           19        Chicago              Sky              CHI
## 1727           19        Chicago              Sky              CHI
## 1728           19        Chicago              Sky              CHI
## 1729           19        Chicago              Sky              CHI
## 1730           19        Chicago              Sky              CHI
## 1731           19        Chicago              Sky              CHI
## 1732           19        Chicago              Sky              CHI
## 1733           19        Chicago              Sky              CHI
## 1734           19        Chicago              Sky              CHI
## 1735           19        Chicago              Sky              CHI
## 1736           19        Chicago              Sky              CHI
## 1737           19        Chicago              Sky              CHI
## 1738           19        Chicago              Sky              CHI
## 1739           19        Chicago              Sky              CHI
## 1740           19        Chicago              Sky              CHI
## 1741           19        Chicago              Sky              CHI
## 1742           19        Chicago              Sky              CHI
## 1743           19        Chicago              Sky              CHI
## 1744           19        Chicago              Sky              CHI
## 1745           19        Chicago              Sky              CHI
## 1746           19        Chicago              Sky              CHI
## 1747           19        Chicago              Sky              CHI
## 1748           19        Chicago              Sky              CHI
## 1749           19        Chicago              Sky              CHI
## 1750           19        Chicago              Sky              CHI
## 1751           19        Chicago              Sky              CHI
## 1752           19        Chicago              Sky              CHI
## 1753           19        Chicago              Sky              CHI
## 1754           19        Chicago              Sky              CHI
## 1755           19        Chicago              Sky              CHI
## 1756           19        Chicago              Sky              CHI
## 1757           19        Chicago              Sky              CHI
## 1758           19        Chicago              Sky              CHI
## 1759           19        Chicago              Sky              CHI
## 1760           19        Chicago              Sky              CHI
## 1761           19        Chicago              Sky              CHI
## 1762           19        Chicago              Sky              CHI
## 1763           19        Chicago              Sky              CHI
## 1764           19        Chicago              Sky              CHI
## 1765           19        Chicago              Sky              CHI
## 1766           19        Chicago              Sky              CHI
## 1767           19        Chicago              Sky              CHI
## 1768           19        Chicago              Sky              CHI
## 1769           19        Chicago              Sky              CHI
## 1770           19        Chicago              Sky              CHI
## 1771           19        Chicago              Sky              CHI
## 1772           19        Chicago              Sky              CHI
## 1773           19        Chicago              Sky              CHI
## 1774           19        Chicago              Sky              CHI
## 1775           19        Chicago              Sky              CHI
## 1776           19        Chicago              Sky              CHI
## 1777           19        Chicago              Sky              CHI
## 1778           19        Chicago              Sky              CHI
## 1779           19        Chicago              Sky              CHI
## 1780           19        Chicago              Sky              CHI
## 1781           19        Chicago              Sky              CHI
## 1782           19        Chicago              Sky              CHI
## 1783           19        Chicago              Sky              CHI
## 1784           19        Chicago              Sky              CHI
## 1785           19        Chicago              Sky              CHI
## 1786           19        Chicago              Sky              CHI
## 1787           19        Chicago              Sky              CHI
## 1788           19        Chicago              Sky              CHI
## 1789           19        Chicago              Sky              CHI
## 1790           19        Chicago              Sky              CHI
## 1791           19        Chicago              Sky              CHI
## 1792           19        Chicago              Sky              CHI
## 1793           19        Chicago              Sky              CHI
## 1794           19        Chicago              Sky              CHI
## 1795           19        Chicago              Sky              CHI
## 1796           19        Chicago              Sky              CHI
## 1797           19        Chicago              Sky              CHI
## 1798           19        Chicago              Sky              CHI
## 1799           19        Chicago              Sky              CHI
## 1800           19        Chicago              Sky              CHI
## 1801           19        Chicago              Sky              CHI
## 1802           19        Chicago              Sky              CHI
## 1803           19        Chicago              Sky              CHI
## 1804           19        Chicago              Sky              CHI
## 1805           19        Chicago              Sky              CHI
## 1806           19        Chicago              Sky              CHI
## 1807           19        Chicago              Sky              CHI
## 1808           19        Chicago              Sky              CHI
## 1809           19        Chicago              Sky              CHI
## 1810           19        Chicago              Sky              CHI
## 1811           19        Chicago              Sky              CHI
## 1812           19        Chicago              Sky              CHI
## 1813           19        Chicago              Sky              CHI
## 1814           19        Chicago              Sky              CHI
## 1815           19        Chicago              Sky              CHI
## 1816           19        Chicago              Sky              CHI
## 1817           19        Chicago              Sky              CHI
## 1818           19        Chicago              Sky              CHI
## 1819           19        Chicago              Sky              CHI
## 1820           19        Chicago              Sky              CHI
## 1821           19        Chicago              Sky              CHI
## 1822           19        Chicago              Sky              CHI
## 1823           19        Chicago              Sky              CHI
## 1824           19        Chicago              Sky              CHI
## 1825           19        Chicago              Sky              CHI
## 1826           19        Chicago              Sky              CHI
## 1827           19        Chicago              Sky              CHI
## 1828           19        Chicago              Sky              CHI
## 1829           19        Chicago              Sky              CHI
## 1830           19        Chicago              Sky              CHI
## 1831           19        Chicago              Sky              CHI
## 1832           19        Chicago              Sky              CHI
## 1833           19        Chicago              Sky              CHI
## 1834           19        Chicago              Sky              CHI
## 1835           19        Chicago              Sky              CHI
## 1836           19        Chicago              Sky              CHI
## 1837           19        Chicago              Sky              CHI
## 1838           19        Chicago              Sky              CHI
## 1839           19        Chicago              Sky              CHI
## 1840           19        Chicago              Sky              CHI
## 1841           19        Chicago              Sky              CHI
## 1842           19        Chicago              Sky              CHI
## 1843           19        Chicago              Sky              CHI
## 1844           19        Chicago              Sky              CHI
## 1845           19        Chicago              Sky              CHI
## 1846           19        Chicago              Sky              CHI
## 1847           19        Chicago              Sky              CHI
## 1848           19        Chicago              Sky              CHI
## 1849           19        Chicago              Sky              CHI
## 1850           19        Chicago              Sky              CHI
## 1851           19        Chicago              Sky              CHI
## 1852           19        Chicago              Sky              CHI
## 1853           19        Chicago              Sky              CHI
## 1854           19        Chicago              Sky              CHI
## 1855           19        Chicago              Sky              CHI
## 1856           19        Chicago              Sky              CHI
## 1857           19        Chicago              Sky              CHI
## 1858           19        Chicago              Sky              CHI
## 1859           19        Chicago              Sky              CHI
## 1860           19        Chicago              Sky              CHI
## 1861           19        Chicago              Sky              CHI
## 1862           19        Chicago              Sky              CHI
## 1863           19        Chicago              Sky              CHI
## 1864           19        Chicago              Sky              CHI
## 1865           19        Chicago              Sky              CHI
## 1866           19        Chicago              Sky              CHI
## 1867           19        Chicago              Sky              CHI
## 1868           19        Chicago              Sky              CHI
## 1869           19        Chicago              Sky              CHI
## 1870           19        Chicago              Sky              CHI
## 1871           19        Chicago              Sky              CHI
## 1872           19        Chicago              Sky              CHI
## 1873           19        Chicago              Sky              CHI
## 1874           19        Chicago              Sky              CHI
## 1875           19        Chicago              Sky              CHI
## 1876           19        Chicago              Sky              CHI
## 1877           19        Chicago              Sky              CHI
## 1878           19        Chicago              Sky              CHI
## 1879           19        Chicago              Sky              CHI
## 1880           19        Chicago              Sky              CHI
## 1881           19        Chicago              Sky              CHI
## 1882           19        Chicago              Sky              CHI
## 1883           19        Chicago              Sky              CHI
## 1884           19        Chicago              Sky              CHI
## 1885           19        Chicago              Sky              CHI
## 1886           19        Chicago              Sky              CHI
## 1887           19        Chicago              Sky              CHI
## 1888           19        Chicago              Sky              CHI
## 1889           19        Chicago              Sky              CHI
## 1890           19        Chicago              Sky              CHI
## 1891           19        Chicago              Sky              CHI
## 1892           19        Chicago              Sky              CHI
## 1893           19        Chicago              Sky              CHI
## 1894           19        Chicago              Sky              CHI
## 1895           19        Chicago              Sky              CHI
## 1896           19        Chicago              Sky              CHI
## 1897           19        Chicago              Sky              CHI
## 1898           19        Chicago              Sky              CHI
## 1899           19        Chicago              Sky              CHI
## 1900           19        Chicago              Sky              CHI
## 1901           19        Chicago              Sky              CHI
## 1902           19        Chicago              Sky              CHI
## 1903           19        Chicago              Sky              CHI
## 1904           19        Chicago              Sky              CHI
## 1905           19        Chicago              Sky              CHI
## 1906           19        Chicago              Sky              CHI
## 1907           19        Chicago              Sky              CHI
## 1908           19        Chicago              Sky              CHI
## 1909           19        Chicago              Sky              CHI
## 1910           19        Chicago              Sky              CHI
## 1911           19        Chicago              Sky              CHI
## 1912           19        Chicago              Sky              CHI
## 1913           19        Chicago              Sky              CHI
## 1914           19        Chicago              Sky              CHI
## 1915           19        Chicago              Sky              CHI
## 1916           19        Chicago              Sky              CHI
## 1917           19        Chicago              Sky              CHI
## 1918           19        Chicago              Sky              CHI
## 1919           19        Chicago              Sky              CHI
## 1920           19        Chicago              Sky              CHI
## 1921           19        Chicago              Sky              CHI
## 1922           19        Chicago              Sky              CHI
## 1923           19        Chicago              Sky              CHI
## 1924           19        Chicago              Sky              CHI
## 1925           19        Chicago              Sky              CHI
## 1926           19        Chicago              Sky              CHI
## 1927           19        Chicago              Sky              CHI
## 1928           19        Chicago              Sky              CHI
## 1929           19        Chicago              Sky              CHI
## 1930           19        Chicago              Sky              CHI
## 1931           19        Chicago              Sky              CHI
## 1932           19        Chicago              Sky              CHI
## 1933           19        Chicago              Sky              CHI
## 1934           19        Chicago              Sky              CHI
## 1935           19        Chicago              Sky              CHI
## 1936           19        Chicago              Sky              CHI
## 1937           19        Chicago              Sky              CHI
## 1938           19        Chicago              Sky              CHI
## 1939           19        Chicago              Sky              CHI
## 1940           19        Chicago              Sky              CHI
## 1941           19        Chicago              Sky              CHI
## 1942           19        Chicago              Sky              CHI
## 1943           19        Chicago              Sky              CHI
## 1944           19        Chicago              Sky              CHI
## 1945           19        Chicago              Sky              CHI
## 1946           19        Chicago              Sky              CHI
## 1947           19        Chicago              Sky              CHI
## 1948           19        Chicago              Sky              CHI
## 1949           19        Chicago              Sky              CHI
## 1950           19        Chicago              Sky              CHI
## 1951           19        Chicago              Sky              CHI
## 1952           19        Chicago              Sky              CHI
## 1953           19        Chicago              Sky              CHI
## 1954           19        Chicago              Sky              CHI
## 1955           19        Chicago              Sky              CHI
## 1956           19        Chicago              Sky              CHI
## 1957           19        Chicago              Sky              CHI
## 1958           19        Chicago              Sky              CHI
## 1959           19        Chicago              Sky              CHI
## 1960           19        Chicago              Sky              CHI
## 1961           19        Chicago              Sky              CHI
## 1962           19        Chicago              Sky              CHI
## 1963           19        Chicago              Sky              CHI
## 1964           19        Chicago              Sky              CHI
## 1965           19        Chicago              Sky              CHI
## 1966           19        Chicago              Sky              CHI
## 1967           19        Chicago              Sky              CHI
## 1968           19        Chicago              Sky              CHI
## 1969           19        Chicago              Sky              CHI
## 1970           19        Chicago              Sky              CHI
## 1971           19        Chicago              Sky              CHI
## 1972           19        Chicago              Sky              CHI
## 1973           19        Chicago              Sky              CHI
## 1974           19        Chicago              Sky              CHI
## 1975           19        Chicago              Sky              CHI
## 1976           19        Chicago              Sky              CHI
## 1977           19        Chicago              Sky              CHI
## 1978           19        Chicago              Sky              CHI
## 1979           19        Chicago              Sky              CHI
## 1980           19        Chicago              Sky              CHI
## 1981           19        Chicago              Sky              CHI
## 1982           19        Chicago              Sky              CHI
## 1983           19        Chicago              Sky              CHI
## 1984           19        Chicago              Sky              CHI
## 1985           19        Chicago              Sky              CHI
## 1986           19        Chicago              Sky              CHI
## 1987           19        Chicago              Sky              CHI
## 1988           19        Chicago              Sky              CHI
## 1989           19        Chicago              Sky              CHI
## 1990           19        Chicago              Sky              CHI
## 1991           19        Chicago              Sky              CHI
## 1992           19        Chicago              Sky              CHI
## 1993           19        Chicago              Sky              CHI
## 1994           19        Chicago              Sky              CHI
## 1995           19        Chicago              Sky              CHI
## 1996           19        Chicago              Sky              CHI
## 1997           19        Chicago              Sky              CHI
## 1998           19        Chicago              Sky              CHI
## 1999           19        Chicago              Sky              CHI
## 2000           19        Chicago              Sky              CHI
## 2001           19        Chicago              Sky              CHI
## 2002           19        Chicago              Sky              CHI
## 2003           19        Chicago              Sky              CHI
## 2004           19        Chicago              Sky              CHI
## 2005           19        Chicago              Sky              CHI
## 2006           19        Chicago              Sky              CHI
## 2007           19        Chicago              Sky              CHI
## 2008           19        Chicago              Sky              CHI
## 2009           19        Chicago              Sky              CHI
## 2010           19        Chicago              Sky              CHI
## 2011           19        Chicago              Sky              CHI
## 2012           19        Chicago              Sky              CHI
## 2013           19        Chicago              Sky              CHI
## 2014           19        Chicago              Sky              CHI
## 2015           19        Chicago              Sky              CHI
## 2016           19        Chicago              Sky              CHI
## 2017           19        Chicago              Sky              CHI
## 2018           19        Chicago              Sky              CHI
## 2019           19        Chicago              Sky              CHI
## 2020           19        Chicago              Sky              CHI
## 2021           19        Chicago              Sky              CHI
## 2022           19        Chicago              Sky              CHI
## 2023           19        Chicago              Sky              CHI
## 2024           19        Chicago              Sky              CHI
## 2025           19        Chicago              Sky              CHI
## 2026           19        Chicago              Sky              CHI
## 2027           19        Chicago              Sky              CHI
## 2028           19        Chicago              Sky              CHI
## 2029           19        Chicago              Sky              CHI
## 2030           19        Chicago              Sky              CHI
## 2031           19        Chicago              Sky              CHI
## 2032           19        Chicago              Sky              CHI
## 2033           19        Chicago              Sky              CHI
## 2034           19        Chicago              Sky              CHI
## 2035           19        Chicago              Sky              CHI
## 2036           19        Chicago              Sky              CHI
## 2037           19        Chicago              Sky              CHI
## 2038           19        Chicago              Sky              CHI
## 2039           17      Las Vegas             Aces               LV
## 2040           17      Las Vegas             Aces               LV
## 2041           17      Las Vegas             Aces               LV
## 2042           17      Las Vegas             Aces               LV
## 2043           17      Las Vegas             Aces               LV
## 2044           17      Las Vegas             Aces               LV
## 2045           17      Las Vegas             Aces               LV
## 2046           17      Las Vegas             Aces               LV
## 2047           17      Las Vegas             Aces               LV
## 2048           17      Las Vegas             Aces               LV
## 2049           17      Las Vegas             Aces               LV
## 2050           17      Las Vegas             Aces               LV
## 2051           17      Las Vegas             Aces               LV
## 2052           17      Las Vegas             Aces               LV
## 2053           17      Las Vegas             Aces               LV
## 2054           17      Las Vegas             Aces               LV
## 2055           17      Las Vegas             Aces               LV
## 2056           17      Las Vegas             Aces               LV
## 2057           17      Las Vegas             Aces               LV
## 2058           17      Las Vegas             Aces               LV
## 2059           17      Las Vegas             Aces               LV
## 2060           17      Las Vegas             Aces               LV
## 2061           17      Las Vegas             Aces               LV
## 2062           17      Las Vegas             Aces               LV
## 2063           17      Las Vegas             Aces               LV
## 2064           17      Las Vegas             Aces               LV
## 2065           17      Las Vegas             Aces               LV
## 2066           17      Las Vegas             Aces               LV
## 2067           17      Las Vegas             Aces               LV
## 2068           17      Las Vegas             Aces               LV
## 2069           17      Las Vegas             Aces               LV
## 2070           17      Las Vegas             Aces               LV
## 2071           17      Las Vegas             Aces               LV
## 2072           17      Las Vegas             Aces               LV
## 2073           17      Las Vegas             Aces               LV
## 2074           17      Las Vegas             Aces               LV
## 2075           17      Las Vegas             Aces               LV
## 2076           17      Las Vegas             Aces               LV
## 2077           17      Las Vegas             Aces               LV
## 2078           17      Las Vegas             Aces               LV
## 2079           17      Las Vegas             Aces               LV
## 2080           17      Las Vegas             Aces               LV
## 2081           17      Las Vegas             Aces               LV
## 2082           17      Las Vegas             Aces               LV
## 2083           17      Las Vegas             Aces               LV
## 2084           17      Las Vegas             Aces               LV
## 2085           17      Las Vegas             Aces               LV
## 2086           17      Las Vegas             Aces               LV
## 2087           17      Las Vegas             Aces               LV
## 2088           17      Las Vegas             Aces               LV
## 2089           17      Las Vegas             Aces               LV
## 2090           17      Las Vegas             Aces               LV
## 2091           17      Las Vegas             Aces               LV
## 2092           17      Las Vegas             Aces               LV
## 2093           17      Las Vegas             Aces               LV
## 2094           17      Las Vegas             Aces               LV
## 2095           17      Las Vegas             Aces               LV
## 2096           17      Las Vegas             Aces               LV
## 2097           17      Las Vegas             Aces               LV
## 2098           17      Las Vegas             Aces               LV
## 2099           17      Las Vegas             Aces               LV
## 2100           17      Las Vegas             Aces               LV
## 2101           17      Las Vegas             Aces               LV
## 2102           17      Las Vegas             Aces               LV
## 2103           17      Las Vegas             Aces               LV
## 2104           17      Las Vegas             Aces               LV
## 2105           17      Las Vegas             Aces               LV
## 2106           17      Las Vegas             Aces               LV
## 2107           17      Las Vegas             Aces               LV
## 2108           17      Las Vegas             Aces               LV
## 2109           17      Las Vegas             Aces               LV
## 2110           17      Las Vegas             Aces               LV
## 2111           17      Las Vegas             Aces               LV
## 2112           17      Las Vegas             Aces               LV
## 2113           17      Las Vegas             Aces               LV
## 2114           17      Las Vegas             Aces               LV
## 2115           17      Las Vegas             Aces               LV
## 2116           17      Las Vegas             Aces               LV
## 2117           17      Las Vegas             Aces               LV
## 2118           17      Las Vegas             Aces               LV
## 2119           17      Las Vegas             Aces               LV
## 2120           17      Las Vegas             Aces               LV
## 2121           17      Las Vegas             Aces               LV
## 2122           17      Las Vegas             Aces               LV
## 2123           17      Las Vegas             Aces               LV
## 2124           17      Las Vegas             Aces               LV
## 2125           17      Las Vegas             Aces               LV
## 2126           17      Las Vegas             Aces               LV
## 2127           17      Las Vegas             Aces               LV
## 2128           17      Las Vegas             Aces               LV
## 2129           17      Las Vegas             Aces               LV
## 2130           17      Las Vegas             Aces               LV
## 2131           17      Las Vegas             Aces               LV
## 2132           17      Las Vegas             Aces               LV
## 2133           17      Las Vegas             Aces               LV
## 2134           17      Las Vegas             Aces               LV
## 2135           17      Las Vegas             Aces               LV
## 2136           17      Las Vegas             Aces               LV
## 2137           17      Las Vegas             Aces               LV
## 2138           17      Las Vegas             Aces               LV
## 2139           17      Las Vegas             Aces               LV
## 2140           17      Las Vegas             Aces               LV
## 2141           17      Las Vegas             Aces               LV
## 2142           17      Las Vegas             Aces               LV
## 2143           17      Las Vegas             Aces               LV
## 2144           17      Las Vegas             Aces               LV
## 2145           17      Las Vegas             Aces               LV
## 2146           17      Las Vegas             Aces               LV
## 2147           17      Las Vegas             Aces               LV
## 2148           17      Las Vegas             Aces               LV
## 2149           17      Las Vegas             Aces               LV
## 2150           17      Las Vegas             Aces               LV
## 2151           17      Las Vegas             Aces               LV
## 2152           17      Las Vegas             Aces               LV
## 2153           17      Las Vegas             Aces               LV
## 2154           17      Las Vegas             Aces               LV
## 2155           17      Las Vegas             Aces               LV
## 2156           17      Las Vegas             Aces               LV
## 2157           17      Las Vegas             Aces               LV
## 2158           17      Las Vegas             Aces               LV
## 2159           17      Las Vegas             Aces               LV
## 2160           17      Las Vegas             Aces               LV
## 2161           17      Las Vegas             Aces               LV
## 2162           17      Las Vegas             Aces               LV
## 2163           17      Las Vegas             Aces               LV
## 2164           17      Las Vegas             Aces               LV
## 2165           17      Las Vegas             Aces               LV
## 2166           17      Las Vegas             Aces               LV
## 2167           17      Las Vegas             Aces               LV
## 2168           17      Las Vegas             Aces               LV
## 2169           17      Las Vegas             Aces               LV
## 2170           17      Las Vegas             Aces               LV
## 2171           17      Las Vegas             Aces               LV
## 2172           17      Las Vegas             Aces               LV
## 2173           17      Las Vegas             Aces               LV
## 2174           17      Las Vegas             Aces               LV
## 2175           17      Las Vegas             Aces               LV
## 2176           17      Las Vegas             Aces               LV
## 2177           17      Las Vegas             Aces               LV
## 2178           17      Las Vegas             Aces               LV
## 2179           17      Las Vegas             Aces               LV
## 2180           17      Las Vegas             Aces               LV
## 2181           17      Las Vegas             Aces               LV
## 2182           17      Las Vegas             Aces               LV
## 2183           17      Las Vegas             Aces               LV
## 2184           17      Las Vegas             Aces               LV
## 2185           17      Las Vegas             Aces               LV
## 2186           17      Las Vegas             Aces               LV
## 2187           17      Las Vegas             Aces               LV
## 2188           17      Las Vegas             Aces               LV
## 2189           17      Las Vegas             Aces               LV
## 2190           17      Las Vegas             Aces               LV
## 2191           17      Las Vegas             Aces               LV
## 2192           17      Las Vegas             Aces               LV
## 2193           17      Las Vegas             Aces               LV
## 2194           17      Las Vegas             Aces               LV
## 2195           17      Las Vegas             Aces               LV
## 2196           17      Las Vegas             Aces               LV
## 2197           17      Las Vegas             Aces               LV
## 2198           17      Las Vegas             Aces               LV
## 2199           17      Las Vegas             Aces               LV
## 2200           17      Las Vegas             Aces               LV
## 2201           17      Las Vegas             Aces               LV
## 2202           17      Las Vegas             Aces               LV
## 2203           17      Las Vegas             Aces               LV
## 2204           17      Las Vegas             Aces               LV
## 2205           17      Las Vegas             Aces               LV
## 2206           17      Las Vegas             Aces               LV
## 2207           17      Las Vegas             Aces               LV
## 2208           17      Las Vegas             Aces               LV
## 2209           17      Las Vegas             Aces               LV
## 2210           17      Las Vegas             Aces               LV
## 2211           17      Las Vegas             Aces               LV
## 2212           17      Las Vegas             Aces               LV
## 2213           17      Las Vegas             Aces               LV
## 2214           17      Las Vegas             Aces               LV
## 2215           17      Las Vegas             Aces               LV
## 2216           17      Las Vegas             Aces               LV
## 2217           17      Las Vegas             Aces               LV
## 2218           17      Las Vegas             Aces               LV
## 2219           17      Las Vegas             Aces               LV
## 2220           17      Las Vegas             Aces               LV
## 2221           17      Las Vegas             Aces               LV
## 2222           17      Las Vegas             Aces               LV
## 2223           17      Las Vegas             Aces               LV
## 2224           17      Las Vegas             Aces               LV
## 2225           17      Las Vegas             Aces               LV
## 2226           17      Las Vegas             Aces               LV
## 2227           17      Las Vegas             Aces               LV
## 2228           17      Las Vegas             Aces               LV
## 2229           17      Las Vegas             Aces               LV
## 2230           17      Las Vegas             Aces               LV
## 2231           17      Las Vegas             Aces               LV
## 2232           17      Las Vegas             Aces               LV
## 2233           17      Las Vegas             Aces               LV
## 2234           17      Las Vegas             Aces               LV
## 2235           17      Las Vegas             Aces               LV
## 2236           17      Las Vegas             Aces               LV
## 2237           17      Las Vegas             Aces               LV
## 2238           17      Las Vegas             Aces               LV
## 2239           17      Las Vegas             Aces               LV
## 2240           17      Las Vegas             Aces               LV
## 2241           17      Las Vegas             Aces               LV
## 2242           17      Las Vegas             Aces               LV
## 2243           17      Las Vegas             Aces               LV
## 2244           17      Las Vegas             Aces               LV
## 2245           17      Las Vegas             Aces               LV
## 2246           17      Las Vegas             Aces               LV
## 2247           17      Las Vegas             Aces               LV
## 2248           17      Las Vegas             Aces               LV
## 2249           17      Las Vegas             Aces               LV
## 2250           17      Las Vegas             Aces               LV
## 2251           17      Las Vegas             Aces               LV
## 2252           17      Las Vegas             Aces               LV
## 2253           17      Las Vegas             Aces               LV
## 2254           17      Las Vegas             Aces               LV
## 2255           17      Las Vegas             Aces               LV
## 2256           17      Las Vegas             Aces               LV
## 2257           17      Las Vegas             Aces               LV
## 2258           17      Las Vegas             Aces               LV
## 2259           17      Las Vegas             Aces               LV
## 2260           17      Las Vegas             Aces               LV
## 2261           17      Las Vegas             Aces               LV
## 2262           17      Las Vegas             Aces               LV
## 2263           17      Las Vegas             Aces               LV
## 2264           17      Las Vegas             Aces               LV
## 2265           17      Las Vegas             Aces               LV
## 2266           17      Las Vegas             Aces               LV
## 2267           17      Las Vegas             Aces               LV
## 2268           17      Las Vegas             Aces               LV
## 2269           17      Las Vegas             Aces               LV
## 2270           17      Las Vegas             Aces               LV
## 2271           17      Las Vegas             Aces               LV
## 2272           17      Las Vegas             Aces               LV
## 2273           17      Las Vegas             Aces               LV
## 2274           17      Las Vegas             Aces               LV
## 2275           17      Las Vegas             Aces               LV
## 2276           17      Las Vegas             Aces               LV
## 2277           17      Las Vegas             Aces               LV
## 2278           17      Las Vegas             Aces               LV
## 2279           17      Las Vegas             Aces               LV
## 2280           17      Las Vegas             Aces               LV
## 2281           17      Las Vegas             Aces               LV
## 2282           17      Las Vegas             Aces               LV
## 2283           17      Las Vegas             Aces               LV
## 2284           17      Las Vegas             Aces               LV
## 2285           17      Las Vegas             Aces               LV
## 2286           17      Las Vegas             Aces               LV
## 2287           17      Las Vegas             Aces               LV
## 2288           17      Las Vegas             Aces               LV
## 2289           17      Las Vegas             Aces               LV
## 2290           17      Las Vegas             Aces               LV
## 2291           17      Las Vegas             Aces               LV
## 2292           17      Las Vegas             Aces               LV
## 2293           17      Las Vegas             Aces               LV
## 2294           17      Las Vegas             Aces               LV
## 2295           17      Las Vegas             Aces               LV
## 2296           17      Las Vegas             Aces               LV
## 2297           17      Las Vegas             Aces               LV
## 2298           17      Las Vegas             Aces               LV
## 2299           17      Las Vegas             Aces               LV
## 2300           17      Las Vegas             Aces               LV
## 2301           17      Las Vegas             Aces               LV
## 2302           17      Las Vegas             Aces               LV
## 2303           17      Las Vegas             Aces               LV
## 2304           17      Las Vegas             Aces               LV
## 2305           17      Las Vegas             Aces               LV
## 2306           17      Las Vegas             Aces               LV
## 2307           17      Las Vegas             Aces               LV
## 2308           17      Las Vegas             Aces               LV
## 2309           17      Las Vegas             Aces               LV
## 2310           17      Las Vegas             Aces               LV
## 2311           17      Las Vegas             Aces               LV
## 2312           17      Las Vegas             Aces               LV
## 2313           17      Las Vegas             Aces               LV
## 2314           17      Las Vegas             Aces               LV
## 2315           17      Las Vegas             Aces               LV
## 2316           17      Las Vegas             Aces               LV
## 2317           17      Las Vegas             Aces               LV
## 2318           17      Las Vegas             Aces               LV
## 2319           17      Las Vegas             Aces               LV
## 2320           17      Las Vegas             Aces               LV
## 2321           17      Las Vegas             Aces               LV
## 2322           17      Las Vegas             Aces               LV
## 2323           17      Las Vegas             Aces               LV
## 2324           17      Las Vegas             Aces               LV
## 2325           17      Las Vegas             Aces               LV
## 2326           17      Las Vegas             Aces               LV
## 2327           17      Las Vegas             Aces               LV
## 2328           17      Las Vegas             Aces               LV
## 2329           17      Las Vegas             Aces               LV
## 2330           17      Las Vegas             Aces               LV
## 2331           17      Las Vegas             Aces               LV
## 2332           17      Las Vegas             Aces               LV
## 2333           17      Las Vegas             Aces               LV
## 2334           17      Las Vegas             Aces               LV
## 2335           17      Las Vegas             Aces               LV
## 2336           17      Las Vegas             Aces               LV
## 2337           17      Las Vegas             Aces               LV
## 2338           17      Las Vegas             Aces               LV
## 2339           17      Las Vegas             Aces               LV
## 2340           17      Las Vegas             Aces               LV
## 2341           17      Las Vegas             Aces               LV
## 2342           17      Las Vegas             Aces               LV
## 2343           17      Las Vegas             Aces               LV
## 2344           17      Las Vegas             Aces               LV
## 2345           17      Las Vegas             Aces               LV
## 2346           17      Las Vegas             Aces               LV
## 2347           17      Las Vegas             Aces               LV
## 2348           17      Las Vegas             Aces               LV
## 2349           17      Las Vegas             Aces               LV
## 2350           17      Las Vegas             Aces               LV
## 2351           17      Las Vegas             Aces               LV
## 2352           17      Las Vegas             Aces               LV
## 2353           17      Las Vegas             Aces               LV
## 2354           17      Las Vegas             Aces               LV
## 2355           17      Las Vegas             Aces               LV
## 2356           17      Las Vegas             Aces               LV
## 2357           17      Las Vegas             Aces               LV
## 2358           17      Las Vegas             Aces               LV
## 2359           17      Las Vegas             Aces               LV
## 2360           17      Las Vegas             Aces               LV
## 2361           17      Las Vegas             Aces               LV
## 2362           17      Las Vegas             Aces               LV
## 2363           17      Las Vegas             Aces               LV
## 2364           17      Las Vegas             Aces               LV
## 2365           17      Las Vegas             Aces               LV
## 2366           17      Las Vegas             Aces               LV
## 2367           17      Las Vegas             Aces               LV
## 2368           17      Las Vegas             Aces               LV
## 2369           17      Las Vegas             Aces               LV
## 2370           17      Las Vegas             Aces               LV
## 2371           17      Las Vegas             Aces               LV
## 2372           17      Las Vegas             Aces               LV
## 2373           17      Las Vegas             Aces               LV
## 2374           17      Las Vegas             Aces               LV
## 2375           17      Las Vegas             Aces               LV
## 2376           17      Las Vegas             Aces               LV
## 2377           17      Las Vegas             Aces               LV
## 2378           17      Las Vegas             Aces               LV
## 2379           17      Las Vegas             Aces               LV
## 2380           17      Las Vegas             Aces               LV
##      away_team_name_alt home_team_id home_team_name home_team_mascot
## 1               Indiana            9       New York          Liberty
## 2               Indiana            9       New York          Liberty
## 3               Indiana            9       New York          Liberty
## 4               Indiana            9       New York          Liberty
## 5               Indiana            9       New York          Liberty
## 6               Indiana            9       New York          Liberty
## 7               Indiana            9       New York          Liberty
## 8               Indiana            9       New York          Liberty
## 9               Indiana            9       New York          Liberty
## 10              Indiana            9       New York          Liberty
## 11              Indiana            9       New York          Liberty
## 12              Indiana            9       New York          Liberty
## 13              Indiana            9       New York          Liberty
## 14              Indiana            9       New York          Liberty
## 15              Indiana            9       New York          Liberty
## 16              Indiana            9       New York          Liberty
## 17              Indiana            9       New York          Liberty
## 18              Indiana            9       New York          Liberty
## 19              Indiana            9       New York          Liberty
## 20              Indiana            9       New York          Liberty
## 21              Indiana            9       New York          Liberty
## 22              Indiana            9       New York          Liberty
## 23              Indiana            9       New York          Liberty
## 24              Indiana            9       New York          Liberty
## 25              Indiana            9       New York          Liberty
## 26              Indiana            9       New York          Liberty
## 27              Indiana            9       New York          Liberty
## 28              Indiana            9       New York          Liberty
## 29              Indiana            9       New York          Liberty
## 30              Indiana            9       New York          Liberty
## 31              Indiana            9       New York          Liberty
## 32              Indiana            9       New York          Liberty
## 33              Indiana            9       New York          Liberty
## 34              Indiana            9       New York          Liberty
## 35              Indiana            9       New York          Liberty
## 36              Indiana            9       New York          Liberty
## 37              Indiana            9       New York          Liberty
## 38              Indiana            9       New York          Liberty
## 39              Indiana            9       New York          Liberty
## 40              Indiana            9       New York          Liberty
## 41              Indiana            9       New York          Liberty
## 42              Indiana            9       New York          Liberty
## 43              Indiana            9       New York          Liberty
## 44              Indiana            9       New York          Liberty
## 45              Indiana            9       New York          Liberty
## 46              Indiana            9       New York          Liberty
## 47              Indiana            9       New York          Liberty
## 48              Indiana            9       New York          Liberty
## 49              Indiana            9       New York          Liberty
## 50              Indiana            9       New York          Liberty
## 51              Indiana            9       New York          Liberty
## 52              Indiana            9       New York          Liberty
## 53              Indiana            9       New York          Liberty
## 54              Indiana            9       New York          Liberty
## 55              Indiana            9       New York          Liberty
## 56              Indiana            9       New York          Liberty
## 57              Indiana            9       New York          Liberty
## 58              Indiana            9       New York          Liberty
## 59              Indiana            9       New York          Liberty
## 60              Indiana            9       New York          Liberty
## 61              Indiana            9       New York          Liberty
## 62              Indiana            9       New York          Liberty
## 63              Indiana            9       New York          Liberty
## 64              Indiana            9       New York          Liberty
## 65              Indiana            9       New York          Liberty
## 66              Indiana            9       New York          Liberty
## 67              Indiana            9       New York          Liberty
## 68              Indiana            9       New York          Liberty
## 69              Indiana            9       New York          Liberty
## 70              Indiana            9       New York          Liberty
## 71              Indiana            9       New York          Liberty
## 72              Indiana            9       New York          Liberty
## 73              Indiana            9       New York          Liberty
## 74              Indiana            9       New York          Liberty
## 75              Indiana            9       New York          Liberty
## 76              Indiana            9       New York          Liberty
## 77              Indiana            9       New York          Liberty
## 78              Indiana            9       New York          Liberty
## 79              Indiana            9       New York          Liberty
## 80              Indiana            9       New York          Liberty
## 81              Indiana            9       New York          Liberty
## 82              Indiana            9       New York          Liberty
## 83              Indiana            9       New York          Liberty
## 84              Indiana            9       New York          Liberty
## 85              Indiana            9       New York          Liberty
## 86              Indiana            9       New York          Liberty
## 87              Indiana            9       New York          Liberty
## 88              Indiana            9       New York          Liberty
## 89              Indiana            9       New York          Liberty
## 90              Indiana            9       New York          Liberty
## 91              Indiana            9       New York          Liberty
## 92              Indiana            9       New York          Liberty
## 93              Indiana            9       New York          Liberty
## 94              Indiana            9       New York          Liberty
## 95              Indiana            9       New York          Liberty
## 96              Indiana            9       New York          Liberty
## 97              Indiana            9       New York          Liberty
## 98              Indiana            9       New York          Liberty
## 99              Indiana            9       New York          Liberty
## 100             Indiana            9       New York          Liberty
## 101             Indiana            9       New York          Liberty
## 102             Indiana            9       New York          Liberty
## 103             Indiana            9       New York          Liberty
## 104             Indiana            9       New York          Liberty
## 105             Indiana            9       New York          Liberty
## 106             Indiana            9       New York          Liberty
## 107             Indiana            9       New York          Liberty
## 108             Indiana            9       New York          Liberty
## 109             Indiana            9       New York          Liberty
## 110             Indiana            9       New York          Liberty
## 111             Indiana            9       New York          Liberty
## 112             Indiana            9       New York          Liberty
## 113             Indiana            9       New York          Liberty
## 114             Indiana            9       New York          Liberty
## 115             Indiana            9       New York          Liberty
## 116             Indiana            9       New York          Liberty
## 117             Indiana            9       New York          Liberty
## 118             Indiana            9       New York          Liberty
## 119             Indiana            9       New York          Liberty
## 120             Indiana            9       New York          Liberty
## 121             Indiana            9       New York          Liberty
## 122             Indiana            9       New York          Liberty
## 123             Indiana            9       New York          Liberty
## 124             Indiana            9       New York          Liberty
## 125             Indiana            9       New York          Liberty
## 126             Indiana            9       New York          Liberty
## 127             Indiana            9       New York          Liberty
## 128             Indiana            9       New York          Liberty
## 129             Indiana            9       New York          Liberty
## 130             Indiana            9       New York          Liberty
## 131             Indiana            9       New York          Liberty
## 132             Indiana            9       New York          Liberty
## 133             Indiana            9       New York          Liberty
## 134             Indiana            9       New York          Liberty
## 135             Indiana            9       New York          Liberty
## 136             Indiana            9       New York          Liberty
## 137             Indiana            9       New York          Liberty
## 138             Indiana            9       New York          Liberty
## 139             Indiana            9       New York          Liberty
## 140             Indiana            9       New York          Liberty
## 141             Indiana            9       New York          Liberty
## 142             Indiana            9       New York          Liberty
## 143             Indiana            9       New York          Liberty
## 144             Indiana            9       New York          Liberty
## 145             Indiana            9       New York          Liberty
## 146             Indiana            9       New York          Liberty
## 147             Indiana            9       New York          Liberty
## 148             Indiana            9       New York          Liberty
## 149             Indiana            9       New York          Liberty
## 150             Indiana            9       New York          Liberty
## 151             Indiana            9       New York          Liberty
## 152             Indiana            9       New York          Liberty
## 153             Indiana            9       New York          Liberty
## 154             Indiana            9       New York          Liberty
## 155             Indiana            9       New York          Liberty
## 156             Indiana            9       New York          Liberty
## 157             Indiana            9       New York          Liberty
## 158             Indiana            9       New York          Liberty
## 159             Indiana            9       New York          Liberty
## 160             Indiana            9       New York          Liberty
## 161             Indiana            9       New York          Liberty
## 162             Indiana            9       New York          Liberty
## 163             Indiana            9       New York          Liberty
## 164             Indiana            9       New York          Liberty
## 165             Indiana            9       New York          Liberty
## 166             Indiana            9       New York          Liberty
## 167             Indiana            9       New York          Liberty
## 168             Indiana            9       New York          Liberty
## 169             Indiana            9       New York          Liberty
## 170             Indiana            9       New York          Liberty
## 171             Indiana            9       New York          Liberty
## 172             Indiana            9       New York          Liberty
## 173             Indiana            9       New York          Liberty
## 174             Indiana            9       New York          Liberty
## 175             Indiana            9       New York          Liberty
## 176             Indiana            9       New York          Liberty
## 177             Indiana            9       New York          Liberty
## 178             Indiana            9       New York          Liberty
## 179             Indiana            9       New York          Liberty
## 180             Indiana            9       New York          Liberty
## 181             Indiana            9       New York          Liberty
## 182             Indiana            9       New York          Liberty
## 183             Indiana            9       New York          Liberty
## 184             Indiana            9       New York          Liberty
## 185             Indiana            9       New York          Liberty
## 186             Indiana            9       New York          Liberty
## 187             Indiana            9       New York          Liberty
## 188             Indiana            9       New York          Liberty
## 189             Indiana            9       New York          Liberty
## 190             Indiana            9       New York          Liberty
## 191             Indiana            9       New York          Liberty
## 192             Indiana            9       New York          Liberty
## 193             Indiana            9       New York          Liberty
## 194             Indiana            9       New York          Liberty
## 195             Indiana            9       New York          Liberty
## 196             Indiana            9       New York          Liberty
## 197             Indiana            9       New York          Liberty
## 198             Indiana            9       New York          Liberty
## 199             Indiana            9       New York          Liberty
## 200             Indiana            9       New York          Liberty
## 201             Indiana            9       New York          Liberty
## 202             Indiana            9       New York          Liberty
## 203             Indiana            9       New York          Liberty
## 204             Indiana            9       New York          Liberty
## 205             Indiana            9       New York          Liberty
## 206             Indiana            9       New York          Liberty
## 207             Indiana            9       New York          Liberty
## 208             Indiana            9       New York          Liberty
## 209             Indiana            9       New York          Liberty
## 210             Indiana            9       New York          Liberty
## 211             Indiana            9       New York          Liberty
## 212             Indiana            9       New York          Liberty
## 213             Indiana            9       New York          Liberty
## 214             Indiana            9       New York          Liberty
## 215             Indiana            9       New York          Liberty
## 216             Indiana            9       New York          Liberty
## 217             Indiana            9       New York          Liberty
## 218             Indiana            9       New York          Liberty
## 219             Indiana            9       New York          Liberty
## 220             Indiana            9       New York          Liberty
## 221             Indiana            9       New York          Liberty
## 222             Indiana            9       New York          Liberty
## 223             Indiana            9       New York          Liberty
## 224             Indiana            9       New York          Liberty
## 225             Indiana            9       New York          Liberty
## 226             Indiana            9       New York          Liberty
## 227             Indiana            9       New York          Liberty
## 228             Indiana            9       New York          Liberty
## 229             Indiana            9       New York          Liberty
## 230             Indiana            9       New York          Liberty
## 231             Indiana            9       New York          Liberty
## 232             Indiana            9       New York          Liberty
## 233             Indiana            9       New York          Liberty
## 234             Indiana            9       New York          Liberty
## 235             Indiana            9       New York          Liberty
## 236             Indiana            9       New York          Liberty
## 237             Indiana            9       New York          Liberty
## 238             Indiana            9       New York          Liberty
## 239             Indiana            9       New York          Liberty
## 240             Indiana            9       New York          Liberty
## 241             Indiana            9       New York          Liberty
## 242             Indiana            9       New York          Liberty
## 243             Indiana            9       New York          Liberty
## 244             Indiana            9       New York          Liberty
## 245             Indiana            9       New York          Liberty
## 246             Indiana            9       New York          Liberty
## 247             Indiana            9       New York          Liberty
## 248             Indiana            9       New York          Liberty
## 249             Indiana            9       New York          Liberty
## 250             Indiana            9       New York          Liberty
## 251             Indiana            9       New York          Liberty
## 252             Indiana            9       New York          Liberty
## 253             Indiana            9       New York          Liberty
## 254             Indiana            9       New York          Liberty
## 255             Indiana            9       New York          Liberty
## 256             Indiana            9       New York          Liberty
## 257             Indiana            9       New York          Liberty
## 258             Indiana            9       New York          Liberty
## 259             Indiana            9       New York          Liberty
## 260             Indiana            9       New York          Liberty
## 261             Indiana            9       New York          Liberty
## 262             Indiana            9       New York          Liberty
## 263             Indiana            9       New York          Liberty
## 264             Indiana            9       New York          Liberty
## 265             Indiana            9       New York          Liberty
## 266             Indiana            9       New York          Liberty
## 267             Indiana            9       New York          Liberty
## 268             Indiana            9       New York          Liberty
## 269             Indiana            9       New York          Liberty
## 270             Indiana            9       New York          Liberty
## 271             Indiana            9       New York          Liberty
## 272             Indiana            9       New York          Liberty
## 273             Indiana            9       New York          Liberty
## 274             Indiana            9       New York          Liberty
## 275             Indiana            9       New York          Liberty
## 276             Indiana            9       New York          Liberty
## 277             Indiana            9       New York          Liberty
## 278             Indiana            9       New York          Liberty
## 279             Indiana            9       New York          Liberty
## 280             Indiana            9       New York          Liberty
## 281             Indiana            9       New York          Liberty
## 282             Indiana            9       New York          Liberty
## 283             Indiana            9       New York          Liberty
## 284             Indiana            9       New York          Liberty
## 285             Indiana            9       New York          Liberty
## 286             Indiana            9       New York          Liberty
## 287             Indiana            9       New York          Liberty
## 288             Indiana            9       New York          Liberty
## 289             Indiana            9       New York          Liberty
## 290             Indiana            9       New York          Liberty
## 291             Indiana            9       New York          Liberty
## 292             Indiana            9       New York          Liberty
## 293             Indiana            9       New York          Liberty
## 294             Indiana            9       New York          Liberty
## 295             Indiana            9       New York          Liberty
## 296             Indiana            9       New York          Liberty
## 297             Indiana            9       New York          Liberty
## 298             Indiana            9       New York          Liberty
## 299             Indiana            9       New York          Liberty
## 300             Indiana            9       New York          Liberty
## 301             Indiana            9       New York          Liberty
## 302             Indiana            9       New York          Liberty
## 303             Indiana            9       New York          Liberty
## 304             Indiana            9       New York          Liberty
## 305             Indiana            9       New York          Liberty
## 306             Indiana            9       New York          Liberty
## 307             Indiana            9       New York          Liberty
## 308             Indiana            9       New York          Liberty
## 309             Indiana            9       New York          Liberty
## 310             Indiana            9       New York          Liberty
## 311             Indiana            9       New York          Liberty
## 312             Indiana            9       New York          Liberty
## 313             Indiana            9       New York          Liberty
## 314             Indiana            9       New York          Liberty
## 315             Indiana            9       New York          Liberty
## 316             Indiana            9       New York          Liberty
## 317             Indiana            9       New York          Liberty
## 318             Indiana            9       New York          Liberty
## 319             Indiana            9       New York          Liberty
## 320             Indiana            9       New York          Liberty
## 321             Indiana            9       New York          Liberty
## 322             Indiana            9       New York          Liberty
## 323             Indiana            9       New York          Liberty
## 324             Indiana            9       New York          Liberty
## 325             Indiana            9       New York          Liberty
## 326             Indiana            9       New York          Liberty
## 327             Indiana            9       New York          Liberty
## 328             Indiana            9       New York          Liberty
## 329             Indiana            9       New York          Liberty
## 330             Indiana            9       New York          Liberty
## 331             Indiana            9       New York          Liberty
## 332             Indiana            9       New York          Liberty
## 333             Indiana            9       New York          Liberty
## 334             Indiana            9       New York          Liberty
## 335             Indiana            9       New York          Liberty
## 336             Indiana            9       New York          Liberty
## 337             Indiana            9       New York          Liberty
## 338             Indiana            9       New York          Liberty
## 339             Indiana            9       New York          Liberty
## 340             Indiana            9       New York          Liberty
## 341             Indiana            9       New York          Liberty
## 342             Indiana            9       New York          Liberty
## 343             Indiana            9       New York          Liberty
## 344             Indiana            9       New York          Liberty
## 345             Indiana            9       New York          Liberty
## 346             Indiana            9       New York          Liberty
## 347             Indiana            9       New York          Liberty
## 348             Indiana            9       New York          Liberty
## 349             Indiana            9       New York          Liberty
## 350             Indiana            9       New York          Liberty
## 351             Indiana            9       New York          Liberty
## 352             Indiana            9       New York          Liberty
## 353             Indiana            9       New York          Liberty
## 354             Indiana            9       New York          Liberty
## 355             Indiana            9       New York          Liberty
## 356             Indiana            9       New York          Liberty
## 357             Indiana            9       New York          Liberty
## 358             Indiana            9       New York          Liberty
## 359             Indiana            9       New York          Liberty
## 360             Indiana            9       New York          Liberty
## 361             Indiana            9       New York          Liberty
## 362             Indiana            9       New York          Liberty
## 363             Indiana            9       New York          Liberty
## 364             Indiana            9       New York          Liberty
## 365             Indiana            9       New York          Liberty
## 366             Indiana            9       New York          Liberty
## 367             Indiana            9       New York          Liberty
## 368             Indiana            9       New York          Liberty
## 369             Indiana            9       New York          Liberty
## 370             Indiana            9       New York          Liberty
## 371             Indiana            9       New York          Liberty
## 372             Indiana            9       New York          Liberty
## 373             Indiana            9       New York          Liberty
## 374             Indiana            9       New York          Liberty
## 375             Indiana            9       New York          Liberty
## 376             Indiana            9       New York          Liberty
## 377             Indiana            9       New York          Liberty
## 378             Indiana            9       New York          Liberty
## 379             Indiana            9       New York          Liberty
## 380             Indiana            9       New York          Liberty
## 381             Indiana            9       New York          Liberty
## 382             Indiana            9       New York          Liberty
## 383             Indiana            9       New York          Liberty
## 384             Indiana            9       New York          Liberty
## 385             Indiana            9       New York          Liberty
## 386             Indiana            9       New York          Liberty
## 387             Indiana            9       New York          Liberty
## 388             Indiana            9       New York          Liberty
## 389             Indiana            9       New York          Liberty
## 390             Indiana            9       New York          Liberty
## 391             Indiana            9       New York          Liberty
## 392             Indiana            9       New York          Liberty
## 393             Indiana            9       New York          Liberty
## 394             Indiana            9       New York          Liberty
## 395             Indiana            9       New York          Liberty
## 396             Indiana            9       New York          Liberty
## 397             Indiana            9       New York          Liberty
## 398             Indiana            9       New York          Liberty
## 399             Indiana            9       New York          Liberty
## 400             Indiana            9       New York          Liberty
## 401             Indiana            9       New York          Liberty
## 402             Indiana            9       New York          Liberty
## 403             Indiana            9       New York          Liberty
## 404             Indiana            9       New York          Liberty
## 405             Indiana            9       New York          Liberty
## 406             Indiana            9       New York          Liberty
## 407             Indiana            9       New York          Liberty
## 408             Indiana            9       New York          Liberty
## 409             Indiana            9       New York          Liberty
## 410             Indiana            9       New York          Liberty
## 411             Indiana            9       New York          Liberty
## 412             Indiana            9       New York          Liberty
## 413         Connecticut           20        Atlanta            Dream
## 414         Connecticut           20        Atlanta            Dream
## 415         Connecticut           20        Atlanta            Dream
## 416         Connecticut           20        Atlanta            Dream
## 417         Connecticut           20        Atlanta            Dream
## 418         Connecticut           20        Atlanta            Dream
## 419         Connecticut           20        Atlanta            Dream
## 420         Connecticut           20        Atlanta            Dream
## 421         Connecticut           20        Atlanta            Dream
## 422         Connecticut           20        Atlanta            Dream
## 423         Connecticut           20        Atlanta            Dream
## 424         Connecticut           20        Atlanta            Dream
## 425         Connecticut           20        Atlanta            Dream
## 426         Connecticut           20        Atlanta            Dream
## 427         Connecticut           20        Atlanta            Dream
## 428         Connecticut           20        Atlanta            Dream
## 429         Connecticut           20        Atlanta            Dream
## 430         Connecticut           20        Atlanta            Dream
## 431         Connecticut           20        Atlanta            Dream
## 432         Connecticut           20        Atlanta            Dream
## 433         Connecticut           20        Atlanta            Dream
## 434         Connecticut           20        Atlanta            Dream
## 435         Connecticut           20        Atlanta            Dream
## 436         Connecticut           20        Atlanta            Dream
## 437         Connecticut           20        Atlanta            Dream
## 438         Connecticut           20        Atlanta            Dream
## 439         Connecticut           20        Atlanta            Dream
## 440         Connecticut           20        Atlanta            Dream
## 441         Connecticut           20        Atlanta            Dream
## 442         Connecticut           20        Atlanta            Dream
## 443         Connecticut           20        Atlanta            Dream
## 444         Connecticut           20        Atlanta            Dream
## 445         Connecticut           20        Atlanta            Dream
## 446         Connecticut           20        Atlanta            Dream
## 447         Connecticut           20        Atlanta            Dream
## 448         Connecticut           20        Atlanta            Dream
## 449         Connecticut           20        Atlanta            Dream
## 450         Connecticut           20        Atlanta            Dream
## 451         Connecticut           20        Atlanta            Dream
## 452         Connecticut           20        Atlanta            Dream
## 453         Connecticut           20        Atlanta            Dream
## 454         Connecticut           20        Atlanta            Dream
## 455         Connecticut           20        Atlanta            Dream
## 456         Connecticut           20        Atlanta            Dream
## 457         Connecticut           20        Atlanta            Dream
## 458         Connecticut           20        Atlanta            Dream
## 459         Connecticut           20        Atlanta            Dream
## 460         Connecticut           20        Atlanta            Dream
## 461         Connecticut           20        Atlanta            Dream
## 462         Connecticut           20        Atlanta            Dream
## 463         Connecticut           20        Atlanta            Dream
## 464         Connecticut           20        Atlanta            Dream
## 465         Connecticut           20        Atlanta            Dream
## 466         Connecticut           20        Atlanta            Dream
## 467         Connecticut           20        Atlanta            Dream
## 468         Connecticut           20        Atlanta            Dream
## 469         Connecticut           20        Atlanta            Dream
## 470         Connecticut           20        Atlanta            Dream
## 471         Connecticut           20        Atlanta            Dream
## 472         Connecticut           20        Atlanta            Dream
## 473         Connecticut           20        Atlanta            Dream
## 474         Connecticut           20        Atlanta            Dream
## 475         Connecticut           20        Atlanta            Dream
## 476         Connecticut           20        Atlanta            Dream
## 477         Connecticut           20        Atlanta            Dream
## 478         Connecticut           20        Atlanta            Dream
## 479         Connecticut           20        Atlanta            Dream
## 480         Connecticut           20        Atlanta            Dream
## 481         Connecticut           20        Atlanta            Dream
## 482         Connecticut           20        Atlanta            Dream
## 483         Connecticut           20        Atlanta            Dream
## 484         Connecticut           20        Atlanta            Dream
## 485         Connecticut           20        Atlanta            Dream
## 486         Connecticut           20        Atlanta            Dream
## 487         Connecticut           20        Atlanta            Dream
## 488         Connecticut           20        Atlanta            Dream
## 489         Connecticut           20        Atlanta            Dream
## 490         Connecticut           20        Atlanta            Dream
## 491         Connecticut           20        Atlanta            Dream
## 492         Connecticut           20        Atlanta            Dream
## 493         Connecticut           20        Atlanta            Dream
## 494         Connecticut           20        Atlanta            Dream
## 495         Connecticut           20        Atlanta            Dream
## 496         Connecticut           20        Atlanta            Dream
## 497         Connecticut           20        Atlanta            Dream
## 498         Connecticut           20        Atlanta            Dream
## 499         Connecticut           20        Atlanta            Dream
## 500         Connecticut           20        Atlanta            Dream
## 501         Connecticut           20        Atlanta            Dream
## 502         Connecticut           20        Atlanta            Dream
## 503         Connecticut           20        Atlanta            Dream
## 504         Connecticut           20        Atlanta            Dream
## 505         Connecticut           20        Atlanta            Dream
## 506         Connecticut           20        Atlanta            Dream
## 507         Connecticut           20        Atlanta            Dream
## 508         Connecticut           20        Atlanta            Dream
## 509         Connecticut           20        Atlanta            Dream
## 510         Connecticut           20        Atlanta            Dream
## 511         Connecticut           20        Atlanta            Dream
## 512         Connecticut           20        Atlanta            Dream
## 513         Connecticut           20        Atlanta            Dream
## 514         Connecticut           20        Atlanta            Dream
## 515         Connecticut           20        Atlanta            Dream
## 516         Connecticut           20        Atlanta            Dream
## 517         Connecticut           20        Atlanta            Dream
## 518         Connecticut           20        Atlanta            Dream
## 519         Connecticut           20        Atlanta            Dream
## 520         Connecticut           20        Atlanta            Dream
## 521         Connecticut           20        Atlanta            Dream
## 522         Connecticut           20        Atlanta            Dream
## 523         Connecticut           20        Atlanta            Dream
## 524         Connecticut           20        Atlanta            Dream
## 525         Connecticut           20        Atlanta            Dream
## 526         Connecticut           20        Atlanta            Dream
## 527         Connecticut           20        Atlanta            Dream
## 528         Connecticut           20        Atlanta            Dream
## 529         Connecticut           20        Atlanta            Dream
## 530         Connecticut           20        Atlanta            Dream
## 531         Connecticut           20        Atlanta            Dream
## 532         Connecticut           20        Atlanta            Dream
## 533         Connecticut           20        Atlanta            Dream
## 534         Connecticut           20        Atlanta            Dream
## 535         Connecticut           20        Atlanta            Dream
## 536         Connecticut           20        Atlanta            Dream
## 537         Connecticut           20        Atlanta            Dream
## 538         Connecticut           20        Atlanta            Dream
## 539         Connecticut           20        Atlanta            Dream
## 540         Connecticut           20        Atlanta            Dream
## 541         Connecticut           20        Atlanta            Dream
## 542         Connecticut           20        Atlanta            Dream
## 543         Connecticut           20        Atlanta            Dream
## 544         Connecticut           20        Atlanta            Dream
## 545         Connecticut           20        Atlanta            Dream
## 546         Connecticut           20        Atlanta            Dream
## 547         Connecticut           20        Atlanta            Dream
## 548         Connecticut           20        Atlanta            Dream
## 549         Connecticut           20        Atlanta            Dream
## 550         Connecticut           20        Atlanta            Dream
## 551         Connecticut           20        Atlanta            Dream
## 552         Connecticut           20        Atlanta            Dream
## 553         Connecticut           20        Atlanta            Dream
## 554         Connecticut           20        Atlanta            Dream
## 555         Connecticut           20        Atlanta            Dream
## 556         Connecticut           20        Atlanta            Dream
## 557         Connecticut           20        Atlanta            Dream
## 558         Connecticut           20        Atlanta            Dream
## 559         Connecticut           20        Atlanta            Dream
## 560         Connecticut           20        Atlanta            Dream
## 561         Connecticut           20        Atlanta            Dream
## 562         Connecticut           20        Atlanta            Dream
## 563         Connecticut           20        Atlanta            Dream
## 564         Connecticut           20        Atlanta            Dream
## 565         Connecticut           20        Atlanta            Dream
## 566         Connecticut           20        Atlanta            Dream
## 567         Connecticut           20        Atlanta            Dream
## 568         Connecticut           20        Atlanta            Dream
## 569         Connecticut           20        Atlanta            Dream
## 570         Connecticut           20        Atlanta            Dream
## 571         Connecticut           20        Atlanta            Dream
## 572         Connecticut           20        Atlanta            Dream
## 573         Connecticut           20        Atlanta            Dream
## 574         Connecticut           20        Atlanta            Dream
## 575         Connecticut           20        Atlanta            Dream
## 576         Connecticut           20        Atlanta            Dream
## 577         Connecticut           20        Atlanta            Dream
## 578         Connecticut           20        Atlanta            Dream
## 579         Connecticut           20        Atlanta            Dream
## 580         Connecticut           20        Atlanta            Dream
## 581         Connecticut           20        Atlanta            Dream
## 582         Connecticut           20        Atlanta            Dream
## 583         Connecticut           20        Atlanta            Dream
## 584         Connecticut           20        Atlanta            Dream
## 585         Connecticut           20        Atlanta            Dream
## 586         Connecticut           20        Atlanta            Dream
## 587         Connecticut           20        Atlanta            Dream
## 588         Connecticut           20        Atlanta            Dream
## 589         Connecticut           20        Atlanta            Dream
## 590         Connecticut           20        Atlanta            Dream
## 591         Connecticut           20        Atlanta            Dream
## 592         Connecticut           20        Atlanta            Dream
## 593         Connecticut           20        Atlanta            Dream
## 594         Connecticut           20        Atlanta            Dream
## 595         Connecticut           20        Atlanta            Dream
## 596         Connecticut           20        Atlanta            Dream
## 597         Connecticut           20        Atlanta            Dream
## 598         Connecticut           20        Atlanta            Dream
## 599         Connecticut           20        Atlanta            Dream
## 600         Connecticut           20        Atlanta            Dream
## 601         Connecticut           20        Atlanta            Dream
## 602         Connecticut           20        Atlanta            Dream
## 603         Connecticut           20        Atlanta            Dream
## 604         Connecticut           20        Atlanta            Dream
## 605         Connecticut           20        Atlanta            Dream
## 606         Connecticut           20        Atlanta            Dream
## 607         Connecticut           20        Atlanta            Dream
## 608         Connecticut           20        Atlanta            Dream
## 609         Connecticut           20        Atlanta            Dream
## 610         Connecticut           20        Atlanta            Dream
## 611         Connecticut           20        Atlanta            Dream
## 612         Connecticut           20        Atlanta            Dream
## 613         Connecticut           20        Atlanta            Dream
## 614         Connecticut           20        Atlanta            Dream
## 615         Connecticut           20        Atlanta            Dream
## 616         Connecticut           20        Atlanta            Dream
## 617         Connecticut           20        Atlanta            Dream
## 618         Connecticut           20        Atlanta            Dream
## 619         Connecticut           20        Atlanta            Dream
## 620         Connecticut           20        Atlanta            Dream
## 621         Connecticut           20        Atlanta            Dream
## 622         Connecticut           20        Atlanta            Dream
## 623         Connecticut           20        Atlanta            Dream
## 624         Connecticut           20        Atlanta            Dream
## 625         Connecticut           20        Atlanta            Dream
## 626         Connecticut           20        Atlanta            Dream
## 627         Connecticut           20        Atlanta            Dream
## 628         Connecticut           20        Atlanta            Dream
## 629         Connecticut           20        Atlanta            Dream
## 630         Connecticut           20        Atlanta            Dream
## 631         Connecticut           20        Atlanta            Dream
## 632         Connecticut           20        Atlanta            Dream
## 633         Connecticut           20        Atlanta            Dream
## 634         Connecticut           20        Atlanta            Dream
## 635         Connecticut           20        Atlanta            Dream
## 636         Connecticut           20        Atlanta            Dream
## 637         Connecticut           20        Atlanta            Dream
## 638         Connecticut           20        Atlanta            Dream
## 639         Connecticut           20        Atlanta            Dream
## 640         Connecticut           20        Atlanta            Dream
## 641         Connecticut           20        Atlanta            Dream
## 642         Connecticut           20        Atlanta            Dream
## 643         Connecticut           20        Atlanta            Dream
## 644         Connecticut           20        Atlanta            Dream
## 645         Connecticut           20        Atlanta            Dream
## 646         Connecticut           20        Atlanta            Dream
## 647         Connecticut           20        Atlanta            Dream
## 648         Connecticut           20        Atlanta            Dream
## 649         Connecticut           20        Atlanta            Dream
## 650         Connecticut           20        Atlanta            Dream
## 651         Connecticut           20        Atlanta            Dream
## 652         Connecticut           20        Atlanta            Dream
## 653         Connecticut           20        Atlanta            Dream
## 654         Connecticut           20        Atlanta            Dream
## 655         Connecticut           20        Atlanta            Dream
## 656         Connecticut           20        Atlanta            Dream
## 657         Connecticut           20        Atlanta            Dream
## 658         Connecticut           20        Atlanta            Dream
## 659         Connecticut           20        Atlanta            Dream
## 660         Connecticut           20        Atlanta            Dream
## 661         Connecticut           20        Atlanta            Dream
## 662         Connecticut           20        Atlanta            Dream
## 663         Connecticut           20        Atlanta            Dream
## 664         Connecticut           20        Atlanta            Dream
## 665         Connecticut           20        Atlanta            Dream
## 666         Connecticut           20        Atlanta            Dream
## 667         Connecticut           20        Atlanta            Dream
## 668         Connecticut           20        Atlanta            Dream
## 669         Connecticut           20        Atlanta            Dream
## 670         Connecticut           20        Atlanta            Dream
## 671         Connecticut           20        Atlanta            Dream
## 672         Connecticut           20        Atlanta            Dream
## 673         Connecticut           20        Atlanta            Dream
## 674         Connecticut           20        Atlanta            Dream
## 675         Connecticut           20        Atlanta            Dream
## 676         Connecticut           20        Atlanta            Dream
## 677         Connecticut           20        Atlanta            Dream
## 678         Connecticut           20        Atlanta            Dream
## 679         Connecticut           20        Atlanta            Dream
## 680         Connecticut           20        Atlanta            Dream
## 681         Connecticut           20        Atlanta            Dream
## 682         Connecticut           20        Atlanta            Dream
## 683         Connecticut           20        Atlanta            Dream
## 684         Connecticut           20        Atlanta            Dream
## 685         Connecticut           20        Atlanta            Dream
## 686         Connecticut           20        Atlanta            Dream
## 687         Connecticut           20        Atlanta            Dream
## 688         Connecticut           20        Atlanta            Dream
## 689         Connecticut           20        Atlanta            Dream
## 690         Connecticut           20        Atlanta            Dream
## 691         Connecticut           20        Atlanta            Dream
## 692         Connecticut           20        Atlanta            Dream
## 693         Connecticut           20        Atlanta            Dream
## 694         Connecticut           20        Atlanta            Dream
## 695         Connecticut           20        Atlanta            Dream
## 696         Connecticut           20        Atlanta            Dream
## 697         Connecticut           20        Atlanta            Dream
## 698         Connecticut           20        Atlanta            Dream
## 699         Connecticut           20        Atlanta            Dream
## 700         Connecticut           20        Atlanta            Dream
## 701         Connecticut           20        Atlanta            Dream
## 702         Connecticut           20        Atlanta            Dream
## 703         Connecticut           20        Atlanta            Dream
## 704         Connecticut           20        Atlanta            Dream
## 705         Connecticut           20        Atlanta            Dream
## 706         Connecticut           20        Atlanta            Dream
## 707         Connecticut           20        Atlanta            Dream
## 708         Connecticut           20        Atlanta            Dream
## 709         Connecticut           20        Atlanta            Dream
## 710         Connecticut           20        Atlanta            Dream
## 711         Connecticut           20        Atlanta            Dream
## 712         Connecticut           20        Atlanta            Dream
## 713         Connecticut           20        Atlanta            Dream
## 714         Connecticut           20        Atlanta            Dream
## 715         Connecticut           20        Atlanta            Dream
## 716         Connecticut           20        Atlanta            Dream
## 717         Connecticut           20        Atlanta            Dream
## 718         Connecticut           20        Atlanta            Dream
## 719         Connecticut           20        Atlanta            Dream
## 720         Connecticut           20        Atlanta            Dream
## 721         Connecticut           20        Atlanta            Dream
## 722         Connecticut           20        Atlanta            Dream
## 723         Connecticut           20        Atlanta            Dream
## 724         Connecticut           20        Atlanta            Dream
## 725         Connecticut           20        Atlanta            Dream
## 726         Connecticut           20        Atlanta            Dream
## 727         Connecticut           20        Atlanta            Dream
## 728         Connecticut           20        Atlanta            Dream
## 729         Connecticut           20        Atlanta            Dream
## 730         Connecticut           20        Atlanta            Dream
## 731         Connecticut           20        Atlanta            Dream
## 732         Connecticut           20        Atlanta            Dream
## 733         Connecticut           20        Atlanta            Dream
## 734         Connecticut           20        Atlanta            Dream
## 735         Connecticut           20        Atlanta            Dream
## 736         Connecticut           20        Atlanta            Dream
## 737         Connecticut           20        Atlanta            Dream
## 738         Connecticut           20        Atlanta            Dream
## 739         Connecticut           20        Atlanta            Dream
## 740         Connecticut           20        Atlanta            Dream
## 741         Connecticut           20        Atlanta            Dream
## 742         Connecticut           20        Atlanta            Dream
## 743         Connecticut           20        Atlanta            Dream
## 744         Connecticut           20        Atlanta            Dream
## 745         Connecticut           20        Atlanta            Dream
## 746         Connecticut           20        Atlanta            Dream
## 747         Connecticut           20        Atlanta            Dream
## 748         Connecticut           20        Atlanta            Dream
## 749         Connecticut           20        Atlanta            Dream
## 750         Connecticut           20        Atlanta            Dream
## 751         Connecticut           20        Atlanta            Dream
## 752         Connecticut           20        Atlanta            Dream
## 753         Connecticut           20        Atlanta            Dream
## 754         Connecticut           20        Atlanta            Dream
## 755         Connecticut           20        Atlanta            Dream
## 756         Connecticut           20        Atlanta            Dream
## 757         Connecticut           20        Atlanta            Dream
## 758         Connecticut           20        Atlanta            Dream
## 759         Connecticut           20        Atlanta            Dream
## 760         Connecticut           20        Atlanta            Dream
## 761         Connecticut           20        Atlanta            Dream
## 762         Connecticut           20        Atlanta            Dream
## 763         Connecticut           20        Atlanta            Dream
## 764         Connecticut           20        Atlanta            Dream
## 765         Connecticut           20        Atlanta            Dream
## 766         Connecticut           20        Atlanta            Dream
## 767         Connecticut           20        Atlanta            Dream
## 768         Connecticut           20        Atlanta            Dream
## 769         Connecticut           20        Atlanta            Dream
## 770         Connecticut           20        Atlanta            Dream
## 771         Connecticut           20        Atlanta            Dream
## 772         Connecticut           20        Atlanta            Dream
## 773         Connecticut           20        Atlanta            Dream
## 774         Connecticut           20        Atlanta            Dream
## 775         Connecticut           20        Atlanta            Dream
## 776         Connecticut           20        Atlanta            Dream
## 777         Connecticut           20        Atlanta            Dream
## 778         Connecticut           20        Atlanta            Dream
## 779         Connecticut           20        Atlanta            Dream
## 780         Connecticut           20        Atlanta            Dream
## 781         Connecticut           20        Atlanta            Dream
## 782         Connecticut           20        Atlanta            Dream
## 783         Connecticut           20        Atlanta            Dream
## 784         Connecticut           20        Atlanta            Dream
## 785         Connecticut           20        Atlanta            Dream
## 786         Connecticut           20        Atlanta            Dream
## 787         Connecticut           20        Atlanta            Dream
## 788         Connecticut           20        Atlanta            Dream
## 789         Connecticut           20        Atlanta            Dream
## 790         Connecticut           20        Atlanta            Dream
## 791         Connecticut           20        Atlanta            Dream
## 792         Connecticut           20        Atlanta            Dream
## 793         Connecticut           20        Atlanta            Dream
## 794         Connecticut           20        Atlanta            Dream
## 795         Connecticut           20        Atlanta            Dream
## 796         Connecticut           20        Atlanta            Dream
## 797         Connecticut           20        Atlanta            Dream
## 798         Connecticut           20        Atlanta            Dream
## 799         Connecticut           20        Atlanta            Dream
## 800             Phoenix            8      Minnesota             Lynx
## 801             Phoenix            8      Minnesota             Lynx
## 802             Phoenix            8      Minnesota             Lynx
## 803             Phoenix            8      Minnesota             Lynx
## 804             Phoenix            8      Minnesota             Lynx
## 805             Phoenix            8      Minnesota             Lynx
## 806             Phoenix            8      Minnesota             Lynx
## 807             Phoenix            8      Minnesota             Lynx
## 808             Phoenix            8      Minnesota             Lynx
## 809             Phoenix            8      Minnesota             Lynx
## 810             Phoenix            8      Minnesota             Lynx
## 811             Phoenix            8      Minnesota             Lynx
## 812             Phoenix            8      Minnesota             Lynx
## 813             Phoenix            8      Minnesota             Lynx
## 814             Phoenix            8      Minnesota             Lynx
## 815             Phoenix            8      Minnesota             Lynx
## 816             Phoenix            8      Minnesota             Lynx
## 817             Phoenix            8      Minnesota             Lynx
## 818             Phoenix            8      Minnesota             Lynx
## 819             Phoenix            8      Minnesota             Lynx
## 820             Phoenix            8      Minnesota             Lynx
## 821             Phoenix            8      Minnesota             Lynx
## 822             Phoenix            8      Minnesota             Lynx
## 823             Phoenix            8      Minnesota             Lynx
## 824             Phoenix            8      Minnesota             Lynx
## 825             Phoenix            8      Minnesota             Lynx
## 826             Phoenix            8      Minnesota             Lynx
## 827             Phoenix            8      Minnesota             Lynx
## 828             Phoenix            8      Minnesota             Lynx
## 829             Phoenix            8      Minnesota             Lynx
## 830             Phoenix            8      Minnesota             Lynx
## 831             Phoenix            8      Minnesota             Lynx
## 832             Phoenix            8      Minnesota             Lynx
## 833             Phoenix            8      Minnesota             Lynx
## 834             Phoenix            8      Minnesota             Lynx
## 835             Phoenix            8      Minnesota             Lynx
## 836             Phoenix            8      Minnesota             Lynx
## 837             Phoenix            8      Minnesota             Lynx
## 838             Phoenix            8      Minnesota             Lynx
## 839             Phoenix            8      Minnesota             Lynx
## 840             Phoenix            8      Minnesota             Lynx
## 841             Phoenix            8      Minnesota             Lynx
## 842             Phoenix            8      Minnesota             Lynx
## 843             Phoenix            8      Minnesota             Lynx
## 844             Phoenix            8      Minnesota             Lynx
## 845             Phoenix            8      Minnesota             Lynx
## 846             Phoenix            8      Minnesota             Lynx
## 847             Phoenix            8      Minnesota             Lynx
## 848             Phoenix            8      Minnesota             Lynx
## 849             Phoenix            8      Minnesota             Lynx
## 850             Phoenix            8      Minnesota             Lynx
## 851             Phoenix            8      Minnesota             Lynx
## 852             Phoenix            8      Minnesota             Lynx
## 853             Phoenix            8      Minnesota             Lynx
## 854             Phoenix            8      Minnesota             Lynx
## 855             Phoenix            8      Minnesota             Lynx
## 856             Phoenix            8      Minnesota             Lynx
## 857             Phoenix            8      Minnesota             Lynx
## 858             Phoenix            8      Minnesota             Lynx
## 859             Phoenix            8      Minnesota             Lynx
## 860             Phoenix            8      Minnesota             Lynx
## 861             Phoenix            8      Minnesota             Lynx
## 862             Phoenix            8      Minnesota             Lynx
## 863             Phoenix            8      Minnesota             Lynx
## 864             Phoenix            8      Minnesota             Lynx
## 865             Phoenix            8      Minnesota             Lynx
## 866             Phoenix            8      Minnesota             Lynx
## 867             Phoenix            8      Minnesota             Lynx
## 868             Phoenix            8      Minnesota             Lynx
## 869             Phoenix            8      Minnesota             Lynx
## 870             Phoenix            8      Minnesota             Lynx
## 871             Phoenix            8      Minnesota             Lynx
## 872             Phoenix            8      Minnesota             Lynx
## 873             Phoenix            8      Minnesota             Lynx
## 874             Phoenix            8      Minnesota             Lynx
## 875             Phoenix            8      Minnesota             Lynx
## 876             Phoenix            8      Minnesota             Lynx
## 877             Phoenix            8      Minnesota             Lynx
## 878             Phoenix            8      Minnesota             Lynx
## 879             Phoenix            8      Minnesota             Lynx
## 880             Phoenix            8      Minnesota             Lynx
## 881             Phoenix            8      Minnesota             Lynx
## 882             Phoenix            8      Minnesota             Lynx
## 883             Phoenix            8      Minnesota             Lynx
## 884             Phoenix            8      Minnesota             Lynx
## 885             Phoenix            8      Minnesota             Lynx
## 886             Phoenix            8      Minnesota             Lynx
## 887             Phoenix            8      Minnesota             Lynx
## 888             Phoenix            8      Minnesota             Lynx
## 889             Phoenix            8      Minnesota             Lynx
## 890             Phoenix            8      Minnesota             Lynx
## 891             Phoenix            8      Minnesota             Lynx
## 892             Phoenix            8      Minnesota             Lynx
## 893             Phoenix            8      Minnesota             Lynx
## 894             Phoenix            8      Minnesota             Lynx
## 895             Phoenix            8      Minnesota             Lynx
## 896             Phoenix            8      Minnesota             Lynx
## 897             Phoenix            8      Minnesota             Lynx
## 898             Phoenix            8      Minnesota             Lynx
## 899             Phoenix            8      Minnesota             Lynx
## 900             Phoenix            8      Minnesota             Lynx
## 901             Phoenix            8      Minnesota             Lynx
## 902             Phoenix            8      Minnesota             Lynx
## 903             Phoenix            8      Minnesota             Lynx
## 904             Phoenix            8      Minnesota             Lynx
## 905             Phoenix            8      Minnesota             Lynx
## 906             Phoenix            8      Minnesota             Lynx
## 907             Phoenix            8      Minnesota             Lynx
## 908             Phoenix            8      Minnesota             Lynx
## 909             Phoenix            8      Minnesota             Lynx
## 910             Phoenix            8      Minnesota             Lynx
## 911             Phoenix            8      Minnesota             Lynx
## 912             Phoenix            8      Minnesota             Lynx
## 913             Phoenix            8      Minnesota             Lynx
## 914             Phoenix            8      Minnesota             Lynx
## 915             Phoenix            8      Minnesota             Lynx
## 916             Phoenix            8      Minnesota             Lynx
## 917             Phoenix            8      Minnesota             Lynx
## 918             Phoenix            8      Minnesota             Lynx
## 919             Phoenix            8      Minnesota             Lynx
## 920             Phoenix            8      Minnesota             Lynx
## 921             Phoenix            8      Minnesota             Lynx
## 922             Phoenix            8      Minnesota             Lynx
## 923             Phoenix            8      Minnesota             Lynx
## 924             Phoenix            8      Minnesota             Lynx
## 925             Phoenix            8      Minnesota             Lynx
## 926             Phoenix            8      Minnesota             Lynx
## 927             Phoenix            8      Minnesota             Lynx
## 928             Phoenix            8      Minnesota             Lynx
## 929             Phoenix            8      Minnesota             Lynx
## 930             Phoenix            8      Minnesota             Lynx
## 931             Phoenix            8      Minnesota             Lynx
## 932             Phoenix            8      Minnesota             Lynx
## 933             Phoenix            8      Minnesota             Lynx
## 934             Phoenix            8      Minnesota             Lynx
## 935             Phoenix            8      Minnesota             Lynx
## 936             Phoenix            8      Minnesota             Lynx
## 937             Phoenix            8      Minnesota             Lynx
## 938             Phoenix            8      Minnesota             Lynx
## 939             Phoenix            8      Minnesota             Lynx
## 940             Phoenix            8      Minnesota             Lynx
## 941             Phoenix            8      Minnesota             Lynx
## 942             Phoenix            8      Minnesota             Lynx
## 943             Phoenix            8      Minnesota             Lynx
## 944             Phoenix            8      Minnesota             Lynx
## 945             Phoenix            8      Minnesota             Lynx
## 946             Phoenix            8      Minnesota             Lynx
## 947             Phoenix            8      Minnesota             Lynx
## 948             Phoenix            8      Minnesota             Lynx
## 949             Phoenix            8      Minnesota             Lynx
## 950             Phoenix            8      Minnesota             Lynx
## 951             Phoenix            8      Minnesota             Lynx
## 952             Phoenix            8      Minnesota             Lynx
## 953             Phoenix            8      Minnesota             Lynx
## 954             Phoenix            8      Minnesota             Lynx
## 955             Phoenix            8      Minnesota             Lynx
## 956             Phoenix            8      Minnesota             Lynx
## 957             Phoenix            8      Minnesota             Lynx
## 958             Phoenix            8      Minnesota             Lynx
## 959             Phoenix            8      Minnesota             Lynx
## 960             Phoenix            8      Minnesota             Lynx
## 961             Phoenix            8      Minnesota             Lynx
## 962             Phoenix            8      Minnesota             Lynx
## 963             Phoenix            8      Minnesota             Lynx
## 964             Phoenix            8      Minnesota             Lynx
## 965             Phoenix            8      Minnesota             Lynx
## 966             Phoenix            8      Minnesota             Lynx
## 967             Phoenix            8      Minnesota             Lynx
## 968             Phoenix            8      Minnesota             Lynx
## 969             Phoenix            8      Minnesota             Lynx
## 970             Phoenix            8      Minnesota             Lynx
## 971             Phoenix            8      Minnesota             Lynx
## 972             Phoenix            8      Minnesota             Lynx
## 973             Phoenix            8      Minnesota             Lynx
## 974             Phoenix            8      Minnesota             Lynx
## 975             Phoenix            8      Minnesota             Lynx
## 976             Phoenix            8      Minnesota             Lynx
## 977             Phoenix            8      Minnesota             Lynx
## 978             Phoenix            8      Minnesota             Lynx
## 979             Phoenix            8      Minnesota             Lynx
## 980             Phoenix            8      Minnesota             Lynx
## 981             Phoenix            8      Minnesota             Lynx
## 982             Phoenix            8      Minnesota             Lynx
## 983             Phoenix            8      Minnesota             Lynx
## 984             Phoenix            8      Minnesota             Lynx
## 985             Phoenix            8      Minnesota             Lynx
## 986             Phoenix            8      Minnesota             Lynx
## 987             Phoenix            8      Minnesota             Lynx
## 988             Phoenix            8      Minnesota             Lynx
## 989             Phoenix            8      Minnesota             Lynx
## 990             Phoenix            8      Minnesota             Lynx
## 991             Phoenix            8      Minnesota             Lynx
## 992             Phoenix            8      Minnesota             Lynx
## 993             Phoenix            8      Minnesota             Lynx
## 994             Phoenix            8      Minnesota             Lynx
## 995             Phoenix            8      Minnesota             Lynx
## 996             Phoenix            8      Minnesota             Lynx
## 997             Phoenix            8      Minnesota             Lynx
## 998             Phoenix            8      Minnesota             Lynx
## 999             Phoenix            8      Minnesota             Lynx
## 1000            Phoenix            8      Minnesota             Lynx
## 1001            Phoenix            8      Minnesota             Lynx
## 1002            Phoenix            8      Minnesota             Lynx
## 1003            Phoenix            8      Minnesota             Lynx
## 1004            Phoenix            8      Minnesota             Lynx
## 1005            Phoenix            8      Minnesota             Lynx
## 1006            Phoenix            8      Minnesota             Lynx
## 1007            Phoenix            8      Minnesota             Lynx
## 1008            Phoenix            8      Minnesota             Lynx
## 1009            Phoenix            8      Minnesota             Lynx
## 1010            Phoenix            8      Minnesota             Lynx
## 1011            Phoenix            8      Minnesota             Lynx
## 1012            Phoenix            8      Minnesota             Lynx
## 1013            Phoenix            8      Minnesota             Lynx
## 1014            Phoenix            8      Minnesota             Lynx
## 1015            Phoenix            8      Minnesota             Lynx
## 1016            Phoenix            8      Minnesota             Lynx
## 1017            Phoenix            8      Minnesota             Lynx
## 1018            Phoenix            8      Minnesota             Lynx
## 1019            Phoenix            8      Minnesota             Lynx
## 1020            Phoenix            8      Minnesota             Lynx
## 1021            Phoenix            8      Minnesota             Lynx
## 1022            Phoenix            8      Minnesota             Lynx
## 1023            Phoenix            8      Minnesota             Lynx
## 1024            Phoenix            8      Minnesota             Lynx
## 1025            Phoenix            8      Minnesota             Lynx
## 1026            Phoenix            8      Minnesota             Lynx
## 1027            Phoenix            8      Minnesota             Lynx
## 1028            Phoenix            8      Minnesota             Lynx
## 1029            Phoenix            8      Minnesota             Lynx
## 1030            Phoenix            8      Minnesota             Lynx
## 1031            Phoenix            8      Minnesota             Lynx
## 1032            Phoenix            8      Minnesota             Lynx
## 1033            Phoenix            8      Minnesota             Lynx
## 1034            Phoenix            8      Minnesota             Lynx
## 1035            Phoenix            8      Minnesota             Lynx
## 1036            Phoenix            8      Minnesota             Lynx
## 1037            Phoenix            8      Minnesota             Lynx
## 1038            Phoenix            8      Minnesota             Lynx
## 1039            Phoenix            8      Minnesota             Lynx
## 1040            Phoenix            8      Minnesota             Lynx
## 1041            Phoenix            8      Minnesota             Lynx
## 1042            Phoenix            8      Minnesota             Lynx
## 1043            Phoenix            8      Minnesota             Lynx
## 1044            Phoenix            8      Minnesota             Lynx
## 1045            Phoenix            8      Minnesota             Lynx
## 1046            Phoenix            8      Minnesota             Lynx
## 1047            Phoenix            8      Minnesota             Lynx
## 1048            Phoenix            8      Minnesota             Lynx
## 1049            Phoenix            8      Minnesota             Lynx
## 1050            Phoenix            8      Minnesota             Lynx
## 1051            Phoenix            8      Minnesota             Lynx
## 1052            Phoenix            8      Minnesota             Lynx
## 1053            Phoenix            8      Minnesota             Lynx
## 1054            Phoenix            8      Minnesota             Lynx
## 1055            Phoenix            8      Minnesota             Lynx
## 1056            Phoenix            8      Minnesota             Lynx
## 1057            Phoenix            8      Minnesota             Lynx
## 1058            Phoenix            8      Minnesota             Lynx
## 1059            Phoenix            8      Minnesota             Lynx
## 1060            Phoenix            8      Minnesota             Lynx
## 1061            Phoenix            8      Minnesota             Lynx
## 1062            Phoenix            8      Minnesota             Lynx
## 1063            Phoenix            8      Minnesota             Lynx
## 1064            Phoenix            8      Minnesota             Lynx
## 1065            Phoenix            8      Minnesota             Lynx
## 1066            Phoenix            8      Minnesota             Lynx
## 1067            Phoenix            8      Minnesota             Lynx
## 1068            Phoenix            8      Minnesota             Lynx
## 1069            Phoenix            8      Minnesota             Lynx
## 1070            Phoenix            8      Minnesota             Lynx
## 1071            Phoenix            8      Minnesota             Lynx
## 1072            Phoenix            8      Minnesota             Lynx
## 1073            Phoenix            8      Minnesota             Lynx
## 1074            Phoenix            8      Minnesota             Lynx
## 1075            Phoenix            8      Minnesota             Lynx
## 1076            Phoenix            8      Minnesota             Lynx
## 1077            Phoenix            8      Minnesota             Lynx
## 1078            Phoenix            8      Minnesota             Lynx
## 1079            Phoenix            8      Minnesota             Lynx
## 1080            Phoenix            8      Minnesota             Lynx
## 1081            Phoenix            8      Minnesota             Lynx
## 1082            Phoenix            8      Minnesota             Lynx
## 1083            Phoenix            8      Minnesota             Lynx
## 1084            Phoenix            8      Minnesota             Lynx
## 1085            Phoenix            8      Minnesota             Lynx
## 1086            Phoenix            8      Minnesota             Lynx
## 1087            Phoenix            8      Minnesota             Lynx
## 1088            Phoenix            8      Minnesota             Lynx
## 1089            Phoenix            8      Minnesota             Lynx
## 1090            Phoenix            8      Minnesota             Lynx
## 1091            Phoenix            8      Minnesota             Lynx
## 1092            Phoenix            8      Minnesota             Lynx
## 1093            Phoenix            8      Minnesota             Lynx
## 1094            Phoenix            8      Minnesota             Lynx
## 1095            Phoenix            8      Minnesota             Lynx
## 1096            Phoenix            8      Minnesota             Lynx
## 1097            Phoenix            8      Minnesota             Lynx
## 1098            Phoenix            8      Minnesota             Lynx
## 1099            Phoenix            8      Minnesota             Lynx
## 1100            Phoenix            8      Minnesota             Lynx
## 1101            Phoenix            8      Minnesota             Lynx
## 1102            Phoenix            8      Minnesota             Lynx
## 1103            Phoenix            8      Minnesota             Lynx
## 1104            Phoenix            8      Minnesota             Lynx
## 1105            Phoenix            8      Minnesota             Lynx
## 1106            Phoenix            8      Minnesota             Lynx
## 1107            Phoenix            8      Minnesota             Lynx
## 1108            Phoenix            8      Minnesota             Lynx
## 1109            Phoenix            8      Minnesota             Lynx
## 1110            Phoenix            8      Minnesota             Lynx
## 1111            Phoenix            8      Minnesota             Lynx
## 1112            Phoenix            8      Minnesota             Lynx
## 1113            Phoenix            8      Minnesota             Lynx
## 1114            Phoenix            8      Minnesota             Lynx
## 1115            Phoenix            8      Minnesota             Lynx
## 1116            Phoenix            8      Minnesota             Lynx
## 1117            Phoenix            8      Minnesota             Lynx
## 1118            Phoenix            8      Minnesota             Lynx
## 1119            Phoenix            8      Minnesota             Lynx
## 1120            Phoenix            8      Minnesota             Lynx
## 1121            Phoenix            8      Minnesota             Lynx
## 1122            Phoenix            8      Minnesota             Lynx
## 1123            Phoenix            8      Minnesota             Lynx
## 1124            Phoenix            8      Minnesota             Lynx
## 1125            Phoenix            8      Minnesota             Lynx
## 1126            Phoenix            8      Minnesota             Lynx
## 1127            Phoenix            8      Minnesota             Lynx
## 1128            Phoenix            8      Minnesota             Lynx
## 1129            Phoenix            8      Minnesota             Lynx
## 1130            Phoenix            8      Minnesota             Lynx
## 1131            Phoenix            8      Minnesota             Lynx
## 1132            Phoenix            8      Minnesota             Lynx
## 1133            Phoenix            8      Minnesota             Lynx
## 1134            Phoenix            8      Minnesota             Lynx
## 1135            Phoenix            8      Minnesota             Lynx
## 1136            Phoenix            8      Minnesota             Lynx
## 1137            Phoenix            8      Minnesota             Lynx
## 1138            Phoenix            8      Minnesota             Lynx
## 1139            Phoenix            8      Minnesota             Lynx
## 1140            Phoenix            8      Minnesota             Lynx
## 1141            Phoenix            8      Minnesota             Lynx
## 1142            Phoenix            8      Minnesota             Lynx
## 1143            Phoenix            8      Minnesota             Lynx
## 1144            Phoenix            8      Minnesota             Lynx
## 1145            Phoenix            8      Minnesota             Lynx
## 1146            Phoenix            8      Minnesota             Lynx
## 1147            Phoenix            8      Minnesota             Lynx
## 1148            Phoenix            8      Minnesota             Lynx
## 1149            Phoenix            8      Minnesota             Lynx
## 1150            Phoenix            8      Minnesota             Lynx
## 1151            Phoenix            8      Minnesota             Lynx
## 1152            Phoenix            8      Minnesota             Lynx
## 1153            Phoenix            8      Minnesota             Lynx
## 1154            Phoenix            8      Minnesota             Lynx
## 1155            Phoenix            8      Minnesota             Lynx
## 1156            Phoenix            8      Minnesota             Lynx
## 1157            Phoenix            8      Minnesota             Lynx
## 1158            Phoenix            8      Minnesota             Lynx
## 1159            Phoenix            8      Minnesota             Lynx
## 1160            Phoenix            8      Minnesota             Lynx
## 1161            Phoenix            8      Minnesota             Lynx
## 1162            Phoenix            8      Minnesota             Lynx
## 1163            Phoenix            8      Minnesota             Lynx
## 1164            Phoenix            8      Minnesota             Lynx
## 1165            Phoenix            8      Minnesota             Lynx
## 1166            Phoenix            8      Minnesota             Lynx
## 1167            Phoenix            8      Minnesota             Lynx
## 1168            Phoenix            8      Minnesota             Lynx
## 1169            Phoenix            8      Minnesota             Lynx
## 1170            Phoenix            8      Minnesota             Lynx
## 1171            Phoenix            8      Minnesota             Lynx
## 1172            Phoenix            8      Minnesota             Lynx
## 1173            Phoenix            8      Minnesota             Lynx
## 1174            Phoenix            8      Minnesota             Lynx
## 1175            Phoenix            8      Minnesota             Lynx
## 1176            Phoenix            8      Minnesota             Lynx
## 1177            Phoenix            8      Minnesota             Lynx
## 1178            Phoenix            8      Minnesota             Lynx
## 1179            Phoenix            8      Minnesota             Lynx
## 1180            Phoenix            8      Minnesota             Lynx
## 1181            Phoenix            8      Minnesota             Lynx
## 1182            Phoenix            8      Minnesota             Lynx
## 1183            Phoenix            8      Minnesota             Lynx
## 1184            Phoenix            8      Minnesota             Lynx
## 1185            Phoenix            8      Minnesota             Lynx
## 1186            Phoenix            8      Minnesota             Lynx
## 1187            Phoenix            8      Minnesota             Lynx
## 1188            Phoenix            8      Minnesota             Lynx
## 1189            Phoenix            8      Minnesota             Lynx
## 1190            Phoenix            8      Minnesota             Lynx
## 1191            Phoenix            8      Minnesota             Lynx
## 1192            Phoenix            8      Minnesota             Lynx
## 1193            Phoenix            8      Minnesota             Lynx
## 1194            Phoenix            8      Minnesota             Lynx
## 1195            Phoenix            8      Minnesota             Lynx
## 1196            Phoenix            8      Minnesota             Lynx
## 1197             Dallas            6    Los Angeles           Sparks
## 1198             Dallas            6    Los Angeles           Sparks
## 1199             Dallas            6    Los Angeles           Sparks
## 1200             Dallas            6    Los Angeles           Sparks
## 1201             Dallas            6    Los Angeles           Sparks
## 1202             Dallas            6    Los Angeles           Sparks
## 1203             Dallas            6    Los Angeles           Sparks
## 1204             Dallas            6    Los Angeles           Sparks
## 1205             Dallas            6    Los Angeles           Sparks
## 1206             Dallas            6    Los Angeles           Sparks
## 1207             Dallas            6    Los Angeles           Sparks
## 1208             Dallas            6    Los Angeles           Sparks
## 1209             Dallas            6    Los Angeles           Sparks
## 1210             Dallas            6    Los Angeles           Sparks
## 1211             Dallas            6    Los Angeles           Sparks
## 1212             Dallas            6    Los Angeles           Sparks
## 1213             Dallas            6    Los Angeles           Sparks
## 1214             Dallas            6    Los Angeles           Sparks
## 1215             Dallas            6    Los Angeles           Sparks
## 1216             Dallas            6    Los Angeles           Sparks
## 1217             Dallas            6    Los Angeles           Sparks
## 1218             Dallas            6    Los Angeles           Sparks
## 1219             Dallas            6    Los Angeles           Sparks
## 1220             Dallas            6    Los Angeles           Sparks
## 1221             Dallas            6    Los Angeles           Sparks
## 1222             Dallas            6    Los Angeles           Sparks
## 1223             Dallas            6    Los Angeles           Sparks
## 1224             Dallas            6    Los Angeles           Sparks
## 1225             Dallas            6    Los Angeles           Sparks
## 1226             Dallas            6    Los Angeles           Sparks
## 1227             Dallas            6    Los Angeles           Sparks
## 1228             Dallas            6    Los Angeles           Sparks
## 1229             Dallas            6    Los Angeles           Sparks
## 1230             Dallas            6    Los Angeles           Sparks
## 1231             Dallas            6    Los Angeles           Sparks
## 1232             Dallas            6    Los Angeles           Sparks
## 1233             Dallas            6    Los Angeles           Sparks
## 1234             Dallas            6    Los Angeles           Sparks
## 1235             Dallas            6    Los Angeles           Sparks
## 1236             Dallas            6    Los Angeles           Sparks
## 1237             Dallas            6    Los Angeles           Sparks
## 1238             Dallas            6    Los Angeles           Sparks
## 1239             Dallas            6    Los Angeles           Sparks
## 1240             Dallas            6    Los Angeles           Sparks
## 1241             Dallas            6    Los Angeles           Sparks
## 1242             Dallas            6    Los Angeles           Sparks
## 1243             Dallas            6    Los Angeles           Sparks
## 1244             Dallas            6    Los Angeles           Sparks
## 1245             Dallas            6    Los Angeles           Sparks
## 1246             Dallas            6    Los Angeles           Sparks
## 1247             Dallas            6    Los Angeles           Sparks
## 1248             Dallas            6    Los Angeles           Sparks
## 1249             Dallas            6    Los Angeles           Sparks
## 1250             Dallas            6    Los Angeles           Sparks
## 1251             Dallas            6    Los Angeles           Sparks
## 1252             Dallas            6    Los Angeles           Sparks
## 1253             Dallas            6    Los Angeles           Sparks
## 1254             Dallas            6    Los Angeles           Sparks
## 1255             Dallas            6    Los Angeles           Sparks
## 1256             Dallas            6    Los Angeles           Sparks
## 1257             Dallas            6    Los Angeles           Sparks
## 1258             Dallas            6    Los Angeles           Sparks
## 1259             Dallas            6    Los Angeles           Sparks
## 1260             Dallas            6    Los Angeles           Sparks
## 1261             Dallas            6    Los Angeles           Sparks
## 1262             Dallas            6    Los Angeles           Sparks
## 1263             Dallas            6    Los Angeles           Sparks
## 1264             Dallas            6    Los Angeles           Sparks
## 1265             Dallas            6    Los Angeles           Sparks
## 1266             Dallas            6    Los Angeles           Sparks
## 1267             Dallas            6    Los Angeles           Sparks
## 1268             Dallas            6    Los Angeles           Sparks
## 1269             Dallas            6    Los Angeles           Sparks
## 1270             Dallas            6    Los Angeles           Sparks
## 1271             Dallas            6    Los Angeles           Sparks
## 1272             Dallas            6    Los Angeles           Sparks
## 1273             Dallas            6    Los Angeles           Sparks
## 1274             Dallas            6    Los Angeles           Sparks
## 1275             Dallas            6    Los Angeles           Sparks
## 1276             Dallas            6    Los Angeles           Sparks
## 1277             Dallas            6    Los Angeles           Sparks
## 1278             Dallas            6    Los Angeles           Sparks
## 1279             Dallas            6    Los Angeles           Sparks
## 1280             Dallas            6    Los Angeles           Sparks
## 1281             Dallas            6    Los Angeles           Sparks
## 1282             Dallas            6    Los Angeles           Sparks
## 1283             Dallas            6    Los Angeles           Sparks
## 1284             Dallas            6    Los Angeles           Sparks
## 1285             Dallas            6    Los Angeles           Sparks
## 1286             Dallas            6    Los Angeles           Sparks
## 1287             Dallas            6    Los Angeles           Sparks
## 1288             Dallas            6    Los Angeles           Sparks
## 1289             Dallas            6    Los Angeles           Sparks
## 1290             Dallas            6    Los Angeles           Sparks
## 1291             Dallas            6    Los Angeles           Sparks
## 1292             Dallas            6    Los Angeles           Sparks
## 1293             Dallas            6    Los Angeles           Sparks
## 1294             Dallas            6    Los Angeles           Sparks
## 1295             Dallas            6    Los Angeles           Sparks
## 1296             Dallas            6    Los Angeles           Sparks
## 1297             Dallas            6    Los Angeles           Sparks
## 1298             Dallas            6    Los Angeles           Sparks
## 1299             Dallas            6    Los Angeles           Sparks
## 1300             Dallas            6    Los Angeles           Sparks
## 1301             Dallas            6    Los Angeles           Sparks
## 1302             Dallas            6    Los Angeles           Sparks
## 1303             Dallas            6    Los Angeles           Sparks
## 1304             Dallas            6    Los Angeles           Sparks
## 1305             Dallas            6    Los Angeles           Sparks
## 1306             Dallas            6    Los Angeles           Sparks
## 1307             Dallas            6    Los Angeles           Sparks
## 1308             Dallas            6    Los Angeles           Sparks
## 1309             Dallas            6    Los Angeles           Sparks
## 1310             Dallas            6    Los Angeles           Sparks
## 1311             Dallas            6    Los Angeles           Sparks
## 1312             Dallas            6    Los Angeles           Sparks
## 1313             Dallas            6    Los Angeles           Sparks
## 1314             Dallas            6    Los Angeles           Sparks
## 1315             Dallas            6    Los Angeles           Sparks
## 1316             Dallas            6    Los Angeles           Sparks
## 1317             Dallas            6    Los Angeles           Sparks
## 1318             Dallas            6    Los Angeles           Sparks
## 1319             Dallas            6    Los Angeles           Sparks
## 1320             Dallas            6    Los Angeles           Sparks
## 1321             Dallas            6    Los Angeles           Sparks
## 1322             Dallas            6    Los Angeles           Sparks
## 1323             Dallas            6    Los Angeles           Sparks
## 1324             Dallas            6    Los Angeles           Sparks
## 1325             Dallas            6    Los Angeles           Sparks
## 1326             Dallas            6    Los Angeles           Sparks
## 1327             Dallas            6    Los Angeles           Sparks
## 1328             Dallas            6    Los Angeles           Sparks
## 1329             Dallas            6    Los Angeles           Sparks
## 1330             Dallas            6    Los Angeles           Sparks
## 1331             Dallas            6    Los Angeles           Sparks
## 1332             Dallas            6    Los Angeles           Sparks
## 1333             Dallas            6    Los Angeles           Sparks
## 1334             Dallas            6    Los Angeles           Sparks
## 1335             Dallas            6    Los Angeles           Sparks
## 1336             Dallas            6    Los Angeles           Sparks
## 1337             Dallas            6    Los Angeles           Sparks
## 1338             Dallas            6    Los Angeles           Sparks
## 1339             Dallas            6    Los Angeles           Sparks
## 1340             Dallas            6    Los Angeles           Sparks
## 1341             Dallas            6    Los Angeles           Sparks
## 1342             Dallas            6    Los Angeles           Sparks
## 1343             Dallas            6    Los Angeles           Sparks
## 1344             Dallas            6    Los Angeles           Sparks
## 1345             Dallas            6    Los Angeles           Sparks
## 1346             Dallas            6    Los Angeles           Sparks
## 1347             Dallas            6    Los Angeles           Sparks
## 1348             Dallas            6    Los Angeles           Sparks
## 1349             Dallas            6    Los Angeles           Sparks
## 1350             Dallas            6    Los Angeles           Sparks
## 1351             Dallas            6    Los Angeles           Sparks
## 1352             Dallas            6    Los Angeles           Sparks
## 1353             Dallas            6    Los Angeles           Sparks
## 1354             Dallas            6    Los Angeles           Sparks
## 1355             Dallas            6    Los Angeles           Sparks
## 1356             Dallas            6    Los Angeles           Sparks
## 1357             Dallas            6    Los Angeles           Sparks
## 1358             Dallas            6    Los Angeles           Sparks
## 1359             Dallas            6    Los Angeles           Sparks
## 1360             Dallas            6    Los Angeles           Sparks
## 1361             Dallas            6    Los Angeles           Sparks
## 1362             Dallas            6    Los Angeles           Sparks
## 1363             Dallas            6    Los Angeles           Sparks
## 1364             Dallas            6    Los Angeles           Sparks
## 1365             Dallas            6    Los Angeles           Sparks
## 1366             Dallas            6    Los Angeles           Sparks
## 1367             Dallas            6    Los Angeles           Sparks
## 1368             Dallas            6    Los Angeles           Sparks
## 1369             Dallas            6    Los Angeles           Sparks
## 1370             Dallas            6    Los Angeles           Sparks
## 1371             Dallas            6    Los Angeles           Sparks
## 1372             Dallas            6    Los Angeles           Sparks
## 1373             Dallas            6    Los Angeles           Sparks
## 1374             Dallas            6    Los Angeles           Sparks
## 1375             Dallas            6    Los Angeles           Sparks
## 1376             Dallas            6    Los Angeles           Sparks
## 1377             Dallas            6    Los Angeles           Sparks
## 1378             Dallas            6    Los Angeles           Sparks
## 1379             Dallas            6    Los Angeles           Sparks
## 1380             Dallas            6    Los Angeles           Sparks
## 1381             Dallas            6    Los Angeles           Sparks
## 1382             Dallas            6    Los Angeles           Sparks
## 1383             Dallas            6    Los Angeles           Sparks
## 1384             Dallas            6    Los Angeles           Sparks
## 1385             Dallas            6    Los Angeles           Sparks
## 1386             Dallas            6    Los Angeles           Sparks
## 1387             Dallas            6    Los Angeles           Sparks
## 1388             Dallas            6    Los Angeles           Sparks
## 1389             Dallas            6    Los Angeles           Sparks
## 1390             Dallas            6    Los Angeles           Sparks
## 1391             Dallas            6    Los Angeles           Sparks
## 1392             Dallas            6    Los Angeles           Sparks
## 1393             Dallas            6    Los Angeles           Sparks
## 1394             Dallas            6    Los Angeles           Sparks
## 1395             Dallas            6    Los Angeles           Sparks
## 1396             Dallas            6    Los Angeles           Sparks
## 1397             Dallas            6    Los Angeles           Sparks
## 1398             Dallas            6    Los Angeles           Sparks
## 1399             Dallas            6    Los Angeles           Sparks
## 1400             Dallas            6    Los Angeles           Sparks
## 1401             Dallas            6    Los Angeles           Sparks
## 1402             Dallas            6    Los Angeles           Sparks
## 1403             Dallas            6    Los Angeles           Sparks
## 1404             Dallas            6    Los Angeles           Sparks
## 1405             Dallas            6    Los Angeles           Sparks
## 1406             Dallas            6    Los Angeles           Sparks
## 1407             Dallas            6    Los Angeles           Sparks
## 1408             Dallas            6    Los Angeles           Sparks
## 1409             Dallas            6    Los Angeles           Sparks
## 1410             Dallas            6    Los Angeles           Sparks
## 1411             Dallas            6    Los Angeles           Sparks
## 1412             Dallas            6    Los Angeles           Sparks
## 1413             Dallas            6    Los Angeles           Sparks
## 1414             Dallas            6    Los Angeles           Sparks
## 1415             Dallas            6    Los Angeles           Sparks
## 1416             Dallas            6    Los Angeles           Sparks
## 1417             Dallas            6    Los Angeles           Sparks
## 1418             Dallas            6    Los Angeles           Sparks
## 1419             Dallas            6    Los Angeles           Sparks
## 1420             Dallas            6    Los Angeles           Sparks
## 1421             Dallas            6    Los Angeles           Sparks
## 1422             Dallas            6    Los Angeles           Sparks
## 1423             Dallas            6    Los Angeles           Sparks
## 1424             Dallas            6    Los Angeles           Sparks
## 1425             Dallas            6    Los Angeles           Sparks
## 1426             Dallas            6    Los Angeles           Sparks
## 1427             Dallas            6    Los Angeles           Sparks
## 1428             Dallas            6    Los Angeles           Sparks
## 1429             Dallas            6    Los Angeles           Sparks
## 1430             Dallas            6    Los Angeles           Sparks
## 1431             Dallas            6    Los Angeles           Sparks
## 1432             Dallas            6    Los Angeles           Sparks
## 1433             Dallas            6    Los Angeles           Sparks
## 1434             Dallas            6    Los Angeles           Sparks
## 1435             Dallas            6    Los Angeles           Sparks
## 1436             Dallas            6    Los Angeles           Sparks
## 1437             Dallas            6    Los Angeles           Sparks
## 1438             Dallas            6    Los Angeles           Sparks
## 1439             Dallas            6    Los Angeles           Sparks
## 1440             Dallas            6    Los Angeles           Sparks
## 1441             Dallas            6    Los Angeles           Sparks
## 1442             Dallas            6    Los Angeles           Sparks
## 1443             Dallas            6    Los Angeles           Sparks
## 1444             Dallas            6    Los Angeles           Sparks
## 1445             Dallas            6    Los Angeles           Sparks
## 1446             Dallas            6    Los Angeles           Sparks
## 1447             Dallas            6    Los Angeles           Sparks
## 1448             Dallas            6    Los Angeles           Sparks
## 1449             Dallas            6    Los Angeles           Sparks
## 1450             Dallas            6    Los Angeles           Sparks
## 1451             Dallas            6    Los Angeles           Sparks
## 1452             Dallas            6    Los Angeles           Sparks
## 1453             Dallas            6    Los Angeles           Sparks
## 1454             Dallas            6    Los Angeles           Sparks
## 1455             Dallas            6    Los Angeles           Sparks
## 1456             Dallas            6    Los Angeles           Sparks
## 1457             Dallas            6    Los Angeles           Sparks
## 1458             Dallas            6    Los Angeles           Sparks
## 1459             Dallas            6    Los Angeles           Sparks
## 1460             Dallas            6    Los Angeles           Sparks
## 1461             Dallas            6    Los Angeles           Sparks
## 1462             Dallas            6    Los Angeles           Sparks
## 1463             Dallas            6    Los Angeles           Sparks
## 1464             Dallas            6    Los Angeles           Sparks
## 1465             Dallas            6    Los Angeles           Sparks
## 1466             Dallas            6    Los Angeles           Sparks
## 1467             Dallas            6    Los Angeles           Sparks
## 1468             Dallas            6    Los Angeles           Sparks
## 1469             Dallas            6    Los Angeles           Sparks
## 1470             Dallas            6    Los Angeles           Sparks
## 1471             Dallas            6    Los Angeles           Sparks
## 1472             Dallas            6    Los Angeles           Sparks
## 1473             Dallas            6    Los Angeles           Sparks
## 1474             Dallas            6    Los Angeles           Sparks
## 1475             Dallas            6    Los Angeles           Sparks
## 1476             Dallas            6    Los Angeles           Sparks
## 1477             Dallas            6    Los Angeles           Sparks
## 1478             Dallas            6    Los Angeles           Sparks
## 1479             Dallas            6    Los Angeles           Sparks
## 1480             Dallas            6    Los Angeles           Sparks
## 1481             Dallas            6    Los Angeles           Sparks
## 1482             Dallas            6    Los Angeles           Sparks
## 1483             Dallas            6    Los Angeles           Sparks
## 1484             Dallas            6    Los Angeles           Sparks
## 1485             Dallas            6    Los Angeles           Sparks
## 1486             Dallas            6    Los Angeles           Sparks
## 1487             Dallas            6    Los Angeles           Sparks
## 1488             Dallas            6    Los Angeles           Sparks
## 1489             Dallas            6    Los Angeles           Sparks
## 1490             Dallas            6    Los Angeles           Sparks
## 1491             Dallas            6    Los Angeles           Sparks
## 1492             Dallas            6    Los Angeles           Sparks
## 1493             Dallas            6    Los Angeles           Sparks
## 1494             Dallas            6    Los Angeles           Sparks
## 1495             Dallas            6    Los Angeles           Sparks
## 1496             Dallas            6    Los Angeles           Sparks
## 1497             Dallas            6    Los Angeles           Sparks
## 1498             Dallas            6    Los Angeles           Sparks
## 1499             Dallas            6    Los Angeles           Sparks
## 1500             Dallas            6    Los Angeles           Sparks
## 1501             Dallas            6    Los Angeles           Sparks
## 1502             Dallas            6    Los Angeles           Sparks
## 1503             Dallas            6    Los Angeles           Sparks
## 1504             Dallas            6    Los Angeles           Sparks
## 1505             Dallas            6    Los Angeles           Sparks
## 1506             Dallas            6    Los Angeles           Sparks
## 1507             Dallas            6    Los Angeles           Sparks
## 1508             Dallas            6    Los Angeles           Sparks
## 1509             Dallas            6    Los Angeles           Sparks
## 1510             Dallas            6    Los Angeles           Sparks
## 1511             Dallas            6    Los Angeles           Sparks
## 1512             Dallas            6    Los Angeles           Sparks
## 1513             Dallas            6    Los Angeles           Sparks
## 1514             Dallas            6    Los Angeles           Sparks
## 1515             Dallas            6    Los Angeles           Sparks
## 1516             Dallas            6    Los Angeles           Sparks
## 1517             Dallas            6    Los Angeles           Sparks
## 1518             Dallas            6    Los Angeles           Sparks
## 1519             Dallas            6    Los Angeles           Sparks
## 1520             Dallas            6    Los Angeles           Sparks
## 1521             Dallas            6    Los Angeles           Sparks
## 1522             Dallas            6    Los Angeles           Sparks
## 1523             Dallas            6    Los Angeles           Sparks
## 1524             Dallas            6    Los Angeles           Sparks
## 1525             Dallas            6    Los Angeles           Sparks
## 1526             Dallas            6    Los Angeles           Sparks
## 1527             Dallas            6    Los Angeles           Sparks
## 1528             Dallas            6    Los Angeles           Sparks
## 1529             Dallas            6    Los Angeles           Sparks
## 1530             Dallas            6    Los Angeles           Sparks
## 1531             Dallas            6    Los Angeles           Sparks
## 1532             Dallas            6    Los Angeles           Sparks
## 1533             Dallas            6    Los Angeles           Sparks
## 1534             Dallas            6    Los Angeles           Sparks
## 1535             Dallas            6    Los Angeles           Sparks
## 1536             Dallas            6    Los Angeles           Sparks
## 1537             Dallas            6    Los Angeles           Sparks
## 1538             Dallas            6    Los Angeles           Sparks
## 1539             Dallas            6    Los Angeles           Sparks
## 1540             Dallas            6    Los Angeles           Sparks
## 1541             Dallas            6    Los Angeles           Sparks
## 1542             Dallas            6    Los Angeles           Sparks
## 1543             Dallas            6    Los Angeles           Sparks
## 1544             Dallas            6    Los Angeles           Sparks
## 1545             Dallas            6    Los Angeles           Sparks
## 1546             Dallas            6    Los Angeles           Sparks
## 1547             Dallas            6    Los Angeles           Sparks
## 1548             Dallas            6    Los Angeles           Sparks
## 1549             Dallas            6    Los Angeles           Sparks
## 1550             Dallas            6    Los Angeles           Sparks
## 1551             Dallas            6    Los Angeles           Sparks
## 1552             Dallas            6    Los Angeles           Sparks
## 1553             Dallas            6    Los Angeles           Sparks
## 1554             Dallas            6    Los Angeles           Sparks
## 1555             Dallas            6    Los Angeles           Sparks
## 1556             Dallas            6    Los Angeles           Sparks
## 1557             Dallas            6    Los Angeles           Sparks
## 1558             Dallas            6    Los Angeles           Sparks
## 1559             Dallas            6    Los Angeles           Sparks
## 1560             Dallas            6    Los Angeles           Sparks
## 1561             Dallas            6    Los Angeles           Sparks
## 1562             Dallas            6    Los Angeles           Sparks
## 1563             Dallas            6    Los Angeles           Sparks
## 1564             Dallas            6    Los Angeles           Sparks
## 1565             Dallas            6    Los Angeles           Sparks
## 1566             Dallas            6    Los Angeles           Sparks
## 1567             Dallas            6    Los Angeles           Sparks
## 1568             Dallas            6    Los Angeles           Sparks
## 1569             Dallas            6    Los Angeles           Sparks
## 1570             Dallas            6    Los Angeles           Sparks
## 1571             Dallas            6    Los Angeles           Sparks
## 1572             Dallas            6    Los Angeles           Sparks
## 1573             Dallas            6    Los Angeles           Sparks
## 1574             Dallas            6    Los Angeles           Sparks
## 1575             Dallas            6    Los Angeles           Sparks
## 1576             Dallas            6    Los Angeles           Sparks
## 1577             Dallas            6    Los Angeles           Sparks
## 1578             Dallas            6    Los Angeles           Sparks
## 1579             Dallas            6    Los Angeles           Sparks
## 1580             Dallas            6    Los Angeles           Sparks
## 1581             Dallas            6    Los Angeles           Sparks
## 1582             Dallas            6    Los Angeles           Sparks
## 1583             Dallas            6    Los Angeles           Sparks
## 1584             Dallas            6    Los Angeles           Sparks
## 1585             Dallas            6    Los Angeles           Sparks
## 1586             Dallas            6    Los Angeles           Sparks
## 1587             Dallas            6    Los Angeles           Sparks
## 1588             Dallas            6    Los Angeles           Sparks
## 1589             Dallas            6    Los Angeles           Sparks
## 1590             Dallas            6    Los Angeles           Sparks
## 1591             Dallas            6    Los Angeles           Sparks
## 1592             Dallas            6    Los Angeles           Sparks
## 1593             Dallas            6    Los Angeles           Sparks
## 1594             Dallas            6    Los Angeles           Sparks
## 1595             Dallas            6    Los Angeles           Sparks
## 1596             Dallas            6    Los Angeles           Sparks
## 1597             Dallas            6    Los Angeles           Sparks
## 1598             Dallas            6    Los Angeles           Sparks
## 1599             Dallas            6    Los Angeles           Sparks
## 1600             Dallas            6    Los Angeles           Sparks
## 1601             Dallas            6    Los Angeles           Sparks
## 1602             Dallas            6    Los Angeles           Sparks
## 1603             Dallas            6    Los Angeles           Sparks
## 1604             Dallas            6    Los Angeles           Sparks
## 1605             Dallas            6    Los Angeles           Sparks
## 1606             Dallas            6    Los Angeles           Sparks
## 1607             Dallas            6    Los Angeles           Sparks
## 1608             Dallas            6    Los Angeles           Sparks
## 1609             Dallas            6    Los Angeles           Sparks
## 1610             Dallas            6    Los Angeles           Sparks
## 1611             Dallas            6    Los Angeles           Sparks
## 1612             Dallas            6    Los Angeles           Sparks
## 1613             Dallas            6    Los Angeles           Sparks
## 1614             Dallas            6    Los Angeles           Sparks
## 1615             Dallas            6    Los Angeles           Sparks
## 1616             Dallas            6    Los Angeles           Sparks
## 1617             Dallas            6    Los Angeles           Sparks
## 1618             Dallas            6    Los Angeles           Sparks
## 1619             Dallas            6    Los Angeles           Sparks
## 1620             Dallas            6    Los Angeles           Sparks
## 1621             Dallas            6    Los Angeles           Sparks
## 1622             Dallas            6    Los Angeles           Sparks
## 1623             Dallas            6    Los Angeles           Sparks
## 1624             Dallas            6    Los Angeles           Sparks
## 1625             Dallas            6    Los Angeles           Sparks
## 1626            Chicago           16     Washington          Mystics
## 1627            Chicago           16     Washington          Mystics
## 1628            Chicago           16     Washington          Mystics
## 1629            Chicago           16     Washington          Mystics
## 1630            Chicago           16     Washington          Mystics
## 1631            Chicago           16     Washington          Mystics
## 1632            Chicago           16     Washington          Mystics
## 1633            Chicago           16     Washington          Mystics
## 1634            Chicago           16     Washington          Mystics
## 1635            Chicago           16     Washington          Mystics
## 1636            Chicago           16     Washington          Mystics
## 1637            Chicago           16     Washington          Mystics
## 1638            Chicago           16     Washington          Mystics
## 1639            Chicago           16     Washington          Mystics
## 1640            Chicago           16     Washington          Mystics
## 1641            Chicago           16     Washington          Mystics
## 1642            Chicago           16     Washington          Mystics
## 1643            Chicago           16     Washington          Mystics
## 1644            Chicago           16     Washington          Mystics
## 1645            Chicago           16     Washington          Mystics
## 1646            Chicago           16     Washington          Mystics
## 1647            Chicago           16     Washington          Mystics
## 1648            Chicago           16     Washington          Mystics
## 1649            Chicago           16     Washington          Mystics
## 1650            Chicago           16     Washington          Mystics
## 1651            Chicago           16     Washington          Mystics
## 1652            Chicago           16     Washington          Mystics
## 1653            Chicago           16     Washington          Mystics
## 1654            Chicago           16     Washington          Mystics
## 1655            Chicago           16     Washington          Mystics
## 1656            Chicago           16     Washington          Mystics
## 1657            Chicago           16     Washington          Mystics
## 1658            Chicago           16     Washington          Mystics
## 1659            Chicago           16     Washington          Mystics
## 1660            Chicago           16     Washington          Mystics
## 1661            Chicago           16     Washington          Mystics
## 1662            Chicago           16     Washington          Mystics
## 1663            Chicago           16     Washington          Mystics
## 1664            Chicago           16     Washington          Mystics
## 1665            Chicago           16     Washington          Mystics
## 1666            Chicago           16     Washington          Mystics
## 1667            Chicago           16     Washington          Mystics
## 1668            Chicago           16     Washington          Mystics
## 1669            Chicago           16     Washington          Mystics
## 1670            Chicago           16     Washington          Mystics
## 1671            Chicago           16     Washington          Mystics
## 1672            Chicago           16     Washington          Mystics
## 1673            Chicago           16     Washington          Mystics
## 1674            Chicago           16     Washington          Mystics
## 1675            Chicago           16     Washington          Mystics
## 1676            Chicago           16     Washington          Mystics
## 1677            Chicago           16     Washington          Mystics
## 1678            Chicago           16     Washington          Mystics
## 1679            Chicago           16     Washington          Mystics
## 1680            Chicago           16     Washington          Mystics
## 1681            Chicago           16     Washington          Mystics
## 1682            Chicago           16     Washington          Mystics
## 1683            Chicago           16     Washington          Mystics
## 1684            Chicago           16     Washington          Mystics
## 1685            Chicago           16     Washington          Mystics
## 1686            Chicago           16     Washington          Mystics
## 1687            Chicago           16     Washington          Mystics
## 1688            Chicago           16     Washington          Mystics
## 1689            Chicago           16     Washington          Mystics
## 1690            Chicago           16     Washington          Mystics
## 1691            Chicago           16     Washington          Mystics
## 1692            Chicago           16     Washington          Mystics
## 1693            Chicago           16     Washington          Mystics
## 1694            Chicago           16     Washington          Mystics
## 1695            Chicago           16     Washington          Mystics
## 1696            Chicago           16     Washington          Mystics
## 1697            Chicago           16     Washington          Mystics
## 1698            Chicago           16     Washington          Mystics
## 1699            Chicago           16     Washington          Mystics
## 1700            Chicago           16     Washington          Mystics
## 1701            Chicago           16     Washington          Mystics
## 1702            Chicago           16     Washington          Mystics
## 1703            Chicago           16     Washington          Mystics
## 1704            Chicago           16     Washington          Mystics
## 1705            Chicago           16     Washington          Mystics
## 1706            Chicago           16     Washington          Mystics
## 1707            Chicago           16     Washington          Mystics
## 1708            Chicago           16     Washington          Mystics
## 1709            Chicago           16     Washington          Mystics
## 1710            Chicago           16     Washington          Mystics
## 1711            Chicago           16     Washington          Mystics
## 1712            Chicago           16     Washington          Mystics
## 1713            Chicago           16     Washington          Mystics
## 1714            Chicago           16     Washington          Mystics
## 1715            Chicago           16     Washington          Mystics
## 1716            Chicago           16     Washington          Mystics
## 1717            Chicago           16     Washington          Mystics
## 1718            Chicago           16     Washington          Mystics
## 1719            Chicago           16     Washington          Mystics
## 1720            Chicago           16     Washington          Mystics
## 1721            Chicago           16     Washington          Mystics
## 1722            Chicago           16     Washington          Mystics
## 1723            Chicago           16     Washington          Mystics
## 1724            Chicago           16     Washington          Mystics
## 1725            Chicago           16     Washington          Mystics
## 1726            Chicago           16     Washington          Mystics
## 1727            Chicago           16     Washington          Mystics
## 1728            Chicago           16     Washington          Mystics
## 1729            Chicago           16     Washington          Mystics
## 1730            Chicago           16     Washington          Mystics
## 1731            Chicago           16     Washington          Mystics
## 1732            Chicago           16     Washington          Mystics
## 1733            Chicago           16     Washington          Mystics
## 1734            Chicago           16     Washington          Mystics
## 1735            Chicago           16     Washington          Mystics
## 1736            Chicago           16     Washington          Mystics
## 1737            Chicago           16     Washington          Mystics
## 1738            Chicago           16     Washington          Mystics
## 1739            Chicago           16     Washington          Mystics
## 1740            Chicago           16     Washington          Mystics
## 1741            Chicago           16     Washington          Mystics
## 1742            Chicago           16     Washington          Mystics
## 1743            Chicago           16     Washington          Mystics
## 1744            Chicago           16     Washington          Mystics
## 1745            Chicago           16     Washington          Mystics
## 1746            Chicago           16     Washington          Mystics
## 1747            Chicago           16     Washington          Mystics
## 1748            Chicago           16     Washington          Mystics
## 1749            Chicago           16     Washington          Mystics
## 1750            Chicago           16     Washington          Mystics
## 1751            Chicago           16     Washington          Mystics
## 1752            Chicago           16     Washington          Mystics
## 1753            Chicago           16     Washington          Mystics
## 1754            Chicago           16     Washington          Mystics
## 1755            Chicago           16     Washington          Mystics
## 1756            Chicago           16     Washington          Mystics
## 1757            Chicago           16     Washington          Mystics
## 1758            Chicago           16     Washington          Mystics
## 1759            Chicago           16     Washington          Mystics
## 1760            Chicago           16     Washington          Mystics
## 1761            Chicago           16     Washington          Mystics
## 1762            Chicago           16     Washington          Mystics
## 1763            Chicago           16     Washington          Mystics
## 1764            Chicago           16     Washington          Mystics
## 1765            Chicago           16     Washington          Mystics
## 1766            Chicago           16     Washington          Mystics
## 1767            Chicago           16     Washington          Mystics
## 1768            Chicago           16     Washington          Mystics
## 1769            Chicago           16     Washington          Mystics
## 1770            Chicago           16     Washington          Mystics
## 1771            Chicago           16     Washington          Mystics
## 1772            Chicago           16     Washington          Mystics
## 1773            Chicago           16     Washington          Mystics
## 1774            Chicago           16     Washington          Mystics
## 1775            Chicago           16     Washington          Mystics
## 1776            Chicago           16     Washington          Mystics
## 1777            Chicago           16     Washington          Mystics
## 1778            Chicago           16     Washington          Mystics
## 1779            Chicago           16     Washington          Mystics
## 1780            Chicago           16     Washington          Mystics
## 1781            Chicago           16     Washington          Mystics
## 1782            Chicago           16     Washington          Mystics
## 1783            Chicago           16     Washington          Mystics
## 1784            Chicago           16     Washington          Mystics
## 1785            Chicago           16     Washington          Mystics
## 1786            Chicago           16     Washington          Mystics
## 1787            Chicago           16     Washington          Mystics
## 1788            Chicago           16     Washington          Mystics
## 1789            Chicago           16     Washington          Mystics
## 1790            Chicago           16     Washington          Mystics
## 1791            Chicago           16     Washington          Mystics
## 1792            Chicago           16     Washington          Mystics
## 1793            Chicago           16     Washington          Mystics
## 1794            Chicago           16     Washington          Mystics
## 1795            Chicago           16     Washington          Mystics
## 1796            Chicago           16     Washington          Mystics
## 1797            Chicago           16     Washington          Mystics
## 1798            Chicago           16     Washington          Mystics
## 1799            Chicago           16     Washington          Mystics
## 1800            Chicago           16     Washington          Mystics
## 1801            Chicago           16     Washington          Mystics
## 1802            Chicago           16     Washington          Mystics
## 1803            Chicago           16     Washington          Mystics
## 1804            Chicago           16     Washington          Mystics
## 1805            Chicago           16     Washington          Mystics
## 1806            Chicago           16     Washington          Mystics
## 1807            Chicago           16     Washington          Mystics
## 1808            Chicago           16     Washington          Mystics
## 1809            Chicago           16     Washington          Mystics
## 1810            Chicago           16     Washington          Mystics
## 1811            Chicago           16     Washington          Mystics
## 1812            Chicago           16     Washington          Mystics
## 1813            Chicago           16     Washington          Mystics
## 1814            Chicago           16     Washington          Mystics
## 1815            Chicago           16     Washington          Mystics
## 1816            Chicago           16     Washington          Mystics
## 1817            Chicago           16     Washington          Mystics
## 1818            Chicago           16     Washington          Mystics
## 1819            Chicago           16     Washington          Mystics
## 1820            Chicago           16     Washington          Mystics
## 1821            Chicago           16     Washington          Mystics
## 1822            Chicago           16     Washington          Mystics
## 1823            Chicago           16     Washington          Mystics
## 1824            Chicago           16     Washington          Mystics
## 1825            Chicago           16     Washington          Mystics
## 1826            Chicago           16     Washington          Mystics
## 1827            Chicago           16     Washington          Mystics
## 1828            Chicago           16     Washington          Mystics
## 1829            Chicago           16     Washington          Mystics
## 1830            Chicago           16     Washington          Mystics
## 1831            Chicago           16     Washington          Mystics
## 1832            Chicago           16     Washington          Mystics
## 1833            Chicago           16     Washington          Mystics
## 1834            Chicago           16     Washington          Mystics
## 1835            Chicago           16     Washington          Mystics
## 1836            Chicago           16     Washington          Mystics
## 1837            Chicago           16     Washington          Mystics
## 1838            Chicago           16     Washington          Mystics
## 1839            Chicago           16     Washington          Mystics
## 1840            Chicago           16     Washington          Mystics
## 1841            Chicago           16     Washington          Mystics
## 1842            Chicago           16     Washington          Mystics
## 1843            Chicago           16     Washington          Mystics
## 1844            Chicago           16     Washington          Mystics
## 1845            Chicago           16     Washington          Mystics
## 1846            Chicago           16     Washington          Mystics
## 1847            Chicago           16     Washington          Mystics
## 1848            Chicago           16     Washington          Mystics
## 1849            Chicago           16     Washington          Mystics
## 1850            Chicago           16     Washington          Mystics
## 1851            Chicago           16     Washington          Mystics
## 1852            Chicago           16     Washington          Mystics
## 1853            Chicago           16     Washington          Mystics
## 1854            Chicago           16     Washington          Mystics
## 1855            Chicago           16     Washington          Mystics
## 1856            Chicago           16     Washington          Mystics
## 1857            Chicago           16     Washington          Mystics
## 1858            Chicago           16     Washington          Mystics
## 1859            Chicago           16     Washington          Mystics
## 1860            Chicago           16     Washington          Mystics
## 1861            Chicago           16     Washington          Mystics
## 1862            Chicago           16     Washington          Mystics
## 1863            Chicago           16     Washington          Mystics
## 1864            Chicago           16     Washington          Mystics
## 1865            Chicago           16     Washington          Mystics
## 1866            Chicago           16     Washington          Mystics
## 1867            Chicago           16     Washington          Mystics
## 1868            Chicago           16     Washington          Mystics
## 1869            Chicago           16     Washington          Mystics
## 1870            Chicago           16     Washington          Mystics
## 1871            Chicago           16     Washington          Mystics
## 1872            Chicago           16     Washington          Mystics
## 1873            Chicago           16     Washington          Mystics
## 1874            Chicago           16     Washington          Mystics
## 1875            Chicago           16     Washington          Mystics
## 1876            Chicago           16     Washington          Mystics
## 1877            Chicago           16     Washington          Mystics
## 1878            Chicago           16     Washington          Mystics
## 1879            Chicago           16     Washington          Mystics
## 1880            Chicago           16     Washington          Mystics
## 1881            Chicago           16     Washington          Mystics
## 1882            Chicago           16     Washington          Mystics
## 1883            Chicago           16     Washington          Mystics
## 1884            Chicago           16     Washington          Mystics
## 1885            Chicago           16     Washington          Mystics
## 1886            Chicago           16     Washington          Mystics
## 1887            Chicago           16     Washington          Mystics
## 1888            Chicago           16     Washington          Mystics
## 1889            Chicago           16     Washington          Mystics
## 1890            Chicago           16     Washington          Mystics
## 1891            Chicago           16     Washington          Mystics
## 1892            Chicago           16     Washington          Mystics
## 1893            Chicago           16     Washington          Mystics
## 1894            Chicago           16     Washington          Mystics
## 1895            Chicago           16     Washington          Mystics
## 1896            Chicago           16     Washington          Mystics
## 1897            Chicago           16     Washington          Mystics
## 1898            Chicago           16     Washington          Mystics
## 1899            Chicago           16     Washington          Mystics
## 1900            Chicago           16     Washington          Mystics
## 1901            Chicago           16     Washington          Mystics
## 1902            Chicago           16     Washington          Mystics
## 1903            Chicago           16     Washington          Mystics
## 1904            Chicago           16     Washington          Mystics
## 1905            Chicago           16     Washington          Mystics
## 1906            Chicago           16     Washington          Mystics
## 1907            Chicago           16     Washington          Mystics
## 1908            Chicago           16     Washington          Mystics
## 1909            Chicago           16     Washington          Mystics
## 1910            Chicago           16     Washington          Mystics
## 1911            Chicago           16     Washington          Mystics
## 1912            Chicago           16     Washington          Mystics
## 1913            Chicago           16     Washington          Mystics
## 1914            Chicago           16     Washington          Mystics
## 1915            Chicago           16     Washington          Mystics
## 1916            Chicago           16     Washington          Mystics
## 1917            Chicago           16     Washington          Mystics
## 1918            Chicago           16     Washington          Mystics
## 1919            Chicago           16     Washington          Mystics
## 1920            Chicago           16     Washington          Mystics
## 1921            Chicago           16     Washington          Mystics
## 1922            Chicago           16     Washington          Mystics
## 1923            Chicago           16     Washington          Mystics
## 1924            Chicago           16     Washington          Mystics
## 1925            Chicago           16     Washington          Mystics
## 1926            Chicago           16     Washington          Mystics
## 1927            Chicago           16     Washington          Mystics
## 1928            Chicago           16     Washington          Mystics
## 1929            Chicago           16     Washington          Mystics
## 1930            Chicago           16     Washington          Mystics
## 1931            Chicago           16     Washington          Mystics
## 1932            Chicago           16     Washington          Mystics
## 1933            Chicago           16     Washington          Mystics
## 1934            Chicago           16     Washington          Mystics
## 1935            Chicago           16     Washington          Mystics
## 1936            Chicago           16     Washington          Mystics
## 1937            Chicago           16     Washington          Mystics
## 1938            Chicago           16     Washington          Mystics
## 1939            Chicago           16     Washington          Mystics
## 1940            Chicago           16     Washington          Mystics
## 1941            Chicago           16     Washington          Mystics
## 1942            Chicago           16     Washington          Mystics
## 1943            Chicago           16     Washington          Mystics
## 1944            Chicago           16     Washington          Mystics
## 1945            Chicago           16     Washington          Mystics
## 1946            Chicago           16     Washington          Mystics
## 1947            Chicago           16     Washington          Mystics
## 1948            Chicago           16     Washington          Mystics
## 1949            Chicago           16     Washington          Mystics
## 1950            Chicago           16     Washington          Mystics
## 1951            Chicago           16     Washington          Mystics
## 1952            Chicago           16     Washington          Mystics
## 1953            Chicago           16     Washington          Mystics
## 1954            Chicago           16     Washington          Mystics
## 1955            Chicago           16     Washington          Mystics
## 1956            Chicago           16     Washington          Mystics
## 1957            Chicago           16     Washington          Mystics
## 1958            Chicago           16     Washington          Mystics
## 1959            Chicago           16     Washington          Mystics
## 1960            Chicago           16     Washington          Mystics
## 1961            Chicago           16     Washington          Mystics
## 1962            Chicago           16     Washington          Mystics
## 1963            Chicago           16     Washington          Mystics
## 1964            Chicago           16     Washington          Mystics
## 1965            Chicago           16     Washington          Mystics
## 1966            Chicago           16     Washington          Mystics
## 1967            Chicago           16     Washington          Mystics
## 1968            Chicago           16     Washington          Mystics
## 1969            Chicago           16     Washington          Mystics
## 1970            Chicago           16     Washington          Mystics
## 1971            Chicago           16     Washington          Mystics
## 1972            Chicago           16     Washington          Mystics
## 1973            Chicago           16     Washington          Mystics
## 1974            Chicago           16     Washington          Mystics
## 1975            Chicago           16     Washington          Mystics
## 1976            Chicago           16     Washington          Mystics
## 1977            Chicago           16     Washington          Mystics
## 1978            Chicago           16     Washington          Mystics
## 1979            Chicago           16     Washington          Mystics
## 1980            Chicago           16     Washington          Mystics
## 1981            Chicago           16     Washington          Mystics
## 1982            Chicago           16     Washington          Mystics
## 1983            Chicago           16     Washington          Mystics
## 1984            Chicago           16     Washington          Mystics
## 1985            Chicago           16     Washington          Mystics
## 1986            Chicago           16     Washington          Mystics
## 1987            Chicago           16     Washington          Mystics
## 1988            Chicago           16     Washington          Mystics
## 1989            Chicago           16     Washington          Mystics
## 1990            Chicago           16     Washington          Mystics
## 1991            Chicago           16     Washington          Mystics
## 1992            Chicago           16     Washington          Mystics
## 1993            Chicago           16     Washington          Mystics
## 1994            Chicago           16     Washington          Mystics
## 1995            Chicago           16     Washington          Mystics
## 1996            Chicago           16     Washington          Mystics
## 1997            Chicago           16     Washington          Mystics
## 1998            Chicago           16     Washington          Mystics
## 1999            Chicago           16     Washington          Mystics
## 2000            Chicago           16     Washington          Mystics
## 2001            Chicago           16     Washington          Mystics
## 2002            Chicago           16     Washington          Mystics
## 2003            Chicago           16     Washington          Mystics
## 2004            Chicago           16     Washington          Mystics
## 2005            Chicago           16     Washington          Mystics
## 2006            Chicago           16     Washington          Mystics
## 2007            Chicago           16     Washington          Mystics
## 2008            Chicago           16     Washington          Mystics
## 2009            Chicago           16     Washington          Mystics
## 2010            Chicago           16     Washington          Mystics
## 2011            Chicago           16     Washington          Mystics
## 2012            Chicago           16     Washington          Mystics
## 2013            Chicago           16     Washington          Mystics
## 2014            Chicago           16     Washington          Mystics
## 2015            Chicago           16     Washington          Mystics
## 2016            Chicago           16     Washington          Mystics
## 2017            Chicago           16     Washington          Mystics
## 2018            Chicago           16     Washington          Mystics
## 2019            Chicago           16     Washington          Mystics
## 2020            Chicago           16     Washington          Mystics
## 2021            Chicago           16     Washington          Mystics
## 2022            Chicago           16     Washington          Mystics
## 2023            Chicago           16     Washington          Mystics
## 2024            Chicago           16     Washington          Mystics
## 2025            Chicago           16     Washington          Mystics
## 2026            Chicago           16     Washington          Mystics
## 2027            Chicago           16     Washington          Mystics
## 2028            Chicago           16     Washington          Mystics
## 2029            Chicago           16     Washington          Mystics
## 2030            Chicago           16     Washington          Mystics
## 2031            Chicago           16     Washington          Mystics
## 2032            Chicago           16     Washington          Mystics
## 2033            Chicago           16     Washington          Mystics
## 2034            Chicago           16     Washington          Mystics
## 2035            Chicago           16     Washington          Mystics
## 2036            Chicago           16     Washington          Mystics
## 2037            Chicago           16     Washington          Mystics
## 2038            Chicago           16     Washington          Mystics
## 2039          Las Vegas           14        Seattle            Storm
## 2040          Las Vegas           14        Seattle            Storm
## 2041          Las Vegas           14        Seattle            Storm
## 2042          Las Vegas           14        Seattle            Storm
## 2043          Las Vegas           14        Seattle            Storm
## 2044          Las Vegas           14        Seattle            Storm
## 2045          Las Vegas           14        Seattle            Storm
## 2046          Las Vegas           14        Seattle            Storm
## 2047          Las Vegas           14        Seattle            Storm
## 2048          Las Vegas           14        Seattle            Storm
## 2049          Las Vegas           14        Seattle            Storm
## 2050          Las Vegas           14        Seattle            Storm
## 2051          Las Vegas           14        Seattle            Storm
## 2052          Las Vegas           14        Seattle            Storm
## 2053          Las Vegas           14        Seattle            Storm
## 2054          Las Vegas           14        Seattle            Storm
## 2055          Las Vegas           14        Seattle            Storm
## 2056          Las Vegas           14        Seattle            Storm
## 2057          Las Vegas           14        Seattle            Storm
## 2058          Las Vegas           14        Seattle            Storm
## 2059          Las Vegas           14        Seattle            Storm
## 2060          Las Vegas           14        Seattle            Storm
## 2061          Las Vegas           14        Seattle            Storm
## 2062          Las Vegas           14        Seattle            Storm
## 2063          Las Vegas           14        Seattle            Storm
## 2064          Las Vegas           14        Seattle            Storm
## 2065          Las Vegas           14        Seattle            Storm
## 2066          Las Vegas           14        Seattle            Storm
## 2067          Las Vegas           14        Seattle            Storm
## 2068          Las Vegas           14        Seattle            Storm
## 2069          Las Vegas           14        Seattle            Storm
## 2070          Las Vegas           14        Seattle            Storm
## 2071          Las Vegas           14        Seattle            Storm
## 2072          Las Vegas           14        Seattle            Storm
## 2073          Las Vegas           14        Seattle            Storm
## 2074          Las Vegas           14        Seattle            Storm
## 2075          Las Vegas           14        Seattle            Storm
## 2076          Las Vegas           14        Seattle            Storm
## 2077          Las Vegas           14        Seattle            Storm
## 2078          Las Vegas           14        Seattle            Storm
## 2079          Las Vegas           14        Seattle            Storm
## 2080          Las Vegas           14        Seattle            Storm
## 2081          Las Vegas           14        Seattle            Storm
## 2082          Las Vegas           14        Seattle            Storm
## 2083          Las Vegas           14        Seattle            Storm
## 2084          Las Vegas           14        Seattle            Storm
## 2085          Las Vegas           14        Seattle            Storm
## 2086          Las Vegas           14        Seattle            Storm
## 2087          Las Vegas           14        Seattle            Storm
## 2088          Las Vegas           14        Seattle            Storm
## 2089          Las Vegas           14        Seattle            Storm
## 2090          Las Vegas           14        Seattle            Storm
## 2091          Las Vegas           14        Seattle            Storm
## 2092          Las Vegas           14        Seattle            Storm
## 2093          Las Vegas           14        Seattle            Storm
## 2094          Las Vegas           14        Seattle            Storm
## 2095          Las Vegas           14        Seattle            Storm
## 2096          Las Vegas           14        Seattle            Storm
## 2097          Las Vegas           14        Seattle            Storm
## 2098          Las Vegas           14        Seattle            Storm
## 2099          Las Vegas           14        Seattle            Storm
## 2100          Las Vegas           14        Seattle            Storm
## 2101          Las Vegas           14        Seattle            Storm
## 2102          Las Vegas           14        Seattle            Storm
## 2103          Las Vegas           14        Seattle            Storm
## 2104          Las Vegas           14        Seattle            Storm
## 2105          Las Vegas           14        Seattle            Storm
## 2106          Las Vegas           14        Seattle            Storm
## 2107          Las Vegas           14        Seattle            Storm
## 2108          Las Vegas           14        Seattle            Storm
## 2109          Las Vegas           14        Seattle            Storm
## 2110          Las Vegas           14        Seattle            Storm
## 2111          Las Vegas           14        Seattle            Storm
## 2112          Las Vegas           14        Seattle            Storm
## 2113          Las Vegas           14        Seattle            Storm
## 2114          Las Vegas           14        Seattle            Storm
## 2115          Las Vegas           14        Seattle            Storm
## 2116          Las Vegas           14        Seattle            Storm
## 2117          Las Vegas           14        Seattle            Storm
## 2118          Las Vegas           14        Seattle            Storm
## 2119          Las Vegas           14        Seattle            Storm
## 2120          Las Vegas           14        Seattle            Storm
## 2121          Las Vegas           14        Seattle            Storm
## 2122          Las Vegas           14        Seattle            Storm
## 2123          Las Vegas           14        Seattle            Storm
## 2124          Las Vegas           14        Seattle            Storm
## 2125          Las Vegas           14        Seattle            Storm
## 2126          Las Vegas           14        Seattle            Storm
## 2127          Las Vegas           14        Seattle            Storm
## 2128          Las Vegas           14        Seattle            Storm
## 2129          Las Vegas           14        Seattle            Storm
## 2130          Las Vegas           14        Seattle            Storm
## 2131          Las Vegas           14        Seattle            Storm
## 2132          Las Vegas           14        Seattle            Storm
## 2133          Las Vegas           14        Seattle            Storm
## 2134          Las Vegas           14        Seattle            Storm
## 2135          Las Vegas           14        Seattle            Storm
## 2136          Las Vegas           14        Seattle            Storm
## 2137          Las Vegas           14        Seattle            Storm
## 2138          Las Vegas           14        Seattle            Storm
## 2139          Las Vegas           14        Seattle            Storm
## 2140          Las Vegas           14        Seattle            Storm
## 2141          Las Vegas           14        Seattle            Storm
## 2142          Las Vegas           14        Seattle            Storm
## 2143          Las Vegas           14        Seattle            Storm
## 2144          Las Vegas           14        Seattle            Storm
## 2145          Las Vegas           14        Seattle            Storm
## 2146          Las Vegas           14        Seattle            Storm
## 2147          Las Vegas           14        Seattle            Storm
## 2148          Las Vegas           14        Seattle            Storm
## 2149          Las Vegas           14        Seattle            Storm
## 2150          Las Vegas           14        Seattle            Storm
## 2151          Las Vegas           14        Seattle            Storm
## 2152          Las Vegas           14        Seattle            Storm
## 2153          Las Vegas           14        Seattle            Storm
## 2154          Las Vegas           14        Seattle            Storm
## 2155          Las Vegas           14        Seattle            Storm
## 2156          Las Vegas           14        Seattle            Storm
## 2157          Las Vegas           14        Seattle            Storm
## 2158          Las Vegas           14        Seattle            Storm
## 2159          Las Vegas           14        Seattle            Storm
## 2160          Las Vegas           14        Seattle            Storm
## 2161          Las Vegas           14        Seattle            Storm
## 2162          Las Vegas           14        Seattle            Storm
## 2163          Las Vegas           14        Seattle            Storm
## 2164          Las Vegas           14        Seattle            Storm
## 2165          Las Vegas           14        Seattle            Storm
## 2166          Las Vegas           14        Seattle            Storm
## 2167          Las Vegas           14        Seattle            Storm
## 2168          Las Vegas           14        Seattle            Storm
## 2169          Las Vegas           14        Seattle            Storm
## 2170          Las Vegas           14        Seattle            Storm
## 2171          Las Vegas           14        Seattle            Storm
## 2172          Las Vegas           14        Seattle            Storm
## 2173          Las Vegas           14        Seattle            Storm
## 2174          Las Vegas           14        Seattle            Storm
## 2175          Las Vegas           14        Seattle            Storm
## 2176          Las Vegas           14        Seattle            Storm
## 2177          Las Vegas           14        Seattle            Storm
## 2178          Las Vegas           14        Seattle            Storm
## 2179          Las Vegas           14        Seattle            Storm
## 2180          Las Vegas           14        Seattle            Storm
## 2181          Las Vegas           14        Seattle            Storm
## 2182          Las Vegas           14        Seattle            Storm
## 2183          Las Vegas           14        Seattle            Storm
## 2184          Las Vegas           14        Seattle            Storm
## 2185          Las Vegas           14        Seattle            Storm
## 2186          Las Vegas           14        Seattle            Storm
## 2187          Las Vegas           14        Seattle            Storm
## 2188          Las Vegas           14        Seattle            Storm
## 2189          Las Vegas           14        Seattle            Storm
## 2190          Las Vegas           14        Seattle            Storm
## 2191          Las Vegas           14        Seattle            Storm
## 2192          Las Vegas           14        Seattle            Storm
## 2193          Las Vegas           14        Seattle            Storm
## 2194          Las Vegas           14        Seattle            Storm
## 2195          Las Vegas           14        Seattle            Storm
## 2196          Las Vegas           14        Seattle            Storm
## 2197          Las Vegas           14        Seattle            Storm
## 2198          Las Vegas           14        Seattle            Storm
## 2199          Las Vegas           14        Seattle            Storm
## 2200          Las Vegas           14        Seattle            Storm
## 2201          Las Vegas           14        Seattle            Storm
## 2202          Las Vegas           14        Seattle            Storm
## 2203          Las Vegas           14        Seattle            Storm
## 2204          Las Vegas           14        Seattle            Storm
## 2205          Las Vegas           14        Seattle            Storm
## 2206          Las Vegas           14        Seattle            Storm
## 2207          Las Vegas           14        Seattle            Storm
## 2208          Las Vegas           14        Seattle            Storm
## 2209          Las Vegas           14        Seattle            Storm
## 2210          Las Vegas           14        Seattle            Storm
## 2211          Las Vegas           14        Seattle            Storm
## 2212          Las Vegas           14        Seattle            Storm
## 2213          Las Vegas           14        Seattle            Storm
## 2214          Las Vegas           14        Seattle            Storm
## 2215          Las Vegas           14        Seattle            Storm
## 2216          Las Vegas           14        Seattle            Storm
## 2217          Las Vegas           14        Seattle            Storm
## 2218          Las Vegas           14        Seattle            Storm
## 2219          Las Vegas           14        Seattle            Storm
## 2220          Las Vegas           14        Seattle            Storm
## 2221          Las Vegas           14        Seattle            Storm
## 2222          Las Vegas           14        Seattle            Storm
## 2223          Las Vegas           14        Seattle            Storm
## 2224          Las Vegas           14        Seattle            Storm
## 2225          Las Vegas           14        Seattle            Storm
## 2226          Las Vegas           14        Seattle            Storm
## 2227          Las Vegas           14        Seattle            Storm
## 2228          Las Vegas           14        Seattle            Storm
## 2229          Las Vegas           14        Seattle            Storm
## 2230          Las Vegas           14        Seattle            Storm
## 2231          Las Vegas           14        Seattle            Storm
## 2232          Las Vegas           14        Seattle            Storm
## 2233          Las Vegas           14        Seattle            Storm
## 2234          Las Vegas           14        Seattle            Storm
## 2235          Las Vegas           14        Seattle            Storm
## 2236          Las Vegas           14        Seattle            Storm
## 2237          Las Vegas           14        Seattle            Storm
## 2238          Las Vegas           14        Seattle            Storm
## 2239          Las Vegas           14        Seattle            Storm
## 2240          Las Vegas           14        Seattle            Storm
## 2241          Las Vegas           14        Seattle            Storm
## 2242          Las Vegas           14        Seattle            Storm
## 2243          Las Vegas           14        Seattle            Storm
## 2244          Las Vegas           14        Seattle            Storm
## 2245          Las Vegas           14        Seattle            Storm
## 2246          Las Vegas           14        Seattle            Storm
## 2247          Las Vegas           14        Seattle            Storm
## 2248          Las Vegas           14        Seattle            Storm
## 2249          Las Vegas           14        Seattle            Storm
## 2250          Las Vegas           14        Seattle            Storm
## 2251          Las Vegas           14        Seattle            Storm
## 2252          Las Vegas           14        Seattle            Storm
## 2253          Las Vegas           14        Seattle            Storm
## 2254          Las Vegas           14        Seattle            Storm
## 2255          Las Vegas           14        Seattle            Storm
## 2256          Las Vegas           14        Seattle            Storm
## 2257          Las Vegas           14        Seattle            Storm
## 2258          Las Vegas           14        Seattle            Storm
## 2259          Las Vegas           14        Seattle            Storm
## 2260          Las Vegas           14        Seattle            Storm
## 2261          Las Vegas           14        Seattle            Storm
## 2262          Las Vegas           14        Seattle            Storm
## 2263          Las Vegas           14        Seattle            Storm
## 2264          Las Vegas           14        Seattle            Storm
## 2265          Las Vegas           14        Seattle            Storm
## 2266          Las Vegas           14        Seattle            Storm
## 2267          Las Vegas           14        Seattle            Storm
## 2268          Las Vegas           14        Seattle            Storm
## 2269          Las Vegas           14        Seattle            Storm
## 2270          Las Vegas           14        Seattle            Storm
## 2271          Las Vegas           14        Seattle            Storm
## 2272          Las Vegas           14        Seattle            Storm
## 2273          Las Vegas           14        Seattle            Storm
## 2274          Las Vegas           14        Seattle            Storm
## 2275          Las Vegas           14        Seattle            Storm
## 2276          Las Vegas           14        Seattle            Storm
## 2277          Las Vegas           14        Seattle            Storm
## 2278          Las Vegas           14        Seattle            Storm
## 2279          Las Vegas           14        Seattle            Storm
## 2280          Las Vegas           14        Seattle            Storm
## 2281          Las Vegas           14        Seattle            Storm
## 2282          Las Vegas           14        Seattle            Storm
## 2283          Las Vegas           14        Seattle            Storm
## 2284          Las Vegas           14        Seattle            Storm
## 2285          Las Vegas           14        Seattle            Storm
## 2286          Las Vegas           14        Seattle            Storm
## 2287          Las Vegas           14        Seattle            Storm
## 2288          Las Vegas           14        Seattle            Storm
## 2289          Las Vegas           14        Seattle            Storm
## 2290          Las Vegas           14        Seattle            Storm
## 2291          Las Vegas           14        Seattle            Storm
## 2292          Las Vegas           14        Seattle            Storm
## 2293          Las Vegas           14        Seattle            Storm
## 2294          Las Vegas           14        Seattle            Storm
## 2295          Las Vegas           14        Seattle            Storm
## 2296          Las Vegas           14        Seattle            Storm
## 2297          Las Vegas           14        Seattle            Storm
## 2298          Las Vegas           14        Seattle            Storm
## 2299          Las Vegas           14        Seattle            Storm
## 2300          Las Vegas           14        Seattle            Storm
## 2301          Las Vegas           14        Seattle            Storm
## 2302          Las Vegas           14        Seattle            Storm
## 2303          Las Vegas           14        Seattle            Storm
## 2304          Las Vegas           14        Seattle            Storm
## 2305          Las Vegas           14        Seattle            Storm
## 2306          Las Vegas           14        Seattle            Storm
## 2307          Las Vegas           14        Seattle            Storm
## 2308          Las Vegas           14        Seattle            Storm
## 2309          Las Vegas           14        Seattle            Storm
## 2310          Las Vegas           14        Seattle            Storm
## 2311          Las Vegas           14        Seattle            Storm
## 2312          Las Vegas           14        Seattle            Storm
## 2313          Las Vegas           14        Seattle            Storm
## 2314          Las Vegas           14        Seattle            Storm
## 2315          Las Vegas           14        Seattle            Storm
## 2316          Las Vegas           14        Seattle            Storm
## 2317          Las Vegas           14        Seattle            Storm
## 2318          Las Vegas           14        Seattle            Storm
## 2319          Las Vegas           14        Seattle            Storm
## 2320          Las Vegas           14        Seattle            Storm
## 2321          Las Vegas           14        Seattle            Storm
## 2322          Las Vegas           14        Seattle            Storm
## 2323          Las Vegas           14        Seattle            Storm
## 2324          Las Vegas           14        Seattle            Storm
## 2325          Las Vegas           14        Seattle            Storm
## 2326          Las Vegas           14        Seattle            Storm
## 2327          Las Vegas           14        Seattle            Storm
## 2328          Las Vegas           14        Seattle            Storm
## 2329          Las Vegas           14        Seattle            Storm
## 2330          Las Vegas           14        Seattle            Storm
## 2331          Las Vegas           14        Seattle            Storm
## 2332          Las Vegas           14        Seattle            Storm
## 2333          Las Vegas           14        Seattle            Storm
## 2334          Las Vegas           14        Seattle            Storm
## 2335          Las Vegas           14        Seattle            Storm
## 2336          Las Vegas           14        Seattle            Storm
## 2337          Las Vegas           14        Seattle            Storm
## 2338          Las Vegas           14        Seattle            Storm
## 2339          Las Vegas           14        Seattle            Storm
## 2340          Las Vegas           14        Seattle            Storm
## 2341          Las Vegas           14        Seattle            Storm
## 2342          Las Vegas           14        Seattle            Storm
## 2343          Las Vegas           14        Seattle            Storm
## 2344          Las Vegas           14        Seattle            Storm
## 2345          Las Vegas           14        Seattle            Storm
## 2346          Las Vegas           14        Seattle            Storm
## 2347          Las Vegas           14        Seattle            Storm
## 2348          Las Vegas           14        Seattle            Storm
## 2349          Las Vegas           14        Seattle            Storm
## 2350          Las Vegas           14        Seattle            Storm
## 2351          Las Vegas           14        Seattle            Storm
## 2352          Las Vegas           14        Seattle            Storm
## 2353          Las Vegas           14        Seattle            Storm
## 2354          Las Vegas           14        Seattle            Storm
## 2355          Las Vegas           14        Seattle            Storm
## 2356          Las Vegas           14        Seattle            Storm
## 2357          Las Vegas           14        Seattle            Storm
## 2358          Las Vegas           14        Seattle            Storm
## 2359          Las Vegas           14        Seattle            Storm
## 2360          Las Vegas           14        Seattle            Storm
## 2361          Las Vegas           14        Seattle            Storm
## 2362          Las Vegas           14        Seattle            Storm
## 2363          Las Vegas           14        Seattle            Storm
## 2364          Las Vegas           14        Seattle            Storm
## 2365          Las Vegas           14        Seattle            Storm
## 2366          Las Vegas           14        Seattle            Storm
## 2367          Las Vegas           14        Seattle            Storm
## 2368          Las Vegas           14        Seattle            Storm
## 2369          Las Vegas           14        Seattle            Storm
## 2370          Las Vegas           14        Seattle            Storm
## 2371          Las Vegas           14        Seattle            Storm
## 2372          Las Vegas           14        Seattle            Storm
## 2373          Las Vegas           14        Seattle            Storm
## 2374          Las Vegas           14        Seattle            Storm
## 2375          Las Vegas           14        Seattle            Storm
## 2376          Las Vegas           14        Seattle            Storm
## 2377          Las Vegas           14        Seattle            Storm
## 2378          Las Vegas           14        Seattle            Storm
## 2379          Las Vegas           14        Seattle            Storm
## 2380          Las Vegas           14        Seattle            Storm
##      home_team_abbrev home_team_name_alt home_team_spread game_spread
## 1                  NY           New York              2.5         2.5
## 2                  NY           New York              2.5         2.5
## 3                  NY           New York              2.5         2.5
## 4                  NY           New York              2.5         2.5
## 5                  NY           New York              2.5         2.5
## 6                  NY           New York              2.5         2.5
## 7                  NY           New York              2.5         2.5
## 8                  NY           New York              2.5         2.5
## 9                  NY           New York              2.5         2.5
## 10                 NY           New York              2.5         2.5
## 11                 NY           New York              2.5         2.5
## 12                 NY           New York              2.5         2.5
## 13                 NY           New York              2.5         2.5
## 14                 NY           New York              2.5         2.5
## 15                 NY           New York              2.5         2.5
## 16                 NY           New York              2.5         2.5
## 17                 NY           New York              2.5         2.5
## 18                 NY           New York              2.5         2.5
## 19                 NY           New York              2.5         2.5
## 20                 NY           New York              2.5         2.5
## 21                 NY           New York              2.5         2.5
## 22                 NY           New York              2.5         2.5
## 23                 NY           New York              2.5         2.5
## 24                 NY           New York              2.5         2.5
## 25                 NY           New York              2.5         2.5
## 26                 NY           New York              2.5         2.5
## 27                 NY           New York              2.5         2.5
## 28                 NY           New York              2.5         2.5
## 29                 NY           New York              2.5         2.5
## 30                 NY           New York              2.5         2.5
## 31                 NY           New York              2.5         2.5
## 32                 NY           New York              2.5         2.5
## 33                 NY           New York              2.5         2.5
## 34                 NY           New York              2.5         2.5
## 35                 NY           New York              2.5         2.5
## 36                 NY           New York              2.5         2.5
## 37                 NY           New York              2.5         2.5
## 38                 NY           New York              2.5         2.5
## 39                 NY           New York              2.5         2.5
## 40                 NY           New York              2.5         2.5
## 41                 NY           New York              2.5         2.5
## 42                 NY           New York              2.5         2.5
## 43                 NY           New York              2.5         2.5
## 44                 NY           New York              2.5         2.5
## 45                 NY           New York              2.5         2.5
## 46                 NY           New York              2.5         2.5
## 47                 NY           New York              2.5         2.5
## 48                 NY           New York              2.5         2.5
## 49                 NY           New York              2.5         2.5
## 50                 NY           New York              2.5         2.5
## 51                 NY           New York              2.5         2.5
## 52                 NY           New York              2.5         2.5
## 53                 NY           New York              2.5         2.5
## 54                 NY           New York              2.5         2.5
## 55                 NY           New York              2.5         2.5
## 56                 NY           New York              2.5         2.5
## 57                 NY           New York              2.5         2.5
## 58                 NY           New York              2.5         2.5
## 59                 NY           New York              2.5         2.5
## 60                 NY           New York              2.5         2.5
## 61                 NY           New York              2.5         2.5
## 62                 NY           New York              2.5         2.5
## 63                 NY           New York              2.5         2.5
## 64                 NY           New York              2.5         2.5
## 65                 NY           New York              2.5         2.5
## 66                 NY           New York              2.5         2.5
## 67                 NY           New York              2.5         2.5
## 68                 NY           New York              2.5         2.5
## 69                 NY           New York              2.5         2.5
## 70                 NY           New York              2.5         2.5
## 71                 NY           New York              2.5         2.5
## 72                 NY           New York              2.5         2.5
## 73                 NY           New York              2.5         2.5
## 74                 NY           New York              2.5         2.5
## 75                 NY           New York              2.5         2.5
## 76                 NY           New York              2.5         2.5
## 77                 NY           New York              2.5         2.5
## 78                 NY           New York              2.5         2.5
## 79                 NY           New York              2.5         2.5
## 80                 NY           New York              2.5         2.5
## 81                 NY           New York              2.5         2.5
## 82                 NY           New York              2.5         2.5
## 83                 NY           New York              2.5         2.5
## 84                 NY           New York              2.5         2.5
## 85                 NY           New York              2.5         2.5
## 86                 NY           New York              2.5         2.5
## 87                 NY           New York              2.5         2.5
## 88                 NY           New York              2.5         2.5
## 89                 NY           New York              2.5         2.5
## 90                 NY           New York              2.5         2.5
## 91                 NY           New York              2.5         2.5
## 92                 NY           New York              2.5         2.5
## 93                 NY           New York              2.5         2.5
## 94                 NY           New York              2.5         2.5
## 95                 NY           New York              2.5         2.5
## 96                 NY           New York              2.5         2.5
## 97                 NY           New York              2.5         2.5
## 98                 NY           New York              2.5         2.5
## 99                 NY           New York              2.5         2.5
## 100                NY           New York              2.5         2.5
## 101                NY           New York              2.5         2.5
## 102                NY           New York              2.5         2.5
## 103                NY           New York              2.5         2.5
## 104                NY           New York              2.5         2.5
## 105                NY           New York              2.5         2.5
## 106                NY           New York              2.5         2.5
## 107                NY           New York              2.5         2.5
## 108                NY           New York              2.5         2.5
## 109                NY           New York              2.5         2.5
## 110                NY           New York              2.5         2.5
## 111                NY           New York              2.5         2.5
## 112                NY           New York              2.5         2.5
## 113                NY           New York              2.5         2.5
## 114                NY           New York              2.5         2.5
## 115                NY           New York              2.5         2.5
## 116                NY           New York              2.5         2.5
## 117                NY           New York              2.5         2.5
## 118                NY           New York              2.5         2.5
## 119                NY           New York              2.5         2.5
## 120                NY           New York              2.5         2.5
## 121                NY           New York              2.5         2.5
## 122                NY           New York              2.5         2.5
## 123                NY           New York              2.5         2.5
## 124                NY           New York              2.5         2.5
## 125                NY           New York              2.5         2.5
## 126                NY           New York              2.5         2.5
## 127                NY           New York              2.5         2.5
## 128                NY           New York              2.5         2.5
## 129                NY           New York              2.5         2.5
## 130                NY           New York              2.5         2.5
## 131                NY           New York              2.5         2.5
## 132                NY           New York              2.5         2.5
## 133                NY           New York              2.5         2.5
## 134                NY           New York              2.5         2.5
## 135                NY           New York              2.5         2.5
## 136                NY           New York              2.5         2.5
## 137                NY           New York              2.5         2.5
## 138                NY           New York              2.5         2.5
## 139                NY           New York              2.5         2.5
## 140                NY           New York              2.5         2.5
## 141                NY           New York              2.5         2.5
## 142                NY           New York              2.5         2.5
## 143                NY           New York              2.5         2.5
## 144                NY           New York              2.5         2.5
## 145                NY           New York              2.5         2.5
## 146                NY           New York              2.5         2.5
## 147                NY           New York              2.5         2.5
## 148                NY           New York              2.5         2.5
## 149                NY           New York              2.5         2.5
## 150                NY           New York              2.5         2.5
## 151                NY           New York              2.5         2.5
## 152                NY           New York              2.5         2.5
## 153                NY           New York              2.5         2.5
## 154                NY           New York              2.5         2.5
## 155                NY           New York              2.5         2.5
## 156                NY           New York              2.5         2.5
## 157                NY           New York              2.5         2.5
## 158                NY           New York              2.5         2.5
## 159                NY           New York              2.5         2.5
## 160                NY           New York              2.5         2.5
## 161                NY           New York              2.5         2.5
## 162                NY           New York              2.5         2.5
## 163                NY           New York              2.5         2.5
## 164                NY           New York              2.5         2.5
## 165                NY           New York              2.5         2.5
## 166                NY           New York              2.5         2.5
## 167                NY           New York              2.5         2.5
## 168                NY           New York              2.5         2.5
## 169                NY           New York              2.5         2.5
## 170                NY           New York              2.5         2.5
## 171                NY           New York              2.5         2.5
## 172                NY           New York              2.5         2.5
## 173                NY           New York              2.5         2.5
## 174                NY           New York              2.5         2.5
## 175                NY           New York              2.5         2.5
## 176                NY           New York              2.5         2.5
## 177                NY           New York              2.5         2.5
## 178                NY           New York              2.5         2.5
## 179                NY           New York              2.5         2.5
## 180                NY           New York              2.5         2.5
## 181                NY           New York              2.5         2.5
## 182                NY           New York              2.5         2.5
## 183                NY           New York              2.5         2.5
## 184                NY           New York              2.5         2.5
## 185                NY           New York              2.5         2.5
## 186                NY           New York              2.5         2.5
## 187                NY           New York              2.5         2.5
## 188                NY           New York              2.5         2.5
## 189                NY           New York              2.5         2.5
## 190                NY           New York              2.5         2.5
## 191                NY           New York              2.5         2.5
## 192                NY           New York              2.5         2.5
## 193                NY           New York              2.5         2.5
## 194                NY           New York              2.5         2.5
## 195                NY           New York              2.5         2.5
## 196                NY           New York              2.5         2.5
## 197                NY           New York              2.5         2.5
## 198                NY           New York              2.5         2.5
## 199                NY           New York              2.5         2.5
## 200                NY           New York              2.5         2.5
## 201                NY           New York              2.5         2.5
## 202                NY           New York              2.5         2.5
## 203                NY           New York              2.5         2.5
## 204                NY           New York              2.5         2.5
## 205                NY           New York              2.5         2.5
## 206                NY           New York              2.5         2.5
## 207                NY           New York              2.5         2.5
## 208                NY           New York              2.5         2.5
## 209                NY           New York              2.5         2.5
## 210                NY           New York              2.5         2.5
## 211                NY           New York              2.5         2.5
## 212                NY           New York              2.5         2.5
## 213                NY           New York              2.5         2.5
## 214                NY           New York              2.5         2.5
## 215                NY           New York              2.5         2.5
## 216                NY           New York              2.5         2.5
## 217                NY           New York              2.5         2.5
## 218                NY           New York              2.5         2.5
## 219                NY           New York              2.5         2.5
## 220                NY           New York              2.5         2.5
## 221                NY           New York              2.5         2.5
## 222                NY           New York              2.5         2.5
## 223                NY           New York              2.5         2.5
## 224                NY           New York              2.5         2.5
## 225                NY           New York              2.5         2.5
## 226                NY           New York              2.5         2.5
## 227                NY           New York              2.5         2.5
## 228                NY           New York              2.5         2.5
## 229                NY           New York              2.5         2.5
## 230                NY           New York              2.5         2.5
## 231                NY           New York              2.5         2.5
## 232                NY           New York              2.5         2.5
## 233                NY           New York              2.5         2.5
## 234                NY           New York              2.5         2.5
## 235                NY           New York              2.5         2.5
## 236                NY           New York              2.5         2.5
## 237                NY           New York              2.5         2.5
## 238                NY           New York              2.5         2.5
## 239                NY           New York              2.5         2.5
## 240                NY           New York              2.5         2.5
## 241                NY           New York              2.5         2.5
## 242                NY           New York              2.5         2.5
## 243                NY           New York              2.5         2.5
## 244                NY           New York              2.5         2.5
## 245                NY           New York              2.5         2.5
## 246                NY           New York              2.5         2.5
## 247                NY           New York              2.5         2.5
## 248                NY           New York              2.5         2.5
## 249                NY           New York              2.5         2.5
## 250                NY           New York              2.5         2.5
## 251                NY           New York              2.5         2.5
## 252                NY           New York              2.5         2.5
## 253                NY           New York              2.5         2.5
## 254                NY           New York              2.5         2.5
## 255                NY           New York              2.5         2.5
## 256                NY           New York              2.5         2.5
## 257                NY           New York              2.5         2.5
## 258                NY           New York              2.5         2.5
## 259                NY           New York              2.5         2.5
## 260                NY           New York              2.5         2.5
## 261                NY           New York              2.5         2.5
## 262                NY           New York              2.5         2.5
## 263                NY           New York              2.5         2.5
## 264                NY           New York              2.5         2.5
## 265                NY           New York              2.5         2.5
## 266                NY           New York              2.5         2.5
## 267                NY           New York              2.5         2.5
## 268                NY           New York              2.5         2.5
## 269                NY           New York              2.5         2.5
## 270                NY           New York              2.5         2.5
## 271                NY           New York              2.5         2.5
## 272                NY           New York              2.5         2.5
## 273                NY           New York              2.5         2.5
## 274                NY           New York              2.5         2.5
## 275                NY           New York              2.5         2.5
## 276                NY           New York              2.5         2.5
## 277                NY           New York              2.5         2.5
## 278                NY           New York              2.5         2.5
## 279                NY           New York              2.5         2.5
## 280                NY           New York              2.5         2.5
## 281                NY           New York              2.5         2.5
## 282                NY           New York              2.5         2.5
## 283                NY           New York              2.5         2.5
## 284                NY           New York              2.5         2.5
## 285                NY           New York              2.5         2.5
## 286                NY           New York              2.5         2.5
## 287                NY           New York              2.5         2.5
## 288                NY           New York              2.5         2.5
## 289                NY           New York              2.5         2.5
## 290                NY           New York              2.5         2.5
## 291                NY           New York              2.5         2.5
## 292                NY           New York              2.5         2.5
## 293                NY           New York              2.5         2.5
## 294                NY           New York              2.5         2.5
## 295                NY           New York              2.5         2.5
## 296                NY           New York              2.5         2.5
## 297                NY           New York              2.5         2.5
## 298                NY           New York              2.5         2.5
## 299                NY           New York              2.5         2.5
## 300                NY           New York              2.5         2.5
## 301                NY           New York              2.5         2.5
## 302                NY           New York              2.5         2.5
## 303                NY           New York              2.5         2.5
## 304                NY           New York              2.5         2.5
## 305                NY           New York              2.5         2.5
## 306                NY           New York              2.5         2.5
## 307                NY           New York              2.5         2.5
## 308                NY           New York              2.5         2.5
## 309                NY           New York              2.5         2.5
## 310                NY           New York              2.5         2.5
## 311                NY           New York              2.5         2.5
## 312                NY           New York              2.5         2.5
## 313                NY           New York              2.5         2.5
## 314                NY           New York              2.5         2.5
## 315                NY           New York              2.5         2.5
## 316                NY           New York              2.5         2.5
## 317                NY           New York              2.5         2.5
## 318                NY           New York              2.5         2.5
## 319                NY           New York              2.5         2.5
## 320                NY           New York              2.5         2.5
## 321                NY           New York              2.5         2.5
## 322                NY           New York              2.5         2.5
## 323                NY           New York              2.5         2.5
## 324                NY           New York              2.5         2.5
## 325                NY           New York              2.5         2.5
## 326                NY           New York              2.5         2.5
## 327                NY           New York              2.5         2.5
## 328                NY           New York              2.5         2.5
## 329                NY           New York              2.5         2.5
## 330                NY           New York              2.5         2.5
## 331                NY           New York              2.5         2.5
## 332                NY           New York              2.5         2.5
## 333                NY           New York              2.5         2.5
## 334                NY           New York              2.5         2.5
## 335                NY           New York              2.5         2.5
## 336                NY           New York              2.5         2.5
## 337                NY           New York              2.5         2.5
## 338                NY           New York              2.5         2.5
## 339                NY           New York              2.5         2.5
## 340                NY           New York              2.5         2.5
## 341                NY           New York              2.5         2.5
## 342                NY           New York              2.5         2.5
## 343                NY           New York              2.5         2.5
## 344                NY           New York              2.5         2.5
## 345                NY           New York              2.5         2.5
## 346                NY           New York              2.5         2.5
## 347                NY           New York              2.5         2.5
## 348                NY           New York              2.5         2.5
## 349                NY           New York              2.5         2.5
## 350                NY           New York              2.5         2.5
## 351                NY           New York              2.5         2.5
## 352                NY           New York              2.5         2.5
## 353                NY           New York              2.5         2.5
## 354                NY           New York              2.5         2.5
## 355                NY           New York              2.5         2.5
## 356                NY           New York              2.5         2.5
## 357                NY           New York              2.5         2.5
## 358                NY           New York              2.5         2.5
## 359                NY           New York              2.5         2.5
## 360                NY           New York              2.5         2.5
## 361                NY           New York              2.5         2.5
## 362                NY           New York              2.5         2.5
## 363                NY           New York              2.5         2.5
## 364                NY           New York              2.5         2.5
## 365                NY           New York              2.5         2.5
## 366                NY           New York              2.5         2.5
## 367                NY           New York              2.5         2.5
## 368                NY           New York              2.5         2.5
## 369                NY           New York              2.5         2.5
## 370                NY           New York              2.5         2.5
## 371                NY           New York              2.5         2.5
## 372                NY           New York              2.5         2.5
## 373                NY           New York              2.5         2.5
## 374                NY           New York              2.5         2.5
## 375                NY           New York              2.5         2.5
## 376                NY           New York              2.5         2.5
## 377                NY           New York              2.5         2.5
## 378                NY           New York              2.5         2.5
## 379                NY           New York              2.5         2.5
## 380                NY           New York              2.5         2.5
## 381                NY           New York              2.5         2.5
## 382                NY           New York              2.5         2.5
## 383                NY           New York              2.5         2.5
## 384                NY           New York              2.5         2.5
## 385                NY           New York              2.5         2.5
## 386                NY           New York              2.5         2.5
## 387                NY           New York              2.5         2.5
## 388                NY           New York              2.5         2.5
## 389                NY           New York              2.5         2.5
## 390                NY           New York              2.5         2.5
## 391                NY           New York              2.5         2.5
## 392                NY           New York              2.5         2.5
## 393                NY           New York              2.5         2.5
## 394                NY           New York              2.5         2.5
## 395                NY           New York              2.5         2.5
## 396                NY           New York              2.5         2.5
## 397                NY           New York              2.5         2.5
## 398                NY           New York              2.5         2.5
## 399                NY           New York              2.5         2.5
## 400                NY           New York              2.5         2.5
## 401                NY           New York              2.5         2.5
## 402                NY           New York              2.5         2.5
## 403                NY           New York              2.5         2.5
## 404                NY           New York              2.5         2.5
## 405                NY           New York              2.5         2.5
## 406                NY           New York              2.5         2.5
## 407                NY           New York              2.5         2.5
## 408                NY           New York              2.5         2.5
## 409                NY           New York              2.5         2.5
## 410                NY           New York              2.5         2.5
## 411                NY           New York              2.5         2.5
## 412                NY           New York              2.5         2.5
## 413               ATL            Atlanta              2.5         2.5
## 414               ATL            Atlanta              2.5         2.5
## 415               ATL            Atlanta              2.5         2.5
## 416               ATL            Atlanta              2.5         2.5
## 417               ATL            Atlanta              2.5         2.5
## 418               ATL            Atlanta              2.5         2.5
## 419               ATL            Atlanta              2.5         2.5
## 420               ATL            Atlanta              2.5         2.5
## 421               ATL            Atlanta              2.5         2.5
## 422               ATL            Atlanta              2.5         2.5
## 423               ATL            Atlanta              2.5         2.5
## 424               ATL            Atlanta              2.5         2.5
## 425               ATL            Atlanta              2.5         2.5
## 426               ATL            Atlanta              2.5         2.5
## 427               ATL            Atlanta              2.5         2.5
## 428               ATL            Atlanta              2.5         2.5
## 429               ATL            Atlanta              2.5         2.5
## 430               ATL            Atlanta              2.5         2.5
## 431               ATL            Atlanta              2.5         2.5
## 432               ATL            Atlanta              2.5         2.5
## 433               ATL            Atlanta              2.5         2.5
## 434               ATL            Atlanta              2.5         2.5
## 435               ATL            Atlanta              2.5         2.5
## 436               ATL            Atlanta              2.5         2.5
## 437               ATL            Atlanta              2.5         2.5
## 438               ATL            Atlanta              2.5         2.5
## 439               ATL            Atlanta              2.5         2.5
## 440               ATL            Atlanta              2.5         2.5
## 441               ATL            Atlanta              2.5         2.5
## 442               ATL            Atlanta              2.5         2.5
## 443               ATL            Atlanta              2.5         2.5
## 444               ATL            Atlanta              2.5         2.5
## 445               ATL            Atlanta              2.5         2.5
## 446               ATL            Atlanta              2.5         2.5
## 447               ATL            Atlanta              2.5         2.5
## 448               ATL            Atlanta              2.5         2.5
## 449               ATL            Atlanta              2.5         2.5
## 450               ATL            Atlanta              2.5         2.5
## 451               ATL            Atlanta              2.5         2.5
## 452               ATL            Atlanta              2.5         2.5
## 453               ATL            Atlanta              2.5         2.5
## 454               ATL            Atlanta              2.5         2.5
## 455               ATL            Atlanta              2.5         2.5
## 456               ATL            Atlanta              2.5         2.5
## 457               ATL            Atlanta              2.5         2.5
## 458               ATL            Atlanta              2.5         2.5
## 459               ATL            Atlanta              2.5         2.5
## 460               ATL            Atlanta              2.5         2.5
## 461               ATL            Atlanta              2.5         2.5
## 462               ATL            Atlanta              2.5         2.5
## 463               ATL            Atlanta              2.5         2.5
## 464               ATL            Atlanta              2.5         2.5
## 465               ATL            Atlanta              2.5         2.5
## 466               ATL            Atlanta              2.5         2.5
## 467               ATL            Atlanta              2.5         2.5
## 468               ATL            Atlanta              2.5         2.5
## 469               ATL            Atlanta              2.5         2.5
## 470               ATL            Atlanta              2.5         2.5
## 471               ATL            Atlanta              2.5         2.5
## 472               ATL            Atlanta              2.5         2.5
## 473               ATL            Atlanta              2.5         2.5
## 474               ATL            Atlanta              2.5         2.5
## 475               ATL            Atlanta              2.5         2.5
## 476               ATL            Atlanta              2.5         2.5
## 477               ATL            Atlanta              2.5         2.5
## 478               ATL            Atlanta              2.5         2.5
## 479               ATL            Atlanta              2.5         2.5
## 480               ATL            Atlanta              2.5         2.5
## 481               ATL            Atlanta              2.5         2.5
## 482               ATL            Atlanta              2.5         2.5
## 483               ATL            Atlanta              2.5         2.5
## 484               ATL            Atlanta              2.5         2.5
## 485               ATL            Atlanta              2.5         2.5
## 486               ATL            Atlanta              2.5         2.5
## 487               ATL            Atlanta              2.5         2.5
## 488               ATL            Atlanta              2.5         2.5
## 489               ATL            Atlanta              2.5         2.5
## 490               ATL            Atlanta              2.5         2.5
## 491               ATL            Atlanta              2.5         2.5
## 492               ATL            Atlanta              2.5         2.5
## 493               ATL            Atlanta              2.5         2.5
## 494               ATL            Atlanta              2.5         2.5
## 495               ATL            Atlanta              2.5         2.5
## 496               ATL            Atlanta              2.5         2.5
## 497               ATL            Atlanta              2.5         2.5
## 498               ATL            Atlanta              2.5         2.5
## 499               ATL            Atlanta              2.5         2.5
## 500               ATL            Atlanta              2.5         2.5
## 501               ATL            Atlanta              2.5         2.5
## 502               ATL            Atlanta              2.5         2.5
## 503               ATL            Atlanta              2.5         2.5
## 504               ATL            Atlanta              2.5         2.5
## 505               ATL            Atlanta              2.5         2.5
## 506               ATL            Atlanta              2.5         2.5
## 507               ATL            Atlanta              2.5         2.5
## 508               ATL            Atlanta              2.5         2.5
## 509               ATL            Atlanta              2.5         2.5
## 510               ATL            Atlanta              2.5         2.5
## 511               ATL            Atlanta              2.5         2.5
## 512               ATL            Atlanta              2.5         2.5
## 513               ATL            Atlanta              2.5         2.5
## 514               ATL            Atlanta              2.5         2.5
## 515               ATL            Atlanta              2.5         2.5
## 516               ATL            Atlanta              2.5         2.5
## 517               ATL            Atlanta              2.5         2.5
## 518               ATL            Atlanta              2.5         2.5
## 519               ATL            Atlanta              2.5         2.5
## 520               ATL            Atlanta              2.5         2.5
## 521               ATL            Atlanta              2.5         2.5
## 522               ATL            Atlanta              2.5         2.5
## 523               ATL            Atlanta              2.5         2.5
## 524               ATL            Atlanta              2.5         2.5
## 525               ATL            Atlanta              2.5         2.5
## 526               ATL            Atlanta              2.5         2.5
## 527               ATL            Atlanta              2.5         2.5
## 528               ATL            Atlanta              2.5         2.5
## 529               ATL            Atlanta              2.5         2.5
## 530               ATL            Atlanta              2.5         2.5
## 531               ATL            Atlanta              2.5         2.5
## 532               ATL            Atlanta              2.5         2.5
## 533               ATL            Atlanta              2.5         2.5
## 534               ATL            Atlanta              2.5         2.5
## 535               ATL            Atlanta              2.5         2.5
## 536               ATL            Atlanta              2.5         2.5
## 537               ATL            Atlanta              2.5         2.5
## 538               ATL            Atlanta              2.5         2.5
## 539               ATL            Atlanta              2.5         2.5
## 540               ATL            Atlanta              2.5         2.5
## 541               ATL            Atlanta              2.5         2.5
## 542               ATL            Atlanta              2.5         2.5
## 543               ATL            Atlanta              2.5         2.5
## 544               ATL            Atlanta              2.5         2.5
## 545               ATL            Atlanta              2.5         2.5
## 546               ATL            Atlanta              2.5         2.5
## 547               ATL            Atlanta              2.5         2.5
## 548               ATL            Atlanta              2.5         2.5
## 549               ATL            Atlanta              2.5         2.5
## 550               ATL            Atlanta              2.5         2.5
## 551               ATL            Atlanta              2.5         2.5
## 552               ATL            Atlanta              2.5         2.5
## 553               ATL            Atlanta              2.5         2.5
## 554               ATL            Atlanta              2.5         2.5
## 555               ATL            Atlanta              2.5         2.5
## 556               ATL            Atlanta              2.5         2.5
## 557               ATL            Atlanta              2.5         2.5
## 558               ATL            Atlanta              2.5         2.5
## 559               ATL            Atlanta              2.5         2.5
## 560               ATL            Atlanta              2.5         2.5
## 561               ATL            Atlanta              2.5         2.5
## 562               ATL            Atlanta              2.5         2.5
## 563               ATL            Atlanta              2.5         2.5
## 564               ATL            Atlanta              2.5         2.5
## 565               ATL            Atlanta              2.5         2.5
## 566               ATL            Atlanta              2.5         2.5
## 567               ATL            Atlanta              2.5         2.5
## 568               ATL            Atlanta              2.5         2.5
## 569               ATL            Atlanta              2.5         2.5
## 570               ATL            Atlanta              2.5         2.5
## 571               ATL            Atlanta              2.5         2.5
## 572               ATL            Atlanta              2.5         2.5
## 573               ATL            Atlanta              2.5         2.5
## 574               ATL            Atlanta              2.5         2.5
## 575               ATL            Atlanta              2.5         2.5
## 576               ATL            Atlanta              2.5         2.5
## 577               ATL            Atlanta              2.5         2.5
## 578               ATL            Atlanta              2.5         2.5
## 579               ATL            Atlanta              2.5         2.5
## 580               ATL            Atlanta              2.5         2.5
## 581               ATL            Atlanta              2.5         2.5
## 582               ATL            Atlanta              2.5         2.5
## 583               ATL            Atlanta              2.5         2.5
## 584               ATL            Atlanta              2.5         2.5
## 585               ATL            Atlanta              2.5         2.5
## 586               ATL            Atlanta              2.5         2.5
## 587               ATL            Atlanta              2.5         2.5
## 588               ATL            Atlanta              2.5         2.5
## 589               ATL            Atlanta              2.5         2.5
## 590               ATL            Atlanta              2.5         2.5
## 591               ATL            Atlanta              2.5         2.5
## 592               ATL            Atlanta              2.5         2.5
## 593               ATL            Atlanta              2.5         2.5
## 594               ATL            Atlanta              2.5         2.5
## 595               ATL            Atlanta              2.5         2.5
## 596               ATL            Atlanta              2.5         2.5
## 597               ATL            Atlanta              2.5         2.5
## 598               ATL            Atlanta              2.5         2.5
## 599               ATL            Atlanta              2.5         2.5
## 600               ATL            Atlanta              2.5         2.5
## 601               ATL            Atlanta              2.5         2.5
## 602               ATL            Atlanta              2.5         2.5
## 603               ATL            Atlanta              2.5         2.5
## 604               ATL            Atlanta              2.5         2.5
## 605               ATL            Atlanta              2.5         2.5
## 606               ATL            Atlanta              2.5         2.5
## 607               ATL            Atlanta              2.5         2.5
## 608               ATL            Atlanta              2.5         2.5
## 609               ATL            Atlanta              2.5         2.5
## 610               ATL            Atlanta              2.5         2.5
## 611               ATL            Atlanta              2.5         2.5
## 612               ATL            Atlanta              2.5         2.5
## 613               ATL            Atlanta              2.5         2.5
## 614               ATL            Atlanta              2.5         2.5
## 615               ATL            Atlanta              2.5         2.5
## 616               ATL            Atlanta              2.5         2.5
## 617               ATL            Atlanta              2.5         2.5
## 618               ATL            Atlanta              2.5         2.5
## 619               ATL            Atlanta              2.5         2.5
## 620               ATL            Atlanta              2.5         2.5
## 621               ATL            Atlanta              2.5         2.5
## 622               ATL            Atlanta              2.5         2.5
## 623               ATL            Atlanta              2.5         2.5
## 624               ATL            Atlanta              2.5         2.5
## 625               ATL            Atlanta              2.5         2.5
## 626               ATL            Atlanta              2.5         2.5
## 627               ATL            Atlanta              2.5         2.5
## 628               ATL            Atlanta              2.5         2.5
## 629               ATL            Atlanta              2.5         2.5
## 630               ATL            Atlanta              2.5         2.5
## 631               ATL            Atlanta              2.5         2.5
## 632               ATL            Atlanta              2.5         2.5
## 633               ATL            Atlanta              2.5         2.5
## 634               ATL            Atlanta              2.5         2.5
## 635               ATL            Atlanta              2.5         2.5
## 636               ATL            Atlanta              2.5         2.5
## 637               ATL            Atlanta              2.5         2.5
## 638               ATL            Atlanta              2.5         2.5
## 639               ATL            Atlanta              2.5         2.5
## 640               ATL            Atlanta              2.5         2.5
## 641               ATL            Atlanta              2.5         2.5
## 642               ATL            Atlanta              2.5         2.5
## 643               ATL            Atlanta              2.5         2.5
## 644               ATL            Atlanta              2.5         2.5
## 645               ATL            Atlanta              2.5         2.5
## 646               ATL            Atlanta              2.5         2.5
## 647               ATL            Atlanta              2.5         2.5
## 648               ATL            Atlanta              2.5         2.5
## 649               ATL            Atlanta              2.5         2.5
## 650               ATL            Atlanta              2.5         2.5
## 651               ATL            Atlanta              2.5         2.5
## 652               ATL            Atlanta              2.5         2.5
## 653               ATL            Atlanta              2.5         2.5
## 654               ATL            Atlanta              2.5         2.5
## 655               ATL            Atlanta              2.5         2.5
## 656               ATL            Atlanta              2.5         2.5
## 657               ATL            Atlanta              2.5         2.5
## 658               ATL            Atlanta              2.5         2.5
## 659               ATL            Atlanta              2.5         2.5
## 660               ATL            Atlanta              2.5         2.5
## 661               ATL            Atlanta              2.5         2.5
## 662               ATL            Atlanta              2.5         2.5
## 663               ATL            Atlanta              2.5         2.5
## 664               ATL            Atlanta              2.5         2.5
## 665               ATL            Atlanta              2.5         2.5
## 666               ATL            Atlanta              2.5         2.5
## 667               ATL            Atlanta              2.5         2.5
## 668               ATL            Atlanta              2.5         2.5
## 669               ATL            Atlanta              2.5         2.5
## 670               ATL            Atlanta              2.5         2.5
## 671               ATL            Atlanta              2.5         2.5
## 672               ATL            Atlanta              2.5         2.5
## 673               ATL            Atlanta              2.5         2.5
## 674               ATL            Atlanta              2.5         2.5
## 675               ATL            Atlanta              2.5         2.5
## 676               ATL            Atlanta              2.5         2.5
## 677               ATL            Atlanta              2.5         2.5
## 678               ATL            Atlanta              2.5         2.5
## 679               ATL            Atlanta              2.5         2.5
## 680               ATL            Atlanta              2.5         2.5
## 681               ATL            Atlanta              2.5         2.5
## 682               ATL            Atlanta              2.5         2.5
## 683               ATL            Atlanta              2.5         2.5
## 684               ATL            Atlanta              2.5         2.5
## 685               ATL            Atlanta              2.5         2.5
## 686               ATL            Atlanta              2.5         2.5
## 687               ATL            Atlanta              2.5         2.5
## 688               ATL            Atlanta              2.5         2.5
## 689               ATL            Atlanta              2.5         2.5
## 690               ATL            Atlanta              2.5         2.5
## 691               ATL            Atlanta              2.5         2.5
## 692               ATL            Atlanta              2.5         2.5
## 693               ATL            Atlanta              2.5         2.5
## 694               ATL            Atlanta              2.5         2.5
## 695               ATL            Atlanta              2.5         2.5
## 696               ATL            Atlanta              2.5         2.5
## 697               ATL            Atlanta              2.5         2.5
## 698               ATL            Atlanta              2.5         2.5
## 699               ATL            Atlanta              2.5         2.5
## 700               ATL            Atlanta              2.5         2.5
## 701               ATL            Atlanta              2.5         2.5
## 702               ATL            Atlanta              2.5         2.5
## 703               ATL            Atlanta              2.5         2.5
## 704               ATL            Atlanta              2.5         2.5
## 705               ATL            Atlanta              2.5         2.5
## 706               ATL            Atlanta              2.5         2.5
## 707               ATL            Atlanta              2.5         2.5
## 708               ATL            Atlanta              2.5         2.5
## 709               ATL            Atlanta              2.5         2.5
## 710               ATL            Atlanta              2.5         2.5
## 711               ATL            Atlanta              2.5         2.5
## 712               ATL            Atlanta              2.5         2.5
## 713               ATL            Atlanta              2.5         2.5
## 714               ATL            Atlanta              2.5         2.5
## 715               ATL            Atlanta              2.5         2.5
## 716               ATL            Atlanta              2.5         2.5
## 717               ATL            Atlanta              2.5         2.5
## 718               ATL            Atlanta              2.5         2.5
## 719               ATL            Atlanta              2.5         2.5
## 720               ATL            Atlanta              2.5         2.5
## 721               ATL            Atlanta              2.5         2.5
## 722               ATL            Atlanta              2.5         2.5
## 723               ATL            Atlanta              2.5         2.5
## 724               ATL            Atlanta              2.5         2.5
## 725               ATL            Atlanta              2.5         2.5
## 726               ATL            Atlanta              2.5         2.5
## 727               ATL            Atlanta              2.5         2.5
## 728               ATL            Atlanta              2.5         2.5
## 729               ATL            Atlanta              2.5         2.5
## 730               ATL            Atlanta              2.5         2.5
## 731               ATL            Atlanta              2.5         2.5
## 732               ATL            Atlanta              2.5         2.5
## 733               ATL            Atlanta              2.5         2.5
## 734               ATL            Atlanta              2.5         2.5
## 735               ATL            Atlanta              2.5         2.5
## 736               ATL            Atlanta              2.5         2.5
## 737               ATL            Atlanta              2.5         2.5
## 738               ATL            Atlanta              2.5         2.5
## 739               ATL            Atlanta              2.5         2.5
## 740               ATL            Atlanta              2.5         2.5
## 741               ATL            Atlanta              2.5         2.5
## 742               ATL            Atlanta              2.5         2.5
## 743               ATL            Atlanta              2.5         2.5
## 744               ATL            Atlanta              2.5         2.5
## 745               ATL            Atlanta              2.5         2.5
## 746               ATL            Atlanta              2.5         2.5
## 747               ATL            Atlanta              2.5         2.5
## 748               ATL            Atlanta              2.5         2.5
## 749               ATL            Atlanta              2.5         2.5
## 750               ATL            Atlanta              2.5         2.5
## 751               ATL            Atlanta              2.5         2.5
## 752               ATL            Atlanta              2.5         2.5
## 753               ATL            Atlanta              2.5         2.5
## 754               ATL            Atlanta              2.5         2.5
## 755               ATL            Atlanta              2.5         2.5
## 756               ATL            Atlanta              2.5         2.5
## 757               ATL            Atlanta              2.5         2.5
## 758               ATL            Atlanta              2.5         2.5
## 759               ATL            Atlanta              2.5         2.5
## 760               ATL            Atlanta              2.5         2.5
## 761               ATL            Atlanta              2.5         2.5
## 762               ATL            Atlanta              2.5         2.5
## 763               ATL            Atlanta              2.5         2.5
## 764               ATL            Atlanta              2.5         2.5
## 765               ATL            Atlanta              2.5         2.5
## 766               ATL            Atlanta              2.5         2.5
## 767               ATL            Atlanta              2.5         2.5
## 768               ATL            Atlanta              2.5         2.5
## 769               ATL            Atlanta              2.5         2.5
## 770               ATL            Atlanta              2.5         2.5
## 771               ATL            Atlanta              2.5         2.5
## 772               ATL            Atlanta              2.5         2.5
## 773               ATL            Atlanta              2.5         2.5
## 774               ATL            Atlanta              2.5         2.5
## 775               ATL            Atlanta              2.5         2.5
## 776               ATL            Atlanta              2.5         2.5
## 777               ATL            Atlanta              2.5         2.5
## 778               ATL            Atlanta              2.5         2.5
## 779               ATL            Atlanta              2.5         2.5
## 780               ATL            Atlanta              2.5         2.5
## 781               ATL            Atlanta              2.5         2.5
## 782               ATL            Atlanta              2.5         2.5
## 783               ATL            Atlanta              2.5         2.5
## 784               ATL            Atlanta              2.5         2.5
## 785               ATL            Atlanta              2.5         2.5
## 786               ATL            Atlanta              2.5         2.5
## 787               ATL            Atlanta              2.5         2.5
## 788               ATL            Atlanta              2.5         2.5
## 789               ATL            Atlanta              2.5         2.5
## 790               ATL            Atlanta              2.5         2.5
## 791               ATL            Atlanta              2.5         2.5
## 792               ATL            Atlanta              2.5         2.5
## 793               ATL            Atlanta              2.5         2.5
## 794               ATL            Atlanta              2.5         2.5
## 795               ATL            Atlanta              2.5         2.5
## 796               ATL            Atlanta              2.5         2.5
## 797               ATL            Atlanta              2.5         2.5
## 798               ATL            Atlanta              2.5         2.5
## 799               ATL            Atlanta              2.5         2.5
## 800               MIN          Minnesota              2.5         2.5
## 801               MIN          Minnesota              2.5         2.5
## 802               MIN          Minnesota              2.5         2.5
## 803               MIN          Minnesota              2.5         2.5
## 804               MIN          Minnesota              2.5         2.5
## 805               MIN          Minnesota              2.5         2.5
## 806               MIN          Minnesota              2.5         2.5
## 807               MIN          Minnesota              2.5         2.5
## 808               MIN          Minnesota              2.5         2.5
## 809               MIN          Minnesota              2.5         2.5
## 810               MIN          Minnesota              2.5         2.5
## 811               MIN          Minnesota              2.5         2.5
## 812               MIN          Minnesota              2.5         2.5
## 813               MIN          Minnesota              2.5         2.5
## 814               MIN          Minnesota              2.5         2.5
## 815               MIN          Minnesota              2.5         2.5
## 816               MIN          Minnesota              2.5         2.5
## 817               MIN          Minnesota              2.5         2.5
## 818               MIN          Minnesota              2.5         2.5
## 819               MIN          Minnesota              2.5         2.5
## 820               MIN          Minnesota              2.5         2.5
## 821               MIN          Minnesota              2.5         2.5
## 822               MIN          Minnesota              2.5         2.5
## 823               MIN          Minnesota              2.5         2.5
## 824               MIN          Minnesota              2.5         2.5
## 825               MIN          Minnesota              2.5         2.5
## 826               MIN          Minnesota              2.5         2.5
## 827               MIN          Minnesota              2.5         2.5
## 828               MIN          Minnesota              2.5         2.5
## 829               MIN          Minnesota              2.5         2.5
## 830               MIN          Minnesota              2.5         2.5
## 831               MIN          Minnesota              2.5         2.5
## 832               MIN          Minnesota              2.5         2.5
## 833               MIN          Minnesota              2.5         2.5
## 834               MIN          Minnesota              2.5         2.5
## 835               MIN          Minnesota              2.5         2.5
## 836               MIN          Minnesota              2.5         2.5
## 837               MIN          Minnesota              2.5         2.5
## 838               MIN          Minnesota              2.5         2.5
## 839               MIN          Minnesota              2.5         2.5
## 840               MIN          Minnesota              2.5         2.5
## 841               MIN          Minnesota              2.5         2.5
## 842               MIN          Minnesota              2.5         2.5
## 843               MIN          Minnesota              2.5         2.5
## 844               MIN          Minnesota              2.5         2.5
## 845               MIN          Minnesota              2.5         2.5
## 846               MIN          Minnesota              2.5         2.5
## 847               MIN          Minnesota              2.5         2.5
## 848               MIN          Minnesota              2.5         2.5
## 849               MIN          Minnesota              2.5         2.5
## 850               MIN          Minnesota              2.5         2.5
## 851               MIN          Minnesota              2.5         2.5
## 852               MIN          Minnesota              2.5         2.5
## 853               MIN          Minnesota              2.5         2.5
## 854               MIN          Minnesota              2.5         2.5
## 855               MIN          Minnesota              2.5         2.5
## 856               MIN          Minnesota              2.5         2.5
## 857               MIN          Minnesota              2.5         2.5
## 858               MIN          Minnesota              2.5         2.5
## 859               MIN          Minnesota              2.5         2.5
## 860               MIN          Minnesota              2.5         2.5
## 861               MIN          Minnesota              2.5         2.5
## 862               MIN          Minnesota              2.5         2.5
## 863               MIN          Minnesota              2.5         2.5
## 864               MIN          Minnesota              2.5         2.5
## 865               MIN          Minnesota              2.5         2.5
## 866               MIN          Minnesota              2.5         2.5
## 867               MIN          Minnesota              2.5         2.5
## 868               MIN          Minnesota              2.5         2.5
## 869               MIN          Minnesota              2.5         2.5
## 870               MIN          Minnesota              2.5         2.5
## 871               MIN          Minnesota              2.5         2.5
## 872               MIN          Minnesota              2.5         2.5
## 873               MIN          Minnesota              2.5         2.5
## 874               MIN          Minnesota              2.5         2.5
## 875               MIN          Minnesota              2.5         2.5
## 876               MIN          Minnesota              2.5         2.5
## 877               MIN          Minnesota              2.5         2.5
## 878               MIN          Minnesota              2.5         2.5
## 879               MIN          Minnesota              2.5         2.5
## 880               MIN          Minnesota              2.5         2.5
## 881               MIN          Minnesota              2.5         2.5
## 882               MIN          Minnesota              2.5         2.5
## 883               MIN          Minnesota              2.5         2.5
## 884               MIN          Minnesota              2.5         2.5
## 885               MIN          Minnesota              2.5         2.5
## 886               MIN          Minnesota              2.5         2.5
## 887               MIN          Minnesota              2.5         2.5
## 888               MIN          Minnesota              2.5         2.5
## 889               MIN          Minnesota              2.5         2.5
## 890               MIN          Minnesota              2.5         2.5
## 891               MIN          Minnesota              2.5         2.5
## 892               MIN          Minnesota              2.5         2.5
## 893               MIN          Minnesota              2.5         2.5
## 894               MIN          Minnesota              2.5         2.5
## 895               MIN          Minnesota              2.5         2.5
## 896               MIN          Minnesota              2.5         2.5
## 897               MIN          Minnesota              2.5         2.5
## 898               MIN          Minnesota              2.5         2.5
## 899               MIN          Minnesota              2.5         2.5
## 900               MIN          Minnesota              2.5         2.5
## 901               MIN          Minnesota              2.5         2.5
## 902               MIN          Minnesota              2.5         2.5
## 903               MIN          Minnesota              2.5         2.5
## 904               MIN          Minnesota              2.5         2.5
## 905               MIN          Minnesota              2.5         2.5
## 906               MIN          Minnesota              2.5         2.5
## 907               MIN          Minnesota              2.5         2.5
## 908               MIN          Minnesota              2.5         2.5
## 909               MIN          Minnesota              2.5         2.5
## 910               MIN          Minnesota              2.5         2.5
## 911               MIN          Minnesota              2.5         2.5
## 912               MIN          Minnesota              2.5         2.5
## 913               MIN          Minnesota              2.5         2.5
## 914               MIN          Minnesota              2.5         2.5
## 915               MIN          Minnesota              2.5         2.5
## 916               MIN          Minnesota              2.5         2.5
## 917               MIN          Minnesota              2.5         2.5
## 918               MIN          Minnesota              2.5         2.5
## 919               MIN          Minnesota              2.5         2.5
## 920               MIN          Minnesota              2.5         2.5
## 921               MIN          Minnesota              2.5         2.5
## 922               MIN          Minnesota              2.5         2.5
## 923               MIN          Minnesota              2.5         2.5
## 924               MIN          Minnesota              2.5         2.5
## 925               MIN          Minnesota              2.5         2.5
## 926               MIN          Minnesota              2.5         2.5
## 927               MIN          Minnesota              2.5         2.5
## 928               MIN          Minnesota              2.5         2.5
## 929               MIN          Minnesota              2.5         2.5
## 930               MIN          Minnesota              2.5         2.5
## 931               MIN          Minnesota              2.5         2.5
## 932               MIN          Minnesota              2.5         2.5
## 933               MIN          Minnesota              2.5         2.5
## 934               MIN          Minnesota              2.5         2.5
## 935               MIN          Minnesota              2.5         2.5
## 936               MIN          Minnesota              2.5         2.5
## 937               MIN          Minnesota              2.5         2.5
## 938               MIN          Minnesota              2.5         2.5
## 939               MIN          Minnesota              2.5         2.5
## 940               MIN          Minnesota              2.5         2.5
## 941               MIN          Minnesota              2.5         2.5
## 942               MIN          Minnesota              2.5         2.5
## 943               MIN          Minnesota              2.5         2.5
## 944               MIN          Minnesota              2.5         2.5
## 945               MIN          Minnesota              2.5         2.5
## 946               MIN          Minnesota              2.5         2.5
## 947               MIN          Minnesota              2.5         2.5
## 948               MIN          Minnesota              2.5         2.5
## 949               MIN          Minnesota              2.5         2.5
## 950               MIN          Minnesota              2.5         2.5
## 951               MIN          Minnesota              2.5         2.5
## 952               MIN          Minnesota              2.5         2.5
## 953               MIN          Minnesota              2.5         2.5
## 954               MIN          Minnesota              2.5         2.5
## 955               MIN          Minnesota              2.5         2.5
## 956               MIN          Minnesota              2.5         2.5
## 957               MIN          Minnesota              2.5         2.5
## 958               MIN          Minnesota              2.5         2.5
## 959               MIN          Minnesota              2.5         2.5
## 960               MIN          Minnesota              2.5         2.5
## 961               MIN          Minnesota              2.5         2.5
## 962               MIN          Minnesota              2.5         2.5
## 963               MIN          Minnesota              2.5         2.5
## 964               MIN          Minnesota              2.5         2.5
## 965               MIN          Minnesota              2.5         2.5
## 966               MIN          Minnesota              2.5         2.5
## 967               MIN          Minnesota              2.5         2.5
## 968               MIN          Minnesota              2.5         2.5
## 969               MIN          Minnesota              2.5         2.5
## 970               MIN          Minnesota              2.5         2.5
## 971               MIN          Minnesota              2.5         2.5
## 972               MIN          Minnesota              2.5         2.5
## 973               MIN          Minnesota              2.5         2.5
## 974               MIN          Minnesota              2.5         2.5
## 975               MIN          Minnesota              2.5         2.5
## 976               MIN          Minnesota              2.5         2.5
## 977               MIN          Minnesota              2.5         2.5
## 978               MIN          Minnesota              2.5         2.5
## 979               MIN          Minnesota              2.5         2.5
## 980               MIN          Minnesota              2.5         2.5
## 981               MIN          Minnesota              2.5         2.5
## 982               MIN          Minnesota              2.5         2.5
## 983               MIN          Minnesota              2.5         2.5
## 984               MIN          Minnesota              2.5         2.5
## 985               MIN          Minnesota              2.5         2.5
## 986               MIN          Minnesota              2.5         2.5
## 987               MIN          Minnesota              2.5         2.5
## 988               MIN          Minnesota              2.5         2.5
## 989               MIN          Minnesota              2.5         2.5
## 990               MIN          Minnesota              2.5         2.5
## 991               MIN          Minnesota              2.5         2.5
## 992               MIN          Minnesota              2.5         2.5
## 993               MIN          Minnesota              2.5         2.5
## 994               MIN          Minnesota              2.5         2.5
## 995               MIN          Minnesota              2.5         2.5
## 996               MIN          Minnesota              2.5         2.5
## 997               MIN          Minnesota              2.5         2.5
## 998               MIN          Minnesota              2.5         2.5
## 999               MIN          Minnesota              2.5         2.5
## 1000              MIN          Minnesota              2.5         2.5
## 1001              MIN          Minnesota              2.5         2.5
## 1002              MIN          Minnesota              2.5         2.5
## 1003              MIN          Minnesota              2.5         2.5
## 1004              MIN          Minnesota              2.5         2.5
## 1005              MIN          Minnesota              2.5         2.5
## 1006              MIN          Minnesota              2.5         2.5
## 1007              MIN          Minnesota              2.5         2.5
## 1008              MIN          Minnesota              2.5         2.5
## 1009              MIN          Minnesota              2.5         2.5
## 1010              MIN          Minnesota              2.5         2.5
## 1011              MIN          Minnesota              2.5         2.5
## 1012              MIN          Minnesota              2.5         2.5
## 1013              MIN          Minnesota              2.5         2.5
## 1014              MIN          Minnesota              2.5         2.5
## 1015              MIN          Minnesota              2.5         2.5
## 1016              MIN          Minnesota              2.5         2.5
## 1017              MIN          Minnesota              2.5         2.5
## 1018              MIN          Minnesota              2.5         2.5
## 1019              MIN          Minnesota              2.5         2.5
## 1020              MIN          Minnesota              2.5         2.5
## 1021              MIN          Minnesota              2.5         2.5
## 1022              MIN          Minnesota              2.5         2.5
## 1023              MIN          Minnesota              2.5         2.5
## 1024              MIN          Minnesota              2.5         2.5
## 1025              MIN          Minnesota              2.5         2.5
## 1026              MIN          Minnesota              2.5         2.5
## 1027              MIN          Minnesota              2.5         2.5
## 1028              MIN          Minnesota              2.5         2.5
## 1029              MIN          Minnesota              2.5         2.5
## 1030              MIN          Minnesota              2.5         2.5
## 1031              MIN          Minnesota              2.5         2.5
## 1032              MIN          Minnesota              2.5         2.5
## 1033              MIN          Minnesota              2.5         2.5
## 1034              MIN          Minnesota              2.5         2.5
## 1035              MIN          Minnesota              2.5         2.5
## 1036              MIN          Minnesota              2.5         2.5
## 1037              MIN          Minnesota              2.5         2.5
## 1038              MIN          Minnesota              2.5         2.5
## 1039              MIN          Minnesota              2.5         2.5
## 1040              MIN          Minnesota              2.5         2.5
## 1041              MIN          Minnesota              2.5         2.5
## 1042              MIN          Minnesota              2.5         2.5
## 1043              MIN          Minnesota              2.5         2.5
## 1044              MIN          Minnesota              2.5         2.5
## 1045              MIN          Minnesota              2.5         2.5
## 1046              MIN          Minnesota              2.5         2.5
## 1047              MIN          Minnesota              2.5         2.5
## 1048              MIN          Minnesota              2.5         2.5
## 1049              MIN          Minnesota              2.5         2.5
## 1050              MIN          Minnesota              2.5         2.5
## 1051              MIN          Minnesota              2.5         2.5
## 1052              MIN          Minnesota              2.5         2.5
## 1053              MIN          Minnesota              2.5         2.5
## 1054              MIN          Minnesota              2.5         2.5
## 1055              MIN          Minnesota              2.5         2.5
## 1056              MIN          Minnesota              2.5         2.5
## 1057              MIN          Minnesota              2.5         2.5
## 1058              MIN          Minnesota              2.5         2.5
## 1059              MIN          Minnesota              2.5         2.5
## 1060              MIN          Minnesota              2.5         2.5
## 1061              MIN          Minnesota              2.5         2.5
## 1062              MIN          Minnesota              2.5         2.5
## 1063              MIN          Minnesota              2.5         2.5
## 1064              MIN          Minnesota              2.5         2.5
## 1065              MIN          Minnesota              2.5         2.5
## 1066              MIN          Minnesota              2.5         2.5
## 1067              MIN          Minnesota              2.5         2.5
## 1068              MIN          Minnesota              2.5         2.5
## 1069              MIN          Minnesota              2.5         2.5
## 1070              MIN          Minnesota              2.5         2.5
## 1071              MIN          Minnesota              2.5         2.5
## 1072              MIN          Minnesota              2.5         2.5
## 1073              MIN          Minnesota              2.5         2.5
## 1074              MIN          Minnesota              2.5         2.5
## 1075              MIN          Minnesota              2.5         2.5
## 1076              MIN          Minnesota              2.5         2.5
## 1077              MIN          Minnesota              2.5         2.5
## 1078              MIN          Minnesota              2.5         2.5
## 1079              MIN          Minnesota              2.5         2.5
## 1080              MIN          Minnesota              2.5         2.5
## 1081              MIN          Minnesota              2.5         2.5
## 1082              MIN          Minnesota              2.5         2.5
## 1083              MIN          Minnesota              2.5         2.5
## 1084              MIN          Minnesota              2.5         2.5
## 1085              MIN          Minnesota              2.5         2.5
## 1086              MIN          Minnesota              2.5         2.5
## 1087              MIN          Minnesota              2.5         2.5
## 1088              MIN          Minnesota              2.5         2.5
## 1089              MIN          Minnesota              2.5         2.5
## 1090              MIN          Minnesota              2.5         2.5
## 1091              MIN          Minnesota              2.5         2.5
## 1092              MIN          Minnesota              2.5         2.5
## 1093              MIN          Minnesota              2.5         2.5
## 1094              MIN          Minnesota              2.5         2.5
## 1095              MIN          Minnesota              2.5         2.5
## 1096              MIN          Minnesota              2.5         2.5
## 1097              MIN          Minnesota              2.5         2.5
## 1098              MIN          Minnesota              2.5         2.5
## 1099              MIN          Minnesota              2.5         2.5
## 1100              MIN          Minnesota              2.5         2.5
## 1101              MIN          Minnesota              2.5         2.5
## 1102              MIN          Minnesota              2.5         2.5
## 1103              MIN          Minnesota              2.5         2.5
## 1104              MIN          Minnesota              2.5         2.5
## 1105              MIN          Minnesota              2.5         2.5
## 1106              MIN          Minnesota              2.5         2.5
## 1107              MIN          Minnesota              2.5         2.5
## 1108              MIN          Minnesota              2.5         2.5
## 1109              MIN          Minnesota              2.5         2.5
## 1110              MIN          Minnesota              2.5         2.5
## 1111              MIN          Minnesota              2.5         2.5
## 1112              MIN          Minnesota              2.5         2.5
## 1113              MIN          Minnesota              2.5         2.5
## 1114              MIN          Minnesota              2.5         2.5
## 1115              MIN          Minnesota              2.5         2.5
## 1116              MIN          Minnesota              2.5         2.5
## 1117              MIN          Minnesota              2.5         2.5
## 1118              MIN          Minnesota              2.5         2.5
## 1119              MIN          Minnesota              2.5         2.5
## 1120              MIN          Minnesota              2.5         2.5
## 1121              MIN          Minnesota              2.5         2.5
## 1122              MIN          Minnesota              2.5         2.5
## 1123              MIN          Minnesota              2.5         2.5
## 1124              MIN          Minnesota              2.5         2.5
## 1125              MIN          Minnesota              2.5         2.5
## 1126              MIN          Minnesota              2.5         2.5
## 1127              MIN          Minnesota              2.5         2.5
## 1128              MIN          Minnesota              2.5         2.5
## 1129              MIN          Minnesota              2.5         2.5
## 1130              MIN          Minnesota              2.5         2.5
## 1131              MIN          Minnesota              2.5         2.5
## 1132              MIN          Minnesota              2.5         2.5
## 1133              MIN          Minnesota              2.5         2.5
## 1134              MIN          Minnesota              2.5         2.5
## 1135              MIN          Minnesota              2.5         2.5
## 1136              MIN          Minnesota              2.5         2.5
## 1137              MIN          Minnesota              2.5         2.5
## 1138              MIN          Minnesota              2.5         2.5
## 1139              MIN          Minnesota              2.5         2.5
## 1140              MIN          Minnesota              2.5         2.5
## 1141              MIN          Minnesota              2.5         2.5
## 1142              MIN          Minnesota              2.5         2.5
## 1143              MIN          Minnesota              2.5         2.5
## 1144              MIN          Minnesota              2.5         2.5
## 1145              MIN          Minnesota              2.5         2.5
## 1146              MIN          Minnesota              2.5         2.5
## 1147              MIN          Minnesota              2.5         2.5
## 1148              MIN          Minnesota              2.5         2.5
## 1149              MIN          Minnesota              2.5         2.5
## 1150              MIN          Minnesota              2.5         2.5
## 1151              MIN          Minnesota              2.5         2.5
## 1152              MIN          Minnesota              2.5         2.5
## 1153              MIN          Minnesota              2.5         2.5
## 1154              MIN          Minnesota              2.5         2.5
## 1155              MIN          Minnesota              2.5         2.5
## 1156              MIN          Minnesota              2.5         2.5
## 1157              MIN          Minnesota              2.5         2.5
## 1158              MIN          Minnesota              2.5         2.5
## 1159              MIN          Minnesota              2.5         2.5
## 1160              MIN          Minnesota              2.5         2.5
## 1161              MIN          Minnesota              2.5         2.5
## 1162              MIN          Minnesota              2.5         2.5
## 1163              MIN          Minnesota              2.5         2.5
## 1164              MIN          Minnesota              2.5         2.5
## 1165              MIN          Minnesota              2.5         2.5
## 1166              MIN          Minnesota              2.5         2.5
## 1167              MIN          Minnesota              2.5         2.5
## 1168              MIN          Minnesota              2.5         2.5
## 1169              MIN          Minnesota              2.5         2.5
## 1170              MIN          Minnesota              2.5         2.5
## 1171              MIN          Minnesota              2.5         2.5
## 1172              MIN          Minnesota              2.5         2.5
## 1173              MIN          Minnesota              2.5         2.5
## 1174              MIN          Minnesota              2.5         2.5
## 1175              MIN          Minnesota              2.5         2.5
## 1176              MIN          Minnesota              2.5         2.5
## 1177              MIN          Minnesota              2.5         2.5
## 1178              MIN          Minnesota              2.5         2.5
## 1179              MIN          Minnesota              2.5         2.5
## 1180              MIN          Minnesota              2.5         2.5
## 1181              MIN          Minnesota              2.5         2.5
## 1182              MIN          Minnesota              2.5         2.5
## 1183              MIN          Minnesota              2.5         2.5
## 1184              MIN          Minnesota              2.5         2.5
## 1185              MIN          Minnesota              2.5         2.5
## 1186              MIN          Minnesota              2.5         2.5
## 1187              MIN          Minnesota              2.5         2.5
## 1188              MIN          Minnesota              2.5         2.5
## 1189              MIN          Minnesota              2.5         2.5
## 1190              MIN          Minnesota              2.5         2.5
## 1191              MIN          Minnesota              2.5         2.5
## 1192              MIN          Minnesota              2.5         2.5
## 1193              MIN          Minnesota              2.5         2.5
## 1194              MIN          Minnesota              2.5         2.5
## 1195              MIN          Minnesota              2.5         2.5
## 1196              MIN          Minnesota              2.5         2.5
## 1197               LA        Los Angeles              2.5         2.5
## 1198               LA        Los Angeles              2.5         2.5
## 1199               LA        Los Angeles              2.5         2.5
## 1200               LA        Los Angeles              2.5         2.5
## 1201               LA        Los Angeles              2.5         2.5
## 1202               LA        Los Angeles              2.5         2.5
## 1203               LA        Los Angeles              2.5         2.5
## 1204               LA        Los Angeles              2.5         2.5
## 1205               LA        Los Angeles              2.5         2.5
## 1206               LA        Los Angeles              2.5         2.5
## 1207               LA        Los Angeles              2.5         2.5
## 1208               LA        Los Angeles              2.5         2.5
## 1209               LA        Los Angeles              2.5         2.5
## 1210               LA        Los Angeles              2.5         2.5
## 1211               LA        Los Angeles              2.5         2.5
## 1212               LA        Los Angeles              2.5         2.5
## 1213               LA        Los Angeles              2.5         2.5
## 1214               LA        Los Angeles              2.5         2.5
## 1215               LA        Los Angeles              2.5         2.5
## 1216               LA        Los Angeles              2.5         2.5
## 1217               LA        Los Angeles              2.5         2.5
## 1218               LA        Los Angeles              2.5         2.5
## 1219               LA        Los Angeles              2.5         2.5
## 1220               LA        Los Angeles              2.5         2.5
## 1221               LA        Los Angeles              2.5         2.5
## 1222               LA        Los Angeles              2.5         2.5
## 1223               LA        Los Angeles              2.5         2.5
## 1224               LA        Los Angeles              2.5         2.5
## 1225               LA        Los Angeles              2.5         2.5
## 1226               LA        Los Angeles              2.5         2.5
## 1227               LA        Los Angeles              2.5         2.5
## 1228               LA        Los Angeles              2.5         2.5
## 1229               LA        Los Angeles              2.5         2.5
## 1230               LA        Los Angeles              2.5         2.5
## 1231               LA        Los Angeles              2.5         2.5
## 1232               LA        Los Angeles              2.5         2.5
## 1233               LA        Los Angeles              2.5         2.5
## 1234               LA        Los Angeles              2.5         2.5
## 1235               LA        Los Angeles              2.5         2.5
## 1236               LA        Los Angeles              2.5         2.5
## 1237               LA        Los Angeles              2.5         2.5
## 1238               LA        Los Angeles              2.5         2.5
## 1239               LA        Los Angeles              2.5         2.5
## 1240               LA        Los Angeles              2.5         2.5
## 1241               LA        Los Angeles              2.5         2.5
## 1242               LA        Los Angeles              2.5         2.5
## 1243               LA        Los Angeles              2.5         2.5
## 1244               LA        Los Angeles              2.5         2.5
## 1245               LA        Los Angeles              2.5         2.5
## 1246               LA        Los Angeles              2.5         2.5
## 1247               LA        Los Angeles              2.5         2.5
## 1248               LA        Los Angeles              2.5         2.5
## 1249               LA        Los Angeles              2.5         2.5
## 1250               LA        Los Angeles              2.5         2.5
## 1251               LA        Los Angeles              2.5         2.5
## 1252               LA        Los Angeles              2.5         2.5
## 1253               LA        Los Angeles              2.5         2.5
## 1254               LA        Los Angeles              2.5         2.5
## 1255               LA        Los Angeles              2.5         2.5
## 1256               LA        Los Angeles              2.5         2.5
## 1257               LA        Los Angeles              2.5         2.5
## 1258               LA        Los Angeles              2.5         2.5
## 1259               LA        Los Angeles              2.5         2.5
## 1260               LA        Los Angeles              2.5         2.5
## 1261               LA        Los Angeles              2.5         2.5
## 1262               LA        Los Angeles              2.5         2.5
## 1263               LA        Los Angeles              2.5         2.5
## 1264               LA        Los Angeles              2.5         2.5
## 1265               LA        Los Angeles              2.5         2.5
## 1266               LA        Los Angeles              2.5         2.5
## 1267               LA        Los Angeles              2.5         2.5
## 1268               LA        Los Angeles              2.5         2.5
## 1269               LA        Los Angeles              2.5         2.5
## 1270               LA        Los Angeles              2.5         2.5
## 1271               LA        Los Angeles              2.5         2.5
## 1272               LA        Los Angeles              2.5         2.5
## 1273               LA        Los Angeles              2.5         2.5
## 1274               LA        Los Angeles              2.5         2.5
## 1275               LA        Los Angeles              2.5         2.5
## 1276               LA        Los Angeles              2.5         2.5
## 1277               LA        Los Angeles              2.5         2.5
## 1278               LA        Los Angeles              2.5         2.5
## 1279               LA        Los Angeles              2.5         2.5
## 1280               LA        Los Angeles              2.5         2.5
## 1281               LA        Los Angeles              2.5         2.5
## 1282               LA        Los Angeles              2.5         2.5
## 1283               LA        Los Angeles              2.5         2.5
## 1284               LA        Los Angeles              2.5         2.5
## 1285               LA        Los Angeles              2.5         2.5
## 1286               LA        Los Angeles              2.5         2.5
## 1287               LA        Los Angeles              2.5         2.5
## 1288               LA        Los Angeles              2.5         2.5
## 1289               LA        Los Angeles              2.5         2.5
## 1290               LA        Los Angeles              2.5         2.5
## 1291               LA        Los Angeles              2.5         2.5
## 1292               LA        Los Angeles              2.5         2.5
## 1293               LA        Los Angeles              2.5         2.5
## 1294               LA        Los Angeles              2.5         2.5
## 1295               LA        Los Angeles              2.5         2.5
## 1296               LA        Los Angeles              2.5         2.5
## 1297               LA        Los Angeles              2.5         2.5
## 1298               LA        Los Angeles              2.5         2.5
## 1299               LA        Los Angeles              2.5         2.5
## 1300               LA        Los Angeles              2.5         2.5
## 1301               LA        Los Angeles              2.5         2.5
## 1302               LA        Los Angeles              2.5         2.5
## 1303               LA        Los Angeles              2.5         2.5
## 1304               LA        Los Angeles              2.5         2.5
## 1305               LA        Los Angeles              2.5         2.5
## 1306               LA        Los Angeles              2.5         2.5
## 1307               LA        Los Angeles              2.5         2.5
## 1308               LA        Los Angeles              2.5         2.5
## 1309               LA        Los Angeles              2.5         2.5
## 1310               LA        Los Angeles              2.5         2.5
## 1311               LA        Los Angeles              2.5         2.5
## 1312               LA        Los Angeles              2.5         2.5
## 1313               LA        Los Angeles              2.5         2.5
## 1314               LA        Los Angeles              2.5         2.5
## 1315               LA        Los Angeles              2.5         2.5
## 1316               LA        Los Angeles              2.5         2.5
## 1317               LA        Los Angeles              2.5         2.5
## 1318               LA        Los Angeles              2.5         2.5
## 1319               LA        Los Angeles              2.5         2.5
## 1320               LA        Los Angeles              2.5         2.5
## 1321               LA        Los Angeles              2.5         2.5
## 1322               LA        Los Angeles              2.5         2.5
## 1323               LA        Los Angeles              2.5         2.5
## 1324               LA        Los Angeles              2.5         2.5
## 1325               LA        Los Angeles              2.5         2.5
## 1326               LA        Los Angeles              2.5         2.5
## 1327               LA        Los Angeles              2.5         2.5
## 1328               LA        Los Angeles              2.5         2.5
## 1329               LA        Los Angeles              2.5         2.5
## 1330               LA        Los Angeles              2.5         2.5
## 1331               LA        Los Angeles              2.5         2.5
## 1332               LA        Los Angeles              2.5         2.5
## 1333               LA        Los Angeles              2.5         2.5
## 1334               LA        Los Angeles              2.5         2.5
## 1335               LA        Los Angeles              2.5         2.5
## 1336               LA        Los Angeles              2.5         2.5
## 1337               LA        Los Angeles              2.5         2.5
## 1338               LA        Los Angeles              2.5         2.5
## 1339               LA        Los Angeles              2.5         2.5
## 1340               LA        Los Angeles              2.5         2.5
## 1341               LA        Los Angeles              2.5         2.5
## 1342               LA        Los Angeles              2.5         2.5
## 1343               LA        Los Angeles              2.5         2.5
## 1344               LA        Los Angeles              2.5         2.5
## 1345               LA        Los Angeles              2.5         2.5
## 1346               LA        Los Angeles              2.5         2.5
## 1347               LA        Los Angeles              2.5         2.5
## 1348               LA        Los Angeles              2.5         2.5
## 1349               LA        Los Angeles              2.5         2.5
## 1350               LA        Los Angeles              2.5         2.5
## 1351               LA        Los Angeles              2.5         2.5
## 1352               LA        Los Angeles              2.5         2.5
## 1353               LA        Los Angeles              2.5         2.5
## 1354               LA        Los Angeles              2.5         2.5
## 1355               LA        Los Angeles              2.5         2.5
## 1356               LA        Los Angeles              2.5         2.5
## 1357               LA        Los Angeles              2.5         2.5
## 1358               LA        Los Angeles              2.5         2.5
## 1359               LA        Los Angeles              2.5         2.5
## 1360               LA        Los Angeles              2.5         2.5
## 1361               LA        Los Angeles              2.5         2.5
## 1362               LA        Los Angeles              2.5         2.5
## 1363               LA        Los Angeles              2.5         2.5
## 1364               LA        Los Angeles              2.5         2.5
## 1365               LA        Los Angeles              2.5         2.5
## 1366               LA        Los Angeles              2.5         2.5
## 1367               LA        Los Angeles              2.5         2.5
## 1368               LA        Los Angeles              2.5         2.5
## 1369               LA        Los Angeles              2.5         2.5
## 1370               LA        Los Angeles              2.5         2.5
## 1371               LA        Los Angeles              2.5         2.5
## 1372               LA        Los Angeles              2.5         2.5
## 1373               LA        Los Angeles              2.5         2.5
## 1374               LA        Los Angeles              2.5         2.5
## 1375               LA        Los Angeles              2.5         2.5
## 1376               LA        Los Angeles              2.5         2.5
## 1377               LA        Los Angeles              2.5         2.5
## 1378               LA        Los Angeles              2.5         2.5
## 1379               LA        Los Angeles              2.5         2.5
## 1380               LA        Los Angeles              2.5         2.5
## 1381               LA        Los Angeles              2.5         2.5
## 1382               LA        Los Angeles              2.5         2.5
## 1383               LA        Los Angeles              2.5         2.5
## 1384               LA        Los Angeles              2.5         2.5
## 1385               LA        Los Angeles              2.5         2.5
## 1386               LA        Los Angeles              2.5         2.5
## 1387               LA        Los Angeles              2.5         2.5
## 1388               LA        Los Angeles              2.5         2.5
## 1389               LA        Los Angeles              2.5         2.5
## 1390               LA        Los Angeles              2.5         2.5
## 1391               LA        Los Angeles              2.5         2.5
## 1392               LA        Los Angeles              2.5         2.5
## 1393               LA        Los Angeles              2.5         2.5
## 1394               LA        Los Angeles              2.5         2.5
## 1395               LA        Los Angeles              2.5         2.5
## 1396               LA        Los Angeles              2.5         2.5
## 1397               LA        Los Angeles              2.5         2.5
## 1398               LA        Los Angeles              2.5         2.5
## 1399               LA        Los Angeles              2.5         2.5
## 1400               LA        Los Angeles              2.5         2.5
## 1401               LA        Los Angeles              2.5         2.5
## 1402               LA        Los Angeles              2.5         2.5
## 1403               LA        Los Angeles              2.5         2.5
## 1404               LA        Los Angeles              2.5         2.5
## 1405               LA        Los Angeles              2.5         2.5
## 1406               LA        Los Angeles              2.5         2.5
## 1407               LA        Los Angeles              2.5         2.5
## 1408               LA        Los Angeles              2.5         2.5
## 1409               LA        Los Angeles              2.5         2.5
## 1410               LA        Los Angeles              2.5         2.5
## 1411               LA        Los Angeles              2.5         2.5
## 1412               LA        Los Angeles              2.5         2.5
## 1413               LA        Los Angeles              2.5         2.5
## 1414               LA        Los Angeles              2.5         2.5
## 1415               LA        Los Angeles              2.5         2.5
## 1416               LA        Los Angeles              2.5         2.5
## 1417               LA        Los Angeles              2.5         2.5
## 1418               LA        Los Angeles              2.5         2.5
## 1419               LA        Los Angeles              2.5         2.5
## 1420               LA        Los Angeles              2.5         2.5
## 1421               LA        Los Angeles              2.5         2.5
## 1422               LA        Los Angeles              2.5         2.5
## 1423               LA        Los Angeles              2.5         2.5
## 1424               LA        Los Angeles              2.5         2.5
## 1425               LA        Los Angeles              2.5         2.5
## 1426               LA        Los Angeles              2.5         2.5
## 1427               LA        Los Angeles              2.5         2.5
## 1428               LA        Los Angeles              2.5         2.5
## 1429               LA        Los Angeles              2.5         2.5
## 1430               LA        Los Angeles              2.5         2.5
## 1431               LA        Los Angeles              2.5         2.5
## 1432               LA        Los Angeles              2.5         2.5
## 1433               LA        Los Angeles              2.5         2.5
## 1434               LA        Los Angeles              2.5         2.5
## 1435               LA        Los Angeles              2.5         2.5
## 1436               LA        Los Angeles              2.5         2.5
## 1437               LA        Los Angeles              2.5         2.5
## 1438               LA        Los Angeles              2.5         2.5
## 1439               LA        Los Angeles              2.5         2.5
## 1440               LA        Los Angeles              2.5         2.5
## 1441               LA        Los Angeles              2.5         2.5
## 1442               LA        Los Angeles              2.5         2.5
## 1443               LA        Los Angeles              2.5         2.5
## 1444               LA        Los Angeles              2.5         2.5
## 1445               LA        Los Angeles              2.5         2.5
## 1446               LA        Los Angeles              2.5         2.5
## 1447               LA        Los Angeles              2.5         2.5
## 1448               LA        Los Angeles              2.5         2.5
## 1449               LA        Los Angeles              2.5         2.5
## 1450               LA        Los Angeles              2.5         2.5
## 1451               LA        Los Angeles              2.5         2.5
## 1452               LA        Los Angeles              2.5         2.5
## 1453               LA        Los Angeles              2.5         2.5
## 1454               LA        Los Angeles              2.5         2.5
## 1455               LA        Los Angeles              2.5         2.5
## 1456               LA        Los Angeles              2.5         2.5
## 1457               LA        Los Angeles              2.5         2.5
## 1458               LA        Los Angeles              2.5         2.5
## 1459               LA        Los Angeles              2.5         2.5
## 1460               LA        Los Angeles              2.5         2.5
## 1461               LA        Los Angeles              2.5         2.5
## 1462               LA        Los Angeles              2.5         2.5
## 1463               LA        Los Angeles              2.5         2.5
## 1464               LA        Los Angeles              2.5         2.5
## 1465               LA        Los Angeles              2.5         2.5
## 1466               LA        Los Angeles              2.5         2.5
## 1467               LA        Los Angeles              2.5         2.5
## 1468               LA        Los Angeles              2.5         2.5
## 1469               LA        Los Angeles              2.5         2.5
## 1470               LA        Los Angeles              2.5         2.5
## 1471               LA        Los Angeles              2.5         2.5
## 1472               LA        Los Angeles              2.5         2.5
## 1473               LA        Los Angeles              2.5         2.5
## 1474               LA        Los Angeles              2.5         2.5
## 1475               LA        Los Angeles              2.5         2.5
## 1476               LA        Los Angeles              2.5         2.5
## 1477               LA        Los Angeles              2.5         2.5
## 1478               LA        Los Angeles              2.5         2.5
## 1479               LA        Los Angeles              2.5         2.5
## 1480               LA        Los Angeles              2.5         2.5
## 1481               LA        Los Angeles              2.5         2.5
## 1482               LA        Los Angeles              2.5         2.5
## 1483               LA        Los Angeles              2.5         2.5
## 1484               LA        Los Angeles              2.5         2.5
## 1485               LA        Los Angeles              2.5         2.5
## 1486               LA        Los Angeles              2.5         2.5
## 1487               LA        Los Angeles              2.5         2.5
## 1488               LA        Los Angeles              2.5         2.5
## 1489               LA        Los Angeles              2.5         2.5
## 1490               LA        Los Angeles              2.5         2.5
## 1491               LA        Los Angeles              2.5         2.5
## 1492               LA        Los Angeles              2.5         2.5
## 1493               LA        Los Angeles              2.5         2.5
## 1494               LA        Los Angeles              2.5         2.5
## 1495               LA        Los Angeles              2.5         2.5
## 1496               LA        Los Angeles              2.5         2.5
## 1497               LA        Los Angeles              2.5         2.5
## 1498               LA        Los Angeles              2.5         2.5
## 1499               LA        Los Angeles              2.5         2.5
## 1500               LA        Los Angeles              2.5         2.5
## 1501               LA        Los Angeles              2.5         2.5
## 1502               LA        Los Angeles              2.5         2.5
## 1503               LA        Los Angeles              2.5         2.5
## 1504               LA        Los Angeles              2.5         2.5
## 1505               LA        Los Angeles              2.5         2.5
## 1506               LA        Los Angeles              2.5         2.5
## 1507               LA        Los Angeles              2.5         2.5
## 1508               LA        Los Angeles              2.5         2.5
## 1509               LA        Los Angeles              2.5         2.5
## 1510               LA        Los Angeles              2.5         2.5
## 1511               LA        Los Angeles              2.5         2.5
## 1512               LA        Los Angeles              2.5         2.5
## 1513               LA        Los Angeles              2.5         2.5
## 1514               LA        Los Angeles              2.5         2.5
## 1515               LA        Los Angeles              2.5         2.5
## 1516               LA        Los Angeles              2.5         2.5
## 1517               LA        Los Angeles              2.5         2.5
## 1518               LA        Los Angeles              2.5         2.5
## 1519               LA        Los Angeles              2.5         2.5
## 1520               LA        Los Angeles              2.5         2.5
## 1521               LA        Los Angeles              2.5         2.5
## 1522               LA        Los Angeles              2.5         2.5
## 1523               LA        Los Angeles              2.5         2.5
## 1524               LA        Los Angeles              2.5         2.5
## 1525               LA        Los Angeles              2.5         2.5
## 1526               LA        Los Angeles              2.5         2.5
## 1527               LA        Los Angeles              2.5         2.5
## 1528               LA        Los Angeles              2.5         2.5
## 1529               LA        Los Angeles              2.5         2.5
## 1530               LA        Los Angeles              2.5         2.5
## 1531               LA        Los Angeles              2.5         2.5
## 1532               LA        Los Angeles              2.5         2.5
## 1533               LA        Los Angeles              2.5         2.5
## 1534               LA        Los Angeles              2.5         2.5
## 1535               LA        Los Angeles              2.5         2.5
## 1536               LA        Los Angeles              2.5         2.5
## 1537               LA        Los Angeles              2.5         2.5
## 1538               LA        Los Angeles              2.5         2.5
## 1539               LA        Los Angeles              2.5         2.5
## 1540               LA        Los Angeles              2.5         2.5
## 1541               LA        Los Angeles              2.5         2.5
## 1542               LA        Los Angeles              2.5         2.5
## 1543               LA        Los Angeles              2.5         2.5
## 1544               LA        Los Angeles              2.5         2.5
## 1545               LA        Los Angeles              2.5         2.5
## 1546               LA        Los Angeles              2.5         2.5
## 1547               LA        Los Angeles              2.5         2.5
## 1548               LA        Los Angeles              2.5         2.5
## 1549               LA        Los Angeles              2.5         2.5
## 1550               LA        Los Angeles              2.5         2.5
## 1551               LA        Los Angeles              2.5         2.5
## 1552               LA        Los Angeles              2.5         2.5
## 1553               LA        Los Angeles              2.5         2.5
## 1554               LA        Los Angeles              2.5         2.5
## 1555               LA        Los Angeles              2.5         2.5
## 1556               LA        Los Angeles              2.5         2.5
## 1557               LA        Los Angeles              2.5         2.5
## 1558               LA        Los Angeles              2.5         2.5
## 1559               LA        Los Angeles              2.5         2.5
## 1560               LA        Los Angeles              2.5         2.5
## 1561               LA        Los Angeles              2.5         2.5
## 1562               LA        Los Angeles              2.5         2.5
## 1563               LA        Los Angeles              2.5         2.5
## 1564               LA        Los Angeles              2.5         2.5
## 1565               LA        Los Angeles              2.5         2.5
## 1566               LA        Los Angeles              2.5         2.5
## 1567               LA        Los Angeles              2.5         2.5
## 1568               LA        Los Angeles              2.5         2.5
## 1569               LA        Los Angeles              2.5         2.5
## 1570               LA        Los Angeles              2.5         2.5
## 1571               LA        Los Angeles              2.5         2.5
## 1572               LA        Los Angeles              2.5         2.5
## 1573               LA        Los Angeles              2.5         2.5
## 1574               LA        Los Angeles              2.5         2.5
## 1575               LA        Los Angeles              2.5         2.5
## 1576               LA        Los Angeles              2.5         2.5
## 1577               LA        Los Angeles              2.5         2.5
## 1578               LA        Los Angeles              2.5         2.5
## 1579               LA        Los Angeles              2.5         2.5
## 1580               LA        Los Angeles              2.5         2.5
## 1581               LA        Los Angeles              2.5         2.5
## 1582               LA        Los Angeles              2.5         2.5
## 1583               LA        Los Angeles              2.5         2.5
## 1584               LA        Los Angeles              2.5         2.5
## 1585               LA        Los Angeles              2.5         2.5
## 1586               LA        Los Angeles              2.5         2.5
## 1587               LA        Los Angeles              2.5         2.5
## 1588               LA        Los Angeles              2.5         2.5
## 1589               LA        Los Angeles              2.5         2.5
## 1590               LA        Los Angeles              2.5         2.5
## 1591               LA        Los Angeles              2.5         2.5
## 1592               LA        Los Angeles              2.5         2.5
## 1593               LA        Los Angeles              2.5         2.5
## 1594               LA        Los Angeles              2.5         2.5
## 1595               LA        Los Angeles              2.5         2.5
## 1596               LA        Los Angeles              2.5         2.5
## 1597               LA        Los Angeles              2.5         2.5
## 1598               LA        Los Angeles              2.5         2.5
## 1599               LA        Los Angeles              2.5         2.5
## 1600               LA        Los Angeles              2.5         2.5
## 1601               LA        Los Angeles              2.5         2.5
## 1602               LA        Los Angeles              2.5         2.5
## 1603               LA        Los Angeles              2.5         2.5
## 1604               LA        Los Angeles              2.5         2.5
## 1605               LA        Los Angeles              2.5         2.5
## 1606               LA        Los Angeles              2.5         2.5
## 1607               LA        Los Angeles              2.5         2.5
## 1608               LA        Los Angeles              2.5         2.5
## 1609               LA        Los Angeles              2.5         2.5
## 1610               LA        Los Angeles              2.5         2.5
## 1611               LA        Los Angeles              2.5         2.5
## 1612               LA        Los Angeles              2.5         2.5
## 1613               LA        Los Angeles              2.5         2.5
## 1614               LA        Los Angeles              2.5         2.5
## 1615               LA        Los Angeles              2.5         2.5
## 1616               LA        Los Angeles              2.5         2.5
## 1617               LA        Los Angeles              2.5         2.5
## 1618               LA        Los Angeles              2.5         2.5
## 1619               LA        Los Angeles              2.5         2.5
## 1620               LA        Los Angeles              2.5         2.5
## 1621               LA        Los Angeles              2.5         2.5
## 1622               LA        Los Angeles              2.5         2.5
## 1623               LA        Los Angeles              2.5         2.5
## 1624               LA        Los Angeles              2.5         2.5
## 1625               LA        Los Angeles              2.5         2.5
## 1626              WSH         Washington              2.5         2.5
## 1627              WSH         Washington              2.5         2.5
## 1628              WSH         Washington              2.5         2.5
## 1629              WSH         Washington              2.5         2.5
## 1630              WSH         Washington              2.5         2.5
## 1631              WSH         Washington              2.5         2.5
## 1632              WSH         Washington              2.5         2.5
## 1633              WSH         Washington              2.5         2.5
## 1634              WSH         Washington              2.5         2.5
## 1635              WSH         Washington              2.5         2.5
## 1636              WSH         Washington              2.5         2.5
## 1637              WSH         Washington              2.5         2.5
## 1638              WSH         Washington              2.5         2.5
## 1639              WSH         Washington              2.5         2.5
## 1640              WSH         Washington              2.5         2.5
## 1641              WSH         Washington              2.5         2.5
## 1642              WSH         Washington              2.5         2.5
## 1643              WSH         Washington              2.5         2.5
## 1644              WSH         Washington              2.5         2.5
## 1645              WSH         Washington              2.5         2.5
## 1646              WSH         Washington              2.5         2.5
## 1647              WSH         Washington              2.5         2.5
## 1648              WSH         Washington              2.5         2.5
## 1649              WSH         Washington              2.5         2.5
## 1650              WSH         Washington              2.5         2.5
## 1651              WSH         Washington              2.5         2.5
## 1652              WSH         Washington              2.5         2.5
## 1653              WSH         Washington              2.5         2.5
## 1654              WSH         Washington              2.5         2.5
## 1655              WSH         Washington              2.5         2.5
## 1656              WSH         Washington              2.5         2.5
## 1657              WSH         Washington              2.5         2.5
## 1658              WSH         Washington              2.5         2.5
## 1659              WSH         Washington              2.5         2.5
## 1660              WSH         Washington              2.5         2.5
## 1661              WSH         Washington              2.5         2.5
## 1662              WSH         Washington              2.5         2.5
## 1663              WSH         Washington              2.5         2.5
## 1664              WSH         Washington              2.5         2.5
## 1665              WSH         Washington              2.5         2.5
## 1666              WSH         Washington              2.5         2.5
## 1667              WSH         Washington              2.5         2.5
## 1668              WSH         Washington              2.5         2.5
## 1669              WSH         Washington              2.5         2.5
## 1670              WSH         Washington              2.5         2.5
## 1671              WSH         Washington              2.5         2.5
## 1672              WSH         Washington              2.5         2.5
## 1673              WSH         Washington              2.5         2.5
## 1674              WSH         Washington              2.5         2.5
## 1675              WSH         Washington              2.5         2.5
## 1676              WSH         Washington              2.5         2.5
## 1677              WSH         Washington              2.5         2.5
## 1678              WSH         Washington              2.5         2.5
## 1679              WSH         Washington              2.5         2.5
## 1680              WSH         Washington              2.5         2.5
## 1681              WSH         Washington              2.5         2.5
## 1682              WSH         Washington              2.5         2.5
## 1683              WSH         Washington              2.5         2.5
## 1684              WSH         Washington              2.5         2.5
## 1685              WSH         Washington              2.5         2.5
## 1686              WSH         Washington              2.5         2.5
## 1687              WSH         Washington              2.5         2.5
## 1688              WSH         Washington              2.5         2.5
## 1689              WSH         Washington              2.5         2.5
## 1690              WSH         Washington              2.5         2.5
## 1691              WSH         Washington              2.5         2.5
## 1692              WSH         Washington              2.5         2.5
## 1693              WSH         Washington              2.5         2.5
## 1694              WSH         Washington              2.5         2.5
## 1695              WSH         Washington              2.5         2.5
## 1696              WSH         Washington              2.5         2.5
## 1697              WSH         Washington              2.5         2.5
## 1698              WSH         Washington              2.5         2.5
## 1699              WSH         Washington              2.5         2.5
## 1700              WSH         Washington              2.5         2.5
## 1701              WSH         Washington              2.5         2.5
## 1702              WSH         Washington              2.5         2.5
## 1703              WSH         Washington              2.5         2.5
## 1704              WSH         Washington              2.5         2.5
## 1705              WSH         Washington              2.5         2.5
## 1706              WSH         Washington              2.5         2.5
## 1707              WSH         Washington              2.5         2.5
## 1708              WSH         Washington              2.5         2.5
## 1709              WSH         Washington              2.5         2.5
## 1710              WSH         Washington              2.5         2.5
## 1711              WSH         Washington              2.5         2.5
## 1712              WSH         Washington              2.5         2.5
## 1713              WSH         Washington              2.5         2.5
## 1714              WSH         Washington              2.5         2.5
## 1715              WSH         Washington              2.5         2.5
## 1716              WSH         Washington              2.5         2.5
## 1717              WSH         Washington              2.5         2.5
## 1718              WSH         Washington              2.5         2.5
## 1719              WSH         Washington              2.5         2.5
## 1720              WSH         Washington              2.5         2.5
## 1721              WSH         Washington              2.5         2.5
## 1722              WSH         Washington              2.5         2.5
## 1723              WSH         Washington              2.5         2.5
## 1724              WSH         Washington              2.5         2.5
## 1725              WSH         Washington              2.5         2.5
## 1726              WSH         Washington              2.5         2.5
## 1727              WSH         Washington              2.5         2.5
## 1728              WSH         Washington              2.5         2.5
## 1729              WSH         Washington              2.5         2.5
## 1730              WSH         Washington              2.5         2.5
## 1731              WSH         Washington              2.5         2.5
## 1732              WSH         Washington              2.5         2.5
## 1733              WSH         Washington              2.5         2.5
## 1734              WSH         Washington              2.5         2.5
## 1735              WSH         Washington              2.5         2.5
## 1736              WSH         Washington              2.5         2.5
## 1737              WSH         Washington              2.5         2.5
## 1738              WSH         Washington              2.5         2.5
## 1739              WSH         Washington              2.5         2.5
## 1740              WSH         Washington              2.5         2.5
## 1741              WSH         Washington              2.5         2.5
## 1742              WSH         Washington              2.5         2.5
## 1743              WSH         Washington              2.5         2.5
## 1744              WSH         Washington              2.5         2.5
## 1745              WSH         Washington              2.5         2.5
## 1746              WSH         Washington              2.5         2.5
## 1747              WSH         Washington              2.5         2.5
## 1748              WSH         Washington              2.5         2.5
## 1749              WSH         Washington              2.5         2.5
## 1750              WSH         Washington              2.5         2.5
## 1751              WSH         Washington              2.5         2.5
## 1752              WSH         Washington              2.5         2.5
## 1753              WSH         Washington              2.5         2.5
## 1754              WSH         Washington              2.5         2.5
## 1755              WSH         Washington              2.5         2.5
## 1756              WSH         Washington              2.5         2.5
## 1757              WSH         Washington              2.5         2.5
## 1758              WSH         Washington              2.5         2.5
## 1759              WSH         Washington              2.5         2.5
## 1760              WSH         Washington              2.5         2.5
## 1761              WSH         Washington              2.5         2.5
## 1762              WSH         Washington              2.5         2.5
## 1763              WSH         Washington              2.5         2.5
## 1764              WSH         Washington              2.5         2.5
## 1765              WSH         Washington              2.5         2.5
## 1766              WSH         Washington              2.5         2.5
## 1767              WSH         Washington              2.5         2.5
## 1768              WSH         Washington              2.5         2.5
## 1769              WSH         Washington              2.5         2.5
## 1770              WSH         Washington              2.5         2.5
## 1771              WSH         Washington              2.5         2.5
## 1772              WSH         Washington              2.5         2.5
## 1773              WSH         Washington              2.5         2.5
## 1774              WSH         Washington              2.5         2.5
## 1775              WSH         Washington              2.5         2.5
## 1776              WSH         Washington              2.5         2.5
## 1777              WSH         Washington              2.5         2.5
## 1778              WSH         Washington              2.5         2.5
## 1779              WSH         Washington              2.5         2.5
## 1780              WSH         Washington              2.5         2.5
## 1781              WSH         Washington              2.5         2.5
## 1782              WSH         Washington              2.5         2.5
## 1783              WSH         Washington              2.5         2.5
## 1784              WSH         Washington              2.5         2.5
## 1785              WSH         Washington              2.5         2.5
## 1786              WSH         Washington              2.5         2.5
## 1787              WSH         Washington              2.5         2.5
## 1788              WSH         Washington              2.5         2.5
## 1789              WSH         Washington              2.5         2.5
## 1790              WSH         Washington              2.5         2.5
## 1791              WSH         Washington              2.5         2.5
## 1792              WSH         Washington              2.5         2.5
## 1793              WSH         Washington              2.5         2.5
## 1794              WSH         Washington              2.5         2.5
## 1795              WSH         Washington              2.5         2.5
## 1796              WSH         Washington              2.5         2.5
## 1797              WSH         Washington              2.5         2.5
## 1798              WSH         Washington              2.5         2.5
## 1799              WSH         Washington              2.5         2.5
## 1800              WSH         Washington              2.5         2.5
## 1801              WSH         Washington              2.5         2.5
## 1802              WSH         Washington              2.5         2.5
## 1803              WSH         Washington              2.5         2.5
## 1804              WSH         Washington              2.5         2.5
## 1805              WSH         Washington              2.5         2.5
## 1806              WSH         Washington              2.5         2.5
## 1807              WSH         Washington              2.5         2.5
## 1808              WSH         Washington              2.5         2.5
## 1809              WSH         Washington              2.5         2.5
## 1810              WSH         Washington              2.5         2.5
## 1811              WSH         Washington              2.5         2.5
## 1812              WSH         Washington              2.5         2.5
## 1813              WSH         Washington              2.5         2.5
## 1814              WSH         Washington              2.5         2.5
## 1815              WSH         Washington              2.5         2.5
## 1816              WSH         Washington              2.5         2.5
## 1817              WSH         Washington              2.5         2.5
## 1818              WSH         Washington              2.5         2.5
## 1819              WSH         Washington              2.5         2.5
## 1820              WSH         Washington              2.5         2.5
## 1821              WSH         Washington              2.5         2.5
## 1822              WSH         Washington              2.5         2.5
## 1823              WSH         Washington              2.5         2.5
## 1824              WSH         Washington              2.5         2.5
## 1825              WSH         Washington              2.5         2.5
## 1826              WSH         Washington              2.5         2.5
## 1827              WSH         Washington              2.5         2.5
## 1828              WSH         Washington              2.5         2.5
## 1829              WSH         Washington              2.5         2.5
## 1830              WSH         Washington              2.5         2.5
## 1831              WSH         Washington              2.5         2.5
## 1832              WSH         Washington              2.5         2.5
## 1833              WSH         Washington              2.5         2.5
## 1834              WSH         Washington              2.5         2.5
## 1835              WSH         Washington              2.5         2.5
## 1836              WSH         Washington              2.5         2.5
## 1837              WSH         Washington              2.5         2.5
## 1838              WSH         Washington              2.5         2.5
## 1839              WSH         Washington              2.5         2.5
## 1840              WSH         Washington              2.5         2.5
## 1841              WSH         Washington              2.5         2.5
## 1842              WSH         Washington              2.5         2.5
## 1843              WSH         Washington              2.5         2.5
## 1844              WSH         Washington              2.5         2.5
## 1845              WSH         Washington              2.5         2.5
## 1846              WSH         Washington              2.5         2.5
## 1847              WSH         Washington              2.5         2.5
## 1848              WSH         Washington              2.5         2.5
## 1849              WSH         Washington              2.5         2.5
## 1850              WSH         Washington              2.5         2.5
## 1851              WSH         Washington              2.5         2.5
## 1852              WSH         Washington              2.5         2.5
## 1853              WSH         Washington              2.5         2.5
## 1854              WSH         Washington              2.5         2.5
## 1855              WSH         Washington              2.5         2.5
## 1856              WSH         Washington              2.5         2.5
## 1857              WSH         Washington              2.5         2.5
## 1858              WSH         Washington              2.5         2.5
## 1859              WSH         Washington              2.5         2.5
## 1860              WSH         Washington              2.5         2.5
## 1861              WSH         Washington              2.5         2.5
## 1862              WSH         Washington              2.5         2.5
## 1863              WSH         Washington              2.5         2.5
## 1864              WSH         Washington              2.5         2.5
## 1865              WSH         Washington              2.5         2.5
## 1866              WSH         Washington              2.5         2.5
## 1867              WSH         Washington              2.5         2.5
## 1868              WSH         Washington              2.5         2.5
## 1869              WSH         Washington              2.5         2.5
## 1870              WSH         Washington              2.5         2.5
## 1871              WSH         Washington              2.5         2.5
## 1872              WSH         Washington              2.5         2.5
## 1873              WSH         Washington              2.5         2.5
## 1874              WSH         Washington              2.5         2.5
## 1875              WSH         Washington              2.5         2.5
## 1876              WSH         Washington              2.5         2.5
## 1877              WSH         Washington              2.5         2.5
## 1878              WSH         Washington              2.5         2.5
## 1879              WSH         Washington              2.5         2.5
## 1880              WSH         Washington              2.5         2.5
## 1881              WSH         Washington              2.5         2.5
## 1882              WSH         Washington              2.5         2.5
## 1883              WSH         Washington              2.5         2.5
## 1884              WSH         Washington              2.5         2.5
## 1885              WSH         Washington              2.5         2.5
## 1886              WSH         Washington              2.5         2.5
## 1887              WSH         Washington              2.5         2.5
## 1888              WSH         Washington              2.5         2.5
## 1889              WSH         Washington              2.5         2.5
## 1890              WSH         Washington              2.5         2.5
## 1891              WSH         Washington              2.5         2.5
## 1892              WSH         Washington              2.5         2.5
## 1893              WSH         Washington              2.5         2.5
## 1894              WSH         Washington              2.5         2.5
## 1895              WSH         Washington              2.5         2.5
## 1896              WSH         Washington              2.5         2.5
## 1897              WSH         Washington              2.5         2.5
## 1898              WSH         Washington              2.5         2.5
## 1899              WSH         Washington              2.5         2.5
## 1900              WSH         Washington              2.5         2.5
## 1901              WSH         Washington              2.5         2.5
## 1902              WSH         Washington              2.5         2.5
## 1903              WSH         Washington              2.5         2.5
## 1904              WSH         Washington              2.5         2.5
## 1905              WSH         Washington              2.5         2.5
## 1906              WSH         Washington              2.5         2.5
## 1907              WSH         Washington              2.5         2.5
## 1908              WSH         Washington              2.5         2.5
## 1909              WSH         Washington              2.5         2.5
## 1910              WSH         Washington              2.5         2.5
## 1911              WSH         Washington              2.5         2.5
## 1912              WSH         Washington              2.5         2.5
## 1913              WSH         Washington              2.5         2.5
## 1914              WSH         Washington              2.5         2.5
## 1915              WSH         Washington              2.5         2.5
## 1916              WSH         Washington              2.5         2.5
## 1917              WSH         Washington              2.5         2.5
## 1918              WSH         Washington              2.5         2.5
## 1919              WSH         Washington              2.5         2.5
## 1920              WSH         Washington              2.5         2.5
## 1921              WSH         Washington              2.5         2.5
## 1922              WSH         Washington              2.5         2.5
## 1923              WSH         Washington              2.5         2.5
## 1924              WSH         Washington              2.5         2.5
## 1925              WSH         Washington              2.5         2.5
## 1926              WSH         Washington              2.5         2.5
## 1927              WSH         Washington              2.5         2.5
## 1928              WSH         Washington              2.5         2.5
## 1929              WSH         Washington              2.5         2.5
## 1930              WSH         Washington              2.5         2.5
## 1931              WSH         Washington              2.5         2.5
## 1932              WSH         Washington              2.5         2.5
## 1933              WSH         Washington              2.5         2.5
## 1934              WSH         Washington              2.5         2.5
## 1935              WSH         Washington              2.5         2.5
## 1936              WSH         Washington              2.5         2.5
## 1937              WSH         Washington              2.5         2.5
## 1938              WSH         Washington              2.5         2.5
## 1939              WSH         Washington              2.5         2.5
## 1940              WSH         Washington              2.5         2.5
## 1941              WSH         Washington              2.5         2.5
## 1942              WSH         Washington              2.5         2.5
## 1943              WSH         Washington              2.5         2.5
## 1944              WSH         Washington              2.5         2.5
## 1945              WSH         Washington              2.5         2.5
## 1946              WSH         Washington              2.5         2.5
## 1947              WSH         Washington              2.5         2.5
## 1948              WSH         Washington              2.5         2.5
## 1949              WSH         Washington              2.5         2.5
## 1950              WSH         Washington              2.5         2.5
## 1951              WSH         Washington              2.5         2.5
## 1952              WSH         Washington              2.5         2.5
## 1953              WSH         Washington              2.5         2.5
## 1954              WSH         Washington              2.5         2.5
## 1955              WSH         Washington              2.5         2.5
## 1956              WSH         Washington              2.5         2.5
## 1957              WSH         Washington              2.5         2.5
## 1958              WSH         Washington              2.5         2.5
## 1959              WSH         Washington              2.5         2.5
## 1960              WSH         Washington              2.5         2.5
## 1961              WSH         Washington              2.5         2.5
## 1962              WSH         Washington              2.5         2.5
## 1963              WSH         Washington              2.5         2.5
## 1964              WSH         Washington              2.5         2.5
## 1965              WSH         Washington              2.5         2.5
## 1966              WSH         Washington              2.5         2.5
## 1967              WSH         Washington              2.5         2.5
## 1968              WSH         Washington              2.5         2.5
## 1969              WSH         Washington              2.5         2.5
## 1970              WSH         Washington              2.5         2.5
## 1971              WSH         Washington              2.5         2.5
## 1972              WSH         Washington              2.5         2.5
## 1973              WSH         Washington              2.5         2.5
## 1974              WSH         Washington              2.5         2.5
## 1975              WSH         Washington              2.5         2.5
## 1976              WSH         Washington              2.5         2.5
## 1977              WSH         Washington              2.5         2.5
## 1978              WSH         Washington              2.5         2.5
## 1979              WSH         Washington              2.5         2.5
## 1980              WSH         Washington              2.5         2.5
## 1981              WSH         Washington              2.5         2.5
## 1982              WSH         Washington              2.5         2.5
## 1983              WSH         Washington              2.5         2.5
## 1984              WSH         Washington              2.5         2.5
## 1985              WSH         Washington              2.5         2.5
## 1986              WSH         Washington              2.5         2.5
## 1987              WSH         Washington              2.5         2.5
## 1988              WSH         Washington              2.5         2.5
## 1989              WSH         Washington              2.5         2.5
## 1990              WSH         Washington              2.5         2.5
## 1991              WSH         Washington              2.5         2.5
## 1992              WSH         Washington              2.5         2.5
## 1993              WSH         Washington              2.5         2.5
## 1994              WSH         Washington              2.5         2.5
## 1995              WSH         Washington              2.5         2.5
## 1996              WSH         Washington              2.5         2.5
## 1997              WSH         Washington              2.5         2.5
## 1998              WSH         Washington              2.5         2.5
## 1999              WSH         Washington              2.5         2.5
## 2000              WSH         Washington              2.5         2.5
## 2001              WSH         Washington              2.5         2.5
## 2002              WSH         Washington              2.5         2.5
## 2003              WSH         Washington              2.5         2.5
## 2004              WSH         Washington              2.5         2.5
## 2005              WSH         Washington              2.5         2.5
## 2006              WSH         Washington              2.5         2.5
## 2007              WSH         Washington              2.5         2.5
## 2008              WSH         Washington              2.5         2.5
## 2009              WSH         Washington              2.5         2.5
## 2010              WSH         Washington              2.5         2.5
## 2011              WSH         Washington              2.5         2.5
## 2012              WSH         Washington              2.5         2.5
## 2013              WSH         Washington              2.5         2.5
## 2014              WSH         Washington              2.5         2.5
## 2015              WSH         Washington              2.5         2.5
## 2016              WSH         Washington              2.5         2.5
## 2017              WSH         Washington              2.5         2.5
## 2018              WSH         Washington              2.5         2.5
## 2019              WSH         Washington              2.5         2.5
## 2020              WSH         Washington              2.5         2.5
## 2021              WSH         Washington              2.5         2.5
## 2022              WSH         Washington              2.5         2.5
## 2023              WSH         Washington              2.5         2.5
## 2024              WSH         Washington              2.5         2.5
## 2025              WSH         Washington              2.5         2.5
## 2026              WSH         Washington              2.5         2.5
## 2027              WSH         Washington              2.5         2.5
## 2028              WSH         Washington              2.5         2.5
## 2029              WSH         Washington              2.5         2.5
## 2030              WSH         Washington              2.5         2.5
## 2031              WSH         Washington              2.5         2.5
## 2032              WSH         Washington              2.5         2.5
## 2033              WSH         Washington              2.5         2.5
## 2034              WSH         Washington              2.5         2.5
## 2035              WSH         Washington              2.5         2.5
## 2036              WSH         Washington              2.5         2.5
## 2037              WSH         Washington              2.5         2.5
## 2038              WSH         Washington              2.5         2.5
## 2039              SEA            Seattle              2.5         2.5
## 2040              SEA            Seattle              2.5         2.5
## 2041              SEA            Seattle              2.5         2.5
## 2042              SEA            Seattle              2.5         2.5
## 2043              SEA            Seattle              2.5         2.5
## 2044              SEA            Seattle              2.5         2.5
## 2045              SEA            Seattle              2.5         2.5
## 2046              SEA            Seattle              2.5         2.5
## 2047              SEA            Seattle              2.5         2.5
## 2048              SEA            Seattle              2.5         2.5
## 2049              SEA            Seattle              2.5         2.5
## 2050              SEA            Seattle              2.5         2.5
## 2051              SEA            Seattle              2.5         2.5
## 2052              SEA            Seattle              2.5         2.5
## 2053              SEA            Seattle              2.5         2.5
## 2054              SEA            Seattle              2.5         2.5
## 2055              SEA            Seattle              2.5         2.5
## 2056              SEA            Seattle              2.5         2.5
## 2057              SEA            Seattle              2.5         2.5
## 2058              SEA            Seattle              2.5         2.5
## 2059              SEA            Seattle              2.5         2.5
## 2060              SEA            Seattle              2.5         2.5
## 2061              SEA            Seattle              2.5         2.5
## 2062              SEA            Seattle              2.5         2.5
## 2063              SEA            Seattle              2.5         2.5
## 2064              SEA            Seattle              2.5         2.5
## 2065              SEA            Seattle              2.5         2.5
## 2066              SEA            Seattle              2.5         2.5
## 2067              SEA            Seattle              2.5         2.5
## 2068              SEA            Seattle              2.5         2.5
## 2069              SEA            Seattle              2.5         2.5
## 2070              SEA            Seattle              2.5         2.5
## 2071              SEA            Seattle              2.5         2.5
## 2072              SEA            Seattle              2.5         2.5
## 2073              SEA            Seattle              2.5         2.5
## 2074              SEA            Seattle              2.5         2.5
## 2075              SEA            Seattle              2.5         2.5
## 2076              SEA            Seattle              2.5         2.5
## 2077              SEA            Seattle              2.5         2.5
## 2078              SEA            Seattle              2.5         2.5
## 2079              SEA            Seattle              2.5         2.5
## 2080              SEA            Seattle              2.5         2.5
## 2081              SEA            Seattle              2.5         2.5
## 2082              SEA            Seattle              2.5         2.5
## 2083              SEA            Seattle              2.5         2.5
## 2084              SEA            Seattle              2.5         2.5
## 2085              SEA            Seattle              2.5         2.5
## 2086              SEA            Seattle              2.5         2.5
## 2087              SEA            Seattle              2.5         2.5
## 2088              SEA            Seattle              2.5         2.5
## 2089              SEA            Seattle              2.5         2.5
## 2090              SEA            Seattle              2.5         2.5
## 2091              SEA            Seattle              2.5         2.5
## 2092              SEA            Seattle              2.5         2.5
## 2093              SEA            Seattle              2.5         2.5
## 2094              SEA            Seattle              2.5         2.5
## 2095              SEA            Seattle              2.5         2.5
## 2096              SEA            Seattle              2.5         2.5
## 2097              SEA            Seattle              2.5         2.5
## 2098              SEA            Seattle              2.5         2.5
## 2099              SEA            Seattle              2.5         2.5
## 2100              SEA            Seattle              2.5         2.5
## 2101              SEA            Seattle              2.5         2.5
## 2102              SEA            Seattle              2.5         2.5
## 2103              SEA            Seattle              2.5         2.5
## 2104              SEA            Seattle              2.5         2.5
## 2105              SEA            Seattle              2.5         2.5
## 2106              SEA            Seattle              2.5         2.5
## 2107              SEA            Seattle              2.5         2.5
## 2108              SEA            Seattle              2.5         2.5
## 2109              SEA            Seattle              2.5         2.5
## 2110              SEA            Seattle              2.5         2.5
## 2111              SEA            Seattle              2.5         2.5
## 2112              SEA            Seattle              2.5         2.5
## 2113              SEA            Seattle              2.5         2.5
## 2114              SEA            Seattle              2.5         2.5
## 2115              SEA            Seattle              2.5         2.5
## 2116              SEA            Seattle              2.5         2.5
## 2117              SEA            Seattle              2.5         2.5
## 2118              SEA            Seattle              2.5         2.5
## 2119              SEA            Seattle              2.5         2.5
## 2120              SEA            Seattle              2.5         2.5
## 2121              SEA            Seattle              2.5         2.5
## 2122              SEA            Seattle              2.5         2.5
## 2123              SEA            Seattle              2.5         2.5
## 2124              SEA            Seattle              2.5         2.5
## 2125              SEA            Seattle              2.5         2.5
## 2126              SEA            Seattle              2.5         2.5
## 2127              SEA            Seattle              2.5         2.5
## 2128              SEA            Seattle              2.5         2.5
## 2129              SEA            Seattle              2.5         2.5
## 2130              SEA            Seattle              2.5         2.5
## 2131              SEA            Seattle              2.5         2.5
## 2132              SEA            Seattle              2.5         2.5
## 2133              SEA            Seattle              2.5         2.5
## 2134              SEA            Seattle              2.5         2.5
## 2135              SEA            Seattle              2.5         2.5
## 2136              SEA            Seattle              2.5         2.5
## 2137              SEA            Seattle              2.5         2.5
## 2138              SEA            Seattle              2.5         2.5
## 2139              SEA            Seattle              2.5         2.5
## 2140              SEA            Seattle              2.5         2.5
## 2141              SEA            Seattle              2.5         2.5
## 2142              SEA            Seattle              2.5         2.5
## 2143              SEA            Seattle              2.5         2.5
## 2144              SEA            Seattle              2.5         2.5
## 2145              SEA            Seattle              2.5         2.5
## 2146              SEA            Seattle              2.5         2.5
## 2147              SEA            Seattle              2.5         2.5
## 2148              SEA            Seattle              2.5         2.5
## 2149              SEA            Seattle              2.5         2.5
## 2150              SEA            Seattle              2.5         2.5
## 2151              SEA            Seattle              2.5         2.5
## 2152              SEA            Seattle              2.5         2.5
## 2153              SEA            Seattle              2.5         2.5
## 2154              SEA            Seattle              2.5         2.5
## 2155              SEA            Seattle              2.5         2.5
## 2156              SEA            Seattle              2.5         2.5
## 2157              SEA            Seattle              2.5         2.5
## 2158              SEA            Seattle              2.5         2.5
## 2159              SEA            Seattle              2.5         2.5
## 2160              SEA            Seattle              2.5         2.5
## 2161              SEA            Seattle              2.5         2.5
## 2162              SEA            Seattle              2.5         2.5
## 2163              SEA            Seattle              2.5         2.5
## 2164              SEA            Seattle              2.5         2.5
## 2165              SEA            Seattle              2.5         2.5
## 2166              SEA            Seattle              2.5         2.5
## 2167              SEA            Seattle              2.5         2.5
## 2168              SEA            Seattle              2.5         2.5
## 2169              SEA            Seattle              2.5         2.5
## 2170              SEA            Seattle              2.5         2.5
## 2171              SEA            Seattle              2.5         2.5
## 2172              SEA            Seattle              2.5         2.5
## 2173              SEA            Seattle              2.5         2.5
## 2174              SEA            Seattle              2.5         2.5
## 2175              SEA            Seattle              2.5         2.5
## 2176              SEA            Seattle              2.5         2.5
## 2177              SEA            Seattle              2.5         2.5
## 2178              SEA            Seattle              2.5         2.5
## 2179              SEA            Seattle              2.5         2.5
## 2180              SEA            Seattle              2.5         2.5
## 2181              SEA            Seattle              2.5         2.5
## 2182              SEA            Seattle              2.5         2.5
## 2183              SEA            Seattle              2.5         2.5
## 2184              SEA            Seattle              2.5         2.5
## 2185              SEA            Seattle              2.5         2.5
## 2186              SEA            Seattle              2.5         2.5
## 2187              SEA            Seattle              2.5         2.5
## 2188              SEA            Seattle              2.5         2.5
## 2189              SEA            Seattle              2.5         2.5
## 2190              SEA            Seattle              2.5         2.5
## 2191              SEA            Seattle              2.5         2.5
## 2192              SEA            Seattle              2.5         2.5
## 2193              SEA            Seattle              2.5         2.5
## 2194              SEA            Seattle              2.5         2.5
## 2195              SEA            Seattle              2.5         2.5
## 2196              SEA            Seattle              2.5         2.5
## 2197              SEA            Seattle              2.5         2.5
## 2198              SEA            Seattle              2.5         2.5
## 2199              SEA            Seattle              2.5         2.5
## 2200              SEA            Seattle              2.5         2.5
## 2201              SEA            Seattle              2.5         2.5
## 2202              SEA            Seattle              2.5         2.5
## 2203              SEA            Seattle              2.5         2.5
## 2204              SEA            Seattle              2.5         2.5
## 2205              SEA            Seattle              2.5         2.5
## 2206              SEA            Seattle              2.5         2.5
## 2207              SEA            Seattle              2.5         2.5
## 2208              SEA            Seattle              2.5         2.5
## 2209              SEA            Seattle              2.5         2.5
## 2210              SEA            Seattle              2.5         2.5
## 2211              SEA            Seattle              2.5         2.5
## 2212              SEA            Seattle              2.5         2.5
## 2213              SEA            Seattle              2.5         2.5
## 2214              SEA            Seattle              2.5         2.5
## 2215              SEA            Seattle              2.5         2.5
## 2216              SEA            Seattle              2.5         2.5
## 2217              SEA            Seattle              2.5         2.5
## 2218              SEA            Seattle              2.5         2.5
## 2219              SEA            Seattle              2.5         2.5
## 2220              SEA            Seattle              2.5         2.5
## 2221              SEA            Seattle              2.5         2.5
## 2222              SEA            Seattle              2.5         2.5
## 2223              SEA            Seattle              2.5         2.5
## 2224              SEA            Seattle              2.5         2.5
## 2225              SEA            Seattle              2.5         2.5
## 2226              SEA            Seattle              2.5         2.5
## 2227              SEA            Seattle              2.5         2.5
## 2228              SEA            Seattle              2.5         2.5
## 2229              SEA            Seattle              2.5         2.5
## 2230              SEA            Seattle              2.5         2.5
## 2231              SEA            Seattle              2.5         2.5
## 2232              SEA            Seattle              2.5         2.5
## 2233              SEA            Seattle              2.5         2.5
## 2234              SEA            Seattle              2.5         2.5
## 2235              SEA            Seattle              2.5         2.5
## 2236              SEA            Seattle              2.5         2.5
## 2237              SEA            Seattle              2.5         2.5
## 2238              SEA            Seattle              2.5         2.5
## 2239              SEA            Seattle              2.5         2.5
## 2240              SEA            Seattle              2.5         2.5
## 2241              SEA            Seattle              2.5         2.5
## 2242              SEA            Seattle              2.5         2.5
## 2243              SEA            Seattle              2.5         2.5
## 2244              SEA            Seattle              2.5         2.5
## 2245              SEA            Seattle              2.5         2.5
## 2246              SEA            Seattle              2.5         2.5
## 2247              SEA            Seattle              2.5         2.5
## 2248              SEA            Seattle              2.5         2.5
## 2249              SEA            Seattle              2.5         2.5
## 2250              SEA            Seattle              2.5         2.5
## 2251              SEA            Seattle              2.5         2.5
## 2252              SEA            Seattle              2.5         2.5
## 2253              SEA            Seattle              2.5         2.5
## 2254              SEA            Seattle              2.5         2.5
## 2255              SEA            Seattle              2.5         2.5
## 2256              SEA            Seattle              2.5         2.5
## 2257              SEA            Seattle              2.5         2.5
## 2258              SEA            Seattle              2.5         2.5
## 2259              SEA            Seattle              2.5         2.5
## 2260              SEA            Seattle              2.5         2.5
## 2261              SEA            Seattle              2.5         2.5
## 2262              SEA            Seattle              2.5         2.5
## 2263              SEA            Seattle              2.5         2.5
## 2264              SEA            Seattle              2.5         2.5
## 2265              SEA            Seattle              2.5         2.5
## 2266              SEA            Seattle              2.5         2.5
## 2267              SEA            Seattle              2.5         2.5
## 2268              SEA            Seattle              2.5         2.5
## 2269              SEA            Seattle              2.5         2.5
## 2270              SEA            Seattle              2.5         2.5
## 2271              SEA            Seattle              2.5         2.5
## 2272              SEA            Seattle              2.5         2.5
## 2273              SEA            Seattle              2.5         2.5
## 2274              SEA            Seattle              2.5         2.5
## 2275              SEA            Seattle              2.5         2.5
## 2276              SEA            Seattle              2.5         2.5
## 2277              SEA            Seattle              2.5         2.5
## 2278              SEA            Seattle              2.5         2.5
## 2279              SEA            Seattle              2.5         2.5
## 2280              SEA            Seattle              2.5         2.5
## 2281              SEA            Seattle              2.5         2.5
## 2282              SEA            Seattle              2.5         2.5
## 2283              SEA            Seattle              2.5         2.5
## 2284              SEA            Seattle              2.5         2.5
## 2285              SEA            Seattle              2.5         2.5
## 2286              SEA            Seattle              2.5         2.5
## 2287              SEA            Seattle              2.5         2.5
## 2288              SEA            Seattle              2.5         2.5
## 2289              SEA            Seattle              2.5         2.5
## 2290              SEA            Seattle              2.5         2.5
## 2291              SEA            Seattle              2.5         2.5
## 2292              SEA            Seattle              2.5         2.5
## 2293              SEA            Seattle              2.5         2.5
## 2294              SEA            Seattle              2.5         2.5
## 2295              SEA            Seattle              2.5         2.5
## 2296              SEA            Seattle              2.5         2.5
## 2297              SEA            Seattle              2.5         2.5
## 2298              SEA            Seattle              2.5         2.5
## 2299              SEA            Seattle              2.5         2.5
## 2300              SEA            Seattle              2.5         2.5
## 2301              SEA            Seattle              2.5         2.5
## 2302              SEA            Seattle              2.5         2.5
## 2303              SEA            Seattle              2.5         2.5
## 2304              SEA            Seattle              2.5         2.5
## 2305              SEA            Seattle              2.5         2.5
## 2306              SEA            Seattle              2.5         2.5
## 2307              SEA            Seattle              2.5         2.5
## 2308              SEA            Seattle              2.5         2.5
## 2309              SEA            Seattle              2.5         2.5
## 2310              SEA            Seattle              2.5         2.5
## 2311              SEA            Seattle              2.5         2.5
## 2312              SEA            Seattle              2.5         2.5
## 2313              SEA            Seattle              2.5         2.5
## 2314              SEA            Seattle              2.5         2.5
## 2315              SEA            Seattle              2.5         2.5
## 2316              SEA            Seattle              2.5         2.5
## 2317              SEA            Seattle              2.5         2.5
## 2318              SEA            Seattle              2.5         2.5
## 2319              SEA            Seattle              2.5         2.5
## 2320              SEA            Seattle              2.5         2.5
## 2321              SEA            Seattle              2.5         2.5
## 2322              SEA            Seattle              2.5         2.5
## 2323              SEA            Seattle              2.5         2.5
## 2324              SEA            Seattle              2.5         2.5
## 2325              SEA            Seattle              2.5         2.5
## 2326              SEA            Seattle              2.5         2.5
## 2327              SEA            Seattle              2.5         2.5
## 2328              SEA            Seattle              2.5         2.5
## 2329              SEA            Seattle              2.5         2.5
## 2330              SEA            Seattle              2.5         2.5
## 2331              SEA            Seattle              2.5         2.5
## 2332              SEA            Seattle              2.5         2.5
## 2333              SEA            Seattle              2.5         2.5
## 2334              SEA            Seattle              2.5         2.5
## 2335              SEA            Seattle              2.5         2.5
## 2336              SEA            Seattle              2.5         2.5
## 2337              SEA            Seattle              2.5         2.5
## 2338              SEA            Seattle              2.5         2.5
## 2339              SEA            Seattle              2.5         2.5
## 2340              SEA            Seattle              2.5         2.5
## 2341              SEA            Seattle              2.5         2.5
## 2342              SEA            Seattle              2.5         2.5
## 2343              SEA            Seattle              2.5         2.5
## 2344              SEA            Seattle              2.5         2.5
## 2345              SEA            Seattle              2.5         2.5
## 2346              SEA            Seattle              2.5         2.5
## 2347              SEA            Seattle              2.5         2.5
## 2348              SEA            Seattle              2.5         2.5
## 2349              SEA            Seattle              2.5         2.5
## 2350              SEA            Seattle              2.5         2.5
## 2351              SEA            Seattle              2.5         2.5
## 2352              SEA            Seattle              2.5         2.5
## 2353              SEA            Seattle              2.5         2.5
## 2354              SEA            Seattle              2.5         2.5
## 2355              SEA            Seattle              2.5         2.5
## 2356              SEA            Seattle              2.5         2.5
## 2357              SEA            Seattle              2.5         2.5
## 2358              SEA            Seattle              2.5         2.5
## 2359              SEA            Seattle              2.5         2.5
## 2360              SEA            Seattle              2.5         2.5
## 2361              SEA            Seattle              2.5         2.5
## 2362              SEA            Seattle              2.5         2.5
## 2363              SEA            Seattle              2.5         2.5
## 2364              SEA            Seattle              2.5         2.5
## 2365              SEA            Seattle              2.5         2.5
## 2366              SEA            Seattle              2.5         2.5
## 2367              SEA            Seattle              2.5         2.5
## 2368              SEA            Seattle              2.5         2.5
## 2369              SEA            Seattle              2.5         2.5
## 2370              SEA            Seattle              2.5         2.5
## 2371              SEA            Seattle              2.5         2.5
## 2372              SEA            Seattle              2.5         2.5
## 2373              SEA            Seattle              2.5         2.5
## 2374              SEA            Seattle              2.5         2.5
## 2375              SEA            Seattle              2.5         2.5
## 2376              SEA            Seattle              2.5         2.5
## 2377              SEA            Seattle              2.5         2.5
## 2378              SEA            Seattle              2.5         2.5
## 2379              SEA            Seattle              2.5         2.5
## 2380              SEA            Seattle              2.5         2.5
##      home_favorite clock_minutes clock_seconds half lag_half lead_half
## 1             TRUE            10            00    1     <NA>         1
## 2             TRUE             9            37    1        1         1
## 3             TRUE             9            36    1        1         1
## 4             TRUE             9            16    1        1         1
## 5             TRUE             9            15    1        1         1
## 6             TRUE             9            04    1        1         1
## 7             TRUE             8            47    1        1         1
## 8             TRUE             8            23    1        1         1
## 9             TRUE             8            21    1        1         1
## 10            TRUE             8            18    1        1         1
## 11            TRUE             8            18    1        1         1
## 12            TRUE             8            05    1        1         1
## 13            TRUE             7            51    1        1         1
## 14            TRUE             7            47    1        1         1
## 15            TRUE             7            36    1        1         1
## 16            TRUE             7            31    1        1         1
## 17            TRUE             7            12    1        1         1
## 18            TRUE             6            58    1        1         1
## 19            TRUE             6            36    1        1         1
## 20            TRUE             6            36    1        1         1
## 21            TRUE             6            36    1        1         1
## 22            TRUE             6            26    1        1         1
## 23            TRUE             6            23    1        1         1
## 24            TRUE             6            22    1        1         1
## 25            TRUE             6            08    1        1         1
## 26            TRUE             6            05    1        1         1
## 27            TRUE             6            02    1        1         1
## 28            TRUE             5            47    1        1         1
## 29            TRUE             5            42    1        1         1
## 30            TRUE             5            28    1        1         1
## 31            TRUE             5            26    1        1         1
## 32            TRUE             5            18    1        1         1
## 33            TRUE             5            04    1        1         1
## 34            TRUE             4            38    1        1         1
## 35            TRUE             4            35    1        1         1
## 36            TRUE             4            30    1        1         1
## 37            TRUE             4            12    1        1         1
## 38            TRUE             4            09    1        1         1
## 39            TRUE             4            00    1        1         1
## 40            TRUE             3            57    1        1         1
## 41            TRUE             3            51    1        1         1
## 42            TRUE             3            47    1        1         1
## 43            TRUE             3            46    1        1         1
## 44            TRUE             3            46    1        1         1
## 45            TRUE             3            46    1        1         1
## 46            TRUE             3            46    1        1         1
## 47            TRUE             3            46    1        1         1
## 48            TRUE             3            46    1        1         1
## 49            TRUE             3            46    1        1         1
## 50            TRUE             3            41    1        1         1
## 51            TRUE             3            26    1        1         1
## 52            TRUE             3            22    1        1         1
## 53            TRUE             3            19    1        1         1
## 54            TRUE             3            19    1        1         1
## 55            TRUE             3            19    1        1         1
## 56            TRUE             3            06    1        1         1
## 57            TRUE             3            04    1        1         1
## 58            TRUE             3            04    1        1         1
## 59            TRUE             3            03    1        1         1
## 60            TRUE             3            03    1        1         1
## 61            TRUE             3            02    1        1         1
## 62            TRUE             2            56    1        1         1
## 63            TRUE             2            53    1        1         1
## 64            TRUE             2            49    1        1         1
## 65            TRUE             2            33    1        1         1
## 66            TRUE             2            32    1        1         1
## 67            TRUE             2            32    1        1         1
## 68            TRUE             2            27    1        1         1
## 69            TRUE             2            17    1        1         1
## 70            TRUE             2            13    1        1         1
## 71            TRUE             2            03    1        1         1
## 72            TRUE             2            03    1        1         1
## 73            TRUE             2            03    1        1         1
## 74            TRUE             2            03    1        1         1
## 75            TRUE             2            03    1        1         1
## 76            TRUE             2            03    1        1         1
## 77            TRUE             2            03    1        1         1
## 78            TRUE             2            03    1        1         1
## 79            TRUE             1            55    1        1         1
## 80            TRUE             1            55    1        1         1
## 81            TRUE             1            48    1        1         1
## 82            TRUE             1            42    1        1         1
## 83            TRUE             1            30    1        1         1
## 84            TRUE             1            14    1        1         1
## 85            TRUE             1            14    1        1         1
## 86            TRUE             1            07    1        1         1
## 87            TRUE             1            04    1        1         1
## 88            TRUE             0          53.8    1        1         1
## 89            TRUE             0          39.8    1        1         1
## 90            TRUE             0          37.3    1        1         1
## 91            TRUE             0          30.4    1        1         1
## 92            TRUE             0          29.1    1        1         1
## 93            TRUE             0          17.3    1        1         1
## 94            TRUE             0           4.1    1        1         1
## 95            TRUE             0           0.0    1        1         1
## 96            TRUE             0           0.0    1        1         1
## 97            TRUE            10            00    1        1         1
## 98            TRUE            10            00    1        1         1
## 99            TRUE             9            47    1        1         1
## 100           TRUE             9            40    1        1         1
## 101           TRUE             9            27    1        1         1
## 102           TRUE             9            15    1        1         1
## 103           TRUE             9            15    1        1         1
## 104           TRUE             9            03    1        1         1
## 105           TRUE             8            57    1        1         1
## 106           TRUE             8            52    1        1         1
## 107           TRUE             8            51    1        1         1
## 108           TRUE             8            38    1        1         1
## 109           TRUE             8            34    1        1         1
## 110           TRUE             8            27    1        1         1
## 111           TRUE             8            27    1        1         1
## 112           TRUE             8            27    1        1         1
## 113           TRUE             8            27    1        1         1
## 114           TRUE             8            27    1        1         1
## 115           TRUE             8            27    1        1         1
## 116           TRUE             8            19    1        1         1
## 117           TRUE             8            19    1        1         1
## 118           TRUE             8            02    1        1         1
## 119           TRUE             8            00    1        1         1
## 120           TRUE             7            58    1        1         1
## 121           TRUE             7            46    1        1         1
## 122           TRUE             7            46    1        1         1
## 123           TRUE             7            46    1        1         1
## 124           TRUE             7            22    1        1         1
## 125           TRUE             7            19    1        1         1
## 126           TRUE             7            07    1        1         1
## 127           TRUE             6            55    1        1         1
## 128           TRUE             6            51    1        1         1
## 129           TRUE             6            46    1        1         1
## 130           TRUE             6            43    1        1         1
## 131           TRUE             6            39    1        1         1
## 132           TRUE             6            37    1        1         1
## 133           TRUE             6            37    1        1         1
## 134           TRUE             6            37    1        1         1
## 135           TRUE             6            37    1        1         1
## 136           TRUE             6            37    1        1         1
## 137           TRUE             6            37    1        1         1
## 138           TRUE             6            30    1        1         1
## 139           TRUE             6            17    1        1         1
## 140           TRUE             6            06    1        1         1
## 141           TRUE             6            02    1        1         1
## 142           TRUE             5            52    1        1         1
## 143           TRUE             5            49    1        1         1
## 144           TRUE             5            33    1        1         1
## 145           TRUE             5            31    1        1         1
## 146           TRUE             5            29    1        1         1
## 147           TRUE             5            27    1        1         1
## 148           TRUE             5            19    1        1         1
## 149           TRUE             5            03    1        1         1
## 150           TRUE             5            00    1        1         1
## 151           TRUE             4            52    1        1         1
## 152           TRUE             4            49    1        1         1
## 153           TRUE             4            46    1        1         1
## 154           TRUE             4            46    1        1         1
## 155           TRUE             4            35    1        1         1
## 156           TRUE             4            17    1        1         1
## 157           TRUE             4            17    1        1         1
## 158           TRUE             4            06    1        1         1
## 159           TRUE             4            06    1        1         1
## 160           TRUE             3            59    1        1         1
## 161           TRUE             3            55    1        1         1
## 162           TRUE             3            50    1        1         1
## 163           TRUE             3            38    1        1         1
## 164           TRUE             3            35    1        1         1
## 165           TRUE             3            31    1        1         1
## 166           TRUE             3            27    1        1         1
## 167           TRUE             3            22    1        1         1
## 168           TRUE             3            02    1        1         1
## 169           TRUE             2            45    1        1         1
## 170           TRUE             2            29    1        1         1
## 171           TRUE             2            14    1        1         1
## 172           TRUE             2            12    1        1         1
## 173           TRUE             2            03    1        1         1
## 174           TRUE             2            03    1        1         1
## 175           TRUE             2            03    1        1         1
## 176           TRUE             2            03    1        1         1
## 177           TRUE             1            50    1        1         1
## 178           TRUE             1            35    1        1         1
## 179           TRUE             1            34    1        1         1
## 180           TRUE             1            34    1        1         1
## 181           TRUE             1            30    1        1         1
## 182           TRUE             1            12    1        1         1
## 183           TRUE             1            02    1        1         1
## 184           TRUE             1            02    1        1         1
## 185           TRUE             1            02    1        1         1
## 186           TRUE             1            00    1        1         1
## 187           TRUE             0          50.1    1        1         1
## 188           TRUE             0          48.5    1        1         1
## 189           TRUE             0          42.2    1        1         1
## 190           TRUE             0          31.2    1        1         1
## 191           TRUE             0          19.0    1        1         1
## 192           TRUE             0          19.0    1        1         1
## 193           TRUE             0          19.0    1        1         1
## 194           TRUE             0          19.0    1        1         1
## 195           TRUE             0           1.5    1        1         1
## 196           TRUE             0           0.1    1        1         1
## 197           TRUE             0           0.0    1        1         2
## 198           TRUE            10            00    2        1         2
## 199           TRUE            10            00    2        2         2
## 200           TRUE             9            44    2        2         2
## 201           TRUE             9            41    2        2         2
## 202           TRUE             9            37    2        2         2
## 203           TRUE             9            18    2        2         2
## 204           TRUE             9            17    2        2         2
## 205           TRUE             9            11    2        2         2
## 206           TRUE             8            55    2        2         2
## 207           TRUE             8            53    2        2         2
## 208           TRUE             8            52    2        2         2
## 209           TRUE             8            50    2        2         2
## 210           TRUE             8            49    2        2         2
## 211           TRUE             8            41    2        2         2
## 212           TRUE             8            38    2        2         2
## 213           TRUE             8            36    2        2         2
## 214           TRUE             8            26    2        2         2
## 215           TRUE             8            22    2        2         2
## 216           TRUE             8            02    2        2         2
## 217           TRUE             7            59    2        2         2
## 218           TRUE             7            52    2        2         2
## 219           TRUE             7            29    2        2         2
## 220           TRUE             7            22    2        2         2
## 221           TRUE             7            14    2        2         2
## 222           TRUE             7            11    2        2         2
## 223           TRUE             6            58    2        2         2
## 224           TRUE             6            54    2        2         2
## 225           TRUE             6            52    2        2         2
## 226           TRUE             6            52    2        2         2
## 227           TRUE             6            50    2        2         2
## 228           TRUE             6            50    2        2         2
## 229           TRUE             6            39    2        2         2
## 230           TRUE             6            36    2        2         2
## 231           TRUE             6            19    2        2         2
## 232           TRUE             6            15    2        2         2
## 233           TRUE             6            15    2        2         2
## 234           TRUE             6            00    2        2         2
## 235           TRUE             5            42    2        2         2
## 236           TRUE             5            26    2        2         2
## 237           TRUE             5            26    2        2         2
## 238           TRUE             5            26    2        2         2
## 239           TRUE             5            11    2        2         2
## 240           TRUE             4            48    2        2         2
## 241           TRUE             4            47    2        2         2
## 242           TRUE             4            43    2        2         2
## 243           TRUE             4            43    2        2         2
## 244           TRUE             4            43    2        2         2
## 245           TRUE             4            43    2        2         2
## 246           TRUE             4            28    2        2         2
## 247           TRUE             4            24    2        2         2
## 248           TRUE             4            22    2        2         2
## 249           TRUE             4            06    2        2         2
## 250           TRUE             4            05    2        2         2
## 251           TRUE             3            53    2        2         2
## 252           TRUE             3            51    2        2         2
## 253           TRUE             3            48    2        2         2
## 254           TRUE             3            34    2        2         2
## 255           TRUE             3            31    2        2         2
## 256           TRUE             3            25    2        2         2
## 257           TRUE             3            23    2        2         2
## 258           TRUE             3            20    2        2         2
## 259           TRUE             3            18    2        2         2
## 260           TRUE             3            13    2        2         2
## 261           TRUE             3            13    2        2         2
## 262           TRUE             3            13    2        2         2
## 263           TRUE             3            03    2        2         2
## 264           TRUE             3            01    2        2         2
## 265           TRUE             3            01    2        2         2
## 266           TRUE             2            49    2        2         2
## 267           TRUE             2            42    2        2         2
## 268           TRUE             2            30    2        2         2
## 269           TRUE             2            20    2        2         2
## 270           TRUE             2            19    2        2         2
## 271           TRUE             2            14    2        2         2
## 272           TRUE             2            09    2        2         2
## 273           TRUE             2            09    2        2         2
## 274           TRUE             1            45    2        2         2
## 275           TRUE             1            41    2        2         2
## 276           TRUE             1            36    2        2         2
## 277           TRUE             1            17    2        2         2
## 278           TRUE             1            15    2        2         2
## 279           TRUE             1            15    2        2         2
## 280           TRUE             1            02    2        2         2
## 281           TRUE             0          59.8    2        2         2
## 282           TRUE             0          58.0    2        2         2
## 283           TRUE             0          44.4    2        2         2
## 284           TRUE             0          30.0    2        2         2
## 285           TRUE             0          27.3    2        2         2
## 286           TRUE             0          16.8    2        2         2
## 287           TRUE             0          16.8    2        2         2
## 288           TRUE             0           2.3    2        2         2
## 289           TRUE             0           1.1    2        2         2
## 290           TRUE             0           0.0    2        2         2
## 291           TRUE             9            36    2        2         2
## 292           TRUE             9            15    2        2         2
## 293           TRUE             8            49    2        2         2
## 294           TRUE             8            47    2        2         2
## 295           TRUE             8            43    2        2         2
## 296           TRUE             8            43    2        2         2
## 297           TRUE             8            24    2        2         2
## 298           TRUE             8            21    2        2         2
## 299           TRUE             8            14    2        2         2
## 300           TRUE             8            12    2        2         2
## 301           TRUE             8            12    2        2         2
## 302           TRUE             7            57    2        2         2
## 303           TRUE             7            57    2        2         2
## 304           TRUE             7            42    2        2         2
## 305           TRUE             7            37    2        2         2
## 306           TRUE             7            33    2        2         2
## 307           TRUE             7            17    2        2         2
## 308           TRUE             7            17    2        2         2
## 309           TRUE             7            17    2        2         2
## 310           TRUE             7            17    2        2         2
## 311           TRUE             7            17    2        2         2
## 312           TRUE             7            17    2        2         2
## 313           TRUE             7            03    2        2         2
## 314           TRUE             6            47    2        2         2
## 315           TRUE             6            47    2        2         2
## 316           TRUE             6            39    2        2         2
## 317           TRUE             6            29    2        2         2
## 318           TRUE             6            23    2        2         2
## 319           TRUE             6            17    2        2         2
## 320           TRUE             6            11    2        2         2
## 321           TRUE             5            56    2        2         2
## 322           TRUE             5            56    2        2         2
## 323           TRUE             5            48    2        2         2
## 324           TRUE             5            45    2        2         2
## 325           TRUE             5            31    2        2         2
## 326           TRUE             5            29    2        2         2
## 327           TRUE             5            17    2        2         2
## 328           TRUE             5            16    2        2         2
## 329           TRUE             5            16    2        2         2
## 330           TRUE             5            06    2        2         2
## 331           TRUE             5            06    2        2         2
## 332           TRUE             5            06    2        2         2
## 333           TRUE             5            06    2        2         2
## 334           TRUE             5            06    2        2         2
## 335           TRUE             4            50    2        2         2
## 336           TRUE             4            48    2        2         2
## 337           TRUE             4            48    2        2         2
## 338           TRUE             4            31    2        2         2
## 339           TRUE             4            26    2        2         2
## 340           TRUE             4            26    2        2         2
## 341           TRUE             4            26    2        2         2
## 342           TRUE             4            26    2        2         2
## 343           TRUE             4            26    2        2         2
## 344           TRUE             4            26    2        2         2
## 345           TRUE             4            15    2        2         2
## 346           TRUE             4            10    2        2         2
## 347           TRUE             3            58    2        2         2
## 348           TRUE             3            58    2        2         2
## 349           TRUE             3            58    2        2         2
## 350           TRUE             3            38    2        2         2
## 351           TRUE             3            37    2        2         2
## 352           TRUE             3            36    2        2         2
## 353           TRUE             3            35    2        2         2
## 354           TRUE             3            20    2        2         2
## 355           TRUE             3            09    2        2         2
## 356           TRUE             3            08    2        2         2
## 357           TRUE             3            05    2        2         2
## 358           TRUE             2            53    2        2         2
## 359           TRUE             2            52    2        2         2
## 360           TRUE             2            52    2        2         2
## 361           TRUE             2            52    2        2         2
## 362           TRUE             2            52    2        2         2
## 363           TRUE             2            42    2        2         2
## 364           TRUE             2            42    2        2         2
## 365           TRUE             2            42    2        2         2
## 366           TRUE             2            42    2        2         2
## 367           TRUE             2            33    2        2         2
## 368           TRUE             2            33    2        2         2
## 369           TRUE             2            33    2        2         2
## 370           TRUE             2            33    2        2         2
## 371           TRUE             2            22    2        2         2
## 372           TRUE             2            06    2        2         2
## 373           TRUE             1            58    2        2         2
## 374           TRUE             1            58    2        2         2
## 375           TRUE             1            56    2        2         2
## 376           TRUE             1            45    2        2         2
## 377           TRUE             1            41    2        2         2
## 378           TRUE             1            32    2        2         2
## 379           TRUE             1            32    2        2         2
## 380           TRUE             1            27    2        2         2
## 381           TRUE             1            27    2        2         2
## 382           TRUE             1            27    2        2         2
## 383           TRUE             1            27    2        2         2
## 384           TRUE             1            27    2        2         2
## 385           TRUE             1            13    2        2         2
## 386           TRUE             1            12    2        2         2
## 387           TRUE             1            12    2        2         2
## 388           TRUE             0          58.5    2        2         2
## 389           TRUE             0          57.6    2        2         2
## 390           TRUE             0          47.0    2        2         2
## 391           TRUE             0          39.7    2        2         2
## 392           TRUE             0          30.9    2        2         2
## 393           TRUE             0          30.9    2        2         2
## 394           TRUE             0          30.9    2        2         2
## 395           TRUE             0          30.9    2        2         2
## 396           TRUE             0          21.8    2        2         2
## 397           TRUE             0          21.8    2        2         2
## 398           TRUE             0          21.8    2        2         2
## 399           TRUE             0          21.8    2        2         2
## 400           TRUE             0          21.8    2        2         2
## 401           TRUE             0          21.8    2        2         2
## 402           TRUE             0           5.8    2        2         2
## 403           TRUE             0           5.8    2        2         2
## 404           TRUE             0           5.8    2        2         2
## 405           TRUE             0           5.8    2        2         2
## 406           TRUE             0           5.8    2        2         2
## 407           TRUE             0           0.4    2        2         2
## 408           TRUE             0           0.4    2        2         2
## 409           TRUE             0           0.4    2        2         2
## 410           TRUE             0           0.4    2        2         2
## 411           TRUE             0           0.0    2        2         2
## 412           TRUE             0           0.0    2        2      <NA>
## 413           TRUE            10            00    1     <NA>         1
## 414           TRUE             9            46    1        1         1
## 415           TRUE             9            29    1        1         1
## 416           TRUE             9            29    1        1         1
## 417           TRUE             9            29    1        1         1
## 418           TRUE             9            18    1        1         1
## 419           TRUE             9            13    1        1         1
## 420           TRUE             9            06    1        1         1
## 421           TRUE             8            44    1        1         1
## 422           TRUE             8            40    1        1         1
## 423           TRUE             8            38    1        1         1
## 424           TRUE             8            34    1        1         1
## 425           TRUE             8            28    1        1         1
## 426           TRUE             8            23    1        1         1
## 427           TRUE             8            23    1        1         1
## 428           TRUE             8            03    1        1         1
## 429           TRUE             8            03    1        1         1
## 430           TRUE             8            03    1        1         1
## 431           TRUE             7            44    1        1         1
## 432           TRUE             7            35    1        1         1
## 433           TRUE             7            28    1        1         1
## 434           TRUE             7            11    1        1         1
## 435           TRUE             7            11    1        1         1
## 436           TRUE             7            11    1        1         1
## 437           TRUE             7            11    1        1         1
## 438           TRUE             6            57    1        1         1
## 439           TRUE             6            35    1        1         1
## 440           TRUE             6            19    1        1         1
## 441           TRUE             6            19    1        1         1
## 442           TRUE             6            19    1        1         1
## 443           TRUE             6            12    1        1         1
## 444           TRUE             6            12    1        1         1
## 445           TRUE             6            02    1        1         1
## 446           TRUE             5            46    1        1         1
## 447           TRUE             5            46    1        1         1
## 448           TRUE             5            46    1        1         1
## 449           TRUE             5            31    1        1         1
## 450           TRUE             5            14    1        1         1
## 451           TRUE             5            14    1        1         1
## 452           TRUE             5            14    1        1         1
## 453           TRUE             5            14    1        1         1
## 454           TRUE             5            14    1        1         1
## 455           TRUE             4            57    1        1         1
## 456           TRUE             4            55    1        1         1
## 457           TRUE             4            52    1        1         1
## 458           TRUE             4            39    1        1         1
## 459           TRUE             4            36    1        1         1
## 460           TRUE             4            34    1        1         1
## 461           TRUE             4            34    1        1         1
## 462           TRUE             4            34    1        1         1
## 463           TRUE             4            34    1        1         1
## 464           TRUE             4            30    1        1         1
## 465           TRUE             4            13    1        1         1
## 466           TRUE             3            58    1        1         1
## 467           TRUE             3            56    1        1         1
## 468           TRUE             3            52    1        1         1
## 469           TRUE             3            52    1        1         1
## 470           TRUE             3            52    1        1         1
## 471           TRUE             3            37    1        1         1
## 472           TRUE             3            37    1        1         1
## 473           TRUE             3            37    1        1         1
## 474           TRUE             3            37    1        1         1
## 475           TRUE             3            34    1        1         1
## 476           TRUE             3            22    1        1         1
## 477           TRUE             3            09    1        1         1
## 478           TRUE             3            09    1        1         1
## 479           TRUE             3            09    1        1         1
## 480           TRUE             2            55    1        1         1
## 481           TRUE             2            51    1        1         1
## 482           TRUE             2            44    1        1         1
## 483           TRUE             2            34    1        1         1
## 484           TRUE             2            17    1        1         1
## 485           TRUE             2            03    1        1         1
## 486           TRUE             1            59    1        1         1
## 487           TRUE             1            50    1        1         1
## 488           TRUE             1            41    1        1         1
## 489           TRUE             1            41    1        1         1
## 490           TRUE             1            41    1        1         1
## 491           TRUE             1            41    1        1         1
## 492           TRUE             1            41    1        1         1
## 493           TRUE             1            31    1        1         1
## 494           TRUE             1            17    1        1         1
## 495           TRUE             1            08    1        1         1
## 496           TRUE             1            04    1        1         1
## 497           TRUE             0          50.9    1        1         1
## 498           TRUE             0          50.7    1        1         1
## 499           TRUE             0          50.7    1        1         1
## 500           TRUE             0          50.7    1        1         1
## 501           TRUE             0          50.7    1        1         1
## 502           TRUE             0          50.7    1        1         1
## 503           TRUE             0          50.7    1        1         1
## 504           TRUE             0          50.7    1        1         1
## 505           TRUE             0          32.0    1        1         1
## 506           TRUE             0          18.8    1        1         1
## 507           TRUE             0          14.2    1        1         1
## 508           TRUE             0          14.2    1        1         1
## 509           TRUE             0          13.6    1        1         1
## 510           TRUE             0          12.6    1        1         1
## 511           TRUE             0          12.3    1        1         1
## 512           TRUE             0           2.2    1        1         1
## 513           TRUE             0           2.2    1        1         1
## 514           TRUE             0           0.0    1        1         1
## 515           TRUE            10            00    1        1         1
## 516           TRUE            10            00    1        1         1
## 517           TRUE             9            49    1        1         1
## 518           TRUE             9            49    1        1         1
## 519           TRUE             9            49    1        1         1
## 520           TRUE             9            36    1        1         1
## 521           TRUE             9            32    1        1         1
## 522           TRUE             9            22    1        1         1
## 523           TRUE             9            17    1        1         1
## 524           TRUE             9            10    1        1         1
## 525           TRUE             9            04    1        1         1
## 526           TRUE             8            50    1        1         1
## 527           TRUE             8            44    1        1         1
## 528           TRUE             8            39    1        1         1
## 529           TRUE             8            37    1        1         1
## 530           TRUE             8            26    1        1         1
## 531           TRUE             8            26    1        1         1
## 532           TRUE             8            26    1        1         1
## 533           TRUE             8            07    1        1         1
## 534           TRUE             8            07    1        1         1
## 535           TRUE             8            07    1        1         1
## 536           TRUE             8            07    1        1         1
## 537           TRUE             8            07    1        1         1
## 538           TRUE             8            07    1        1         1
## 539           TRUE             7            53    1        1         1
## 540           TRUE             7            49    1        1         1
## 541           TRUE             7            41    1        1         1
## 542           TRUE             7            37    1        1         1
## 543           TRUE             7            37    1        1         1
## 544           TRUE             7            30    1        1         1
## 545           TRUE             7            13    1        1         1
## 546           TRUE             7            10    1        1         1
## 547           TRUE             7            06    1        1         1
## 548           TRUE             6            51    1        1         1
## 549           TRUE             6            32    1        1         1
## 550           TRUE             6            28    1        1         1
## 551           TRUE             6            20    1        1         1
## 552           TRUE             6            20    1        1         1
## 553           TRUE             6            20    1        1         1
## 554           TRUE             6            20    1        1         1
## 555           TRUE             6            04    1        1         1
## 556           TRUE             5            50    1        1         1
## 557           TRUE             5            30    1        1         1
## 558           TRUE             5            14    1        1         1
## 559           TRUE             5            10    1        1         1
## 560           TRUE             5            06    1        1         1
## 561           TRUE             5            02    1        1         1
## 562           TRUE             4            59    1        1         1
## 563           TRUE             4            55    1        1         1
## 564           TRUE             4            42    1        1         1
## 565           TRUE             4            25    1        1         1
## 566           TRUE             4            23    1        1         1
## 567           TRUE             4            23    1        1         1
## 568           TRUE             4            23    1        1         1
## 569           TRUE             4            23    1        1         1
## 570           TRUE             4            08    1        1         1
## 571           TRUE             3            55    1        1         1
## 572           TRUE             3            51    1        1         1
## 573           TRUE             3            46    1        1         1
## 574           TRUE             3            31    1        1         1
## 575           TRUE             3            30    1        1         1
## 576           TRUE             3            30    1        1         1
## 577           TRUE             3            17    1        1         1
## 578           TRUE             3            10    1        1         1
## 579           TRUE             3            04    1        1         1
## 580           TRUE             3            04    1        1         1
## 581           TRUE             2            54    1        1         1
## 582           TRUE             2            51    1        1         1
## 583           TRUE             2            35    1        1         1
## 584           TRUE             2            34    1        1         1
## 585           TRUE             2            34    1        1         1
## 586           TRUE             2            34    1        1         1
## 587           TRUE             2            23    1        1         1
## 588           TRUE             2            16    1        1         1
## 589           TRUE             1            59    1        1         1
## 590           TRUE             1            45    1        1         1
## 591           TRUE             1            44    1        1         1
## 592           TRUE             1            44    1        1         1
## 593           TRUE             1            30    1        1         1
## 594           TRUE             1            25    1        1         1
## 595           TRUE             1            20    1        1         1
## 596           TRUE             1            16    1        1         1
## 597           TRUE             1            05    1        1         1
## 598           TRUE             0          58.7    1        1         1
## 599           TRUE             0          48.5    1        1         1
## 600           TRUE             0          34.4    1        1         1
## 601           TRUE             0          30.9    1        1         1
## 602           TRUE             0          27.4    1        1         1
## 603           TRUE             0          27.4    1        1         1
## 604           TRUE             0          25.0    1        1         1
## 605           TRUE             0           5.9    1        1         1
## 606           TRUE             0           1.2    1        1         1
## 607           TRUE             0           1.2    1        1         1
## 608           TRUE             0           1.2    1        1         1
## 609           TRUE             0           0.0    1        1         2
## 610           TRUE            10            00    2        1         2
## 611           TRUE            10            00    2        2         2
## 612           TRUE            10            00    2        2         2
## 613           TRUE             9            47    2        2         2
## 614           TRUE             9            31    2        2         2
## 615           TRUE             9            30    2        2         2
## 616           TRUE             9            21    2        2         2
## 617           TRUE             9            19    2        2         2
## 618           TRUE             9            04    2        2         2
## 619           TRUE             9            01    2        2         2
## 620           TRUE             8            56    2        2         2
## 621           TRUE             8            45    2        2         2
## 622           TRUE             8            41    2        2         2
## 623           TRUE             8            40    2        2         2
## 624           TRUE             8            37    2        2         2
## 625           TRUE             8            34    2        2         2
## 626           TRUE             8            20    2        2         2
## 627           TRUE             7            58    2        2         2
## 628           TRUE             7            58    2        2         2
## 629           TRUE             7            58    2        2         2
## 630           TRUE             7            58    2        2         2
## 631           TRUE             7            45    2        2         2
## 632           TRUE             7            30    2        2         2
## 633           TRUE             7            24    2        2         2
## 634           TRUE             7            10    2        2         2
## 635           TRUE             7            10    2        2         2
## 636           TRUE             7            10    2        2         2
## 637           TRUE             7            10    2        2         2
## 638           TRUE             6            51    2        2         2
## 639           TRUE             6            44    2        2         2
## 640           TRUE             6            31    2        2         2
## 641           TRUE             6            31    2        2         2
## 642           TRUE             6            21    2        2         2
## 643           TRUE             6            18    2        2         2
## 644           TRUE             6            05    2        2         2
## 645           TRUE             6            00    2        2         2
## 646           TRUE             5            47    2        2         2
## 647           TRUE             5            23    2        2         2
## 648           TRUE             5            23    2        2         2
## 649           TRUE             5            09    2        2         2
## 650           TRUE             5            04    2        2         2
## 651           TRUE             4            59    2        2         2
## 652           TRUE             4            56    2        2         2
## 653           TRUE             4            51    2        2         2
## 654           TRUE             4            46    2        2         2
## 655           TRUE             4            28    2        2         2
## 656           TRUE             4            26    2        2         2
## 657           TRUE             4            06    2        2         2
## 658           TRUE             4            02    2        2         2
## 659           TRUE             3            44    2        2         2
## 660           TRUE             3            40    2        2         2
## 661           TRUE             3            33    2        2         2
## 662           TRUE             3            33    2        2         2
## 663           TRUE             3            33    2        2         2
## 664           TRUE             3            33    2        2         2
## 665           TRUE             3            23    2        2         2
## 666           TRUE             3            20    2        2         2
## 667           TRUE             3            20    2        2         2
## 668           TRUE             3            04    2        2         2
## 669           TRUE             3            01    2        2         2
## 670           TRUE             2            52    2        2         2
## 671           TRUE             2            49    2        2         2
## 672           TRUE             2            40    2        2         2
## 673           TRUE             2            40    2        2         2
## 674           TRUE             2            23    2        2         2
## 675           TRUE             2            17    2        2         2
## 676           TRUE             2            16    2        2         2
## 677           TRUE             2            16    2        2         2
## 678           TRUE             2            10    2        2         2
## 679           TRUE             2            00    2        2         2
## 680           TRUE             1            46    2        2         2
## 681           TRUE             1            43    2        2         2
## 682           TRUE             1            23    2        2         2
## 683           TRUE             1            17    2        2         2
## 684           TRUE             1            17    2        2         2
## 685           TRUE             0          59.0    2        2         2
## 686           TRUE             0          51.2    2        2         2
## 687           TRUE             0          51.2    2        2         2
## 688           TRUE             0          51.2    2        2         2
## 689           TRUE             0          51.2    2        2         2
## 690           TRUE             0          51.2    2        2         2
## 691           TRUE             0          51.2    2        2         2
## 692           TRUE             0          34.5    2        2         2
## 693           TRUE             0          23.5    2        2         2
## 694           TRUE             0          23.5    2        2         2
## 695           TRUE             0          23.5    2        2         2
## 696           TRUE             0          23.5    2        2         2
## 697           TRUE             0           6.4    2        2         2
## 698           TRUE             0           2.5    2        2         2
## 699           TRUE             0           2.5    2        2         2
## 700           TRUE             0           0.0    2        2         2
## 701           TRUE             9            44    2        2         2
## 702           TRUE             9            40    2        2         2
## 703           TRUE             9            38    2        2         2
## 704           TRUE             9            35    2        2         2
## 705           TRUE             9            22    2        2         2
## 706           TRUE             9            17    2        2         2
## 707           TRUE             9            14    2        2         2
## 708           TRUE             9            09    2        2         2
## 709           TRUE             9            05    2        2         2
## 710           TRUE             8            54    2        2         2
## 711           TRUE             8            43    2        2         2
## 712           TRUE             8            43    2        2         2
## 713           TRUE             8            43    2        2         2
## 714           TRUE             8            17    2        2         2
## 715           TRUE             8            13    2        2         2
## 716           TRUE             8            03    2        2         2
## 717           TRUE             8            00    2        2         2
## 718           TRUE             7            46    2        2         2
## 719           TRUE             7            34    2        2         2
## 720           TRUE             7            30    2        2         2
## 721           TRUE             7            27    2        2         2
## 722           TRUE             7            26    2        2         2
## 723           TRUE             7            26    2        2         2
## 724           TRUE             7            26    2        2         2
## 725           TRUE             7            21    2        2         2
## 726           TRUE             7            03    2        2         2
## 727           TRUE             6            58    2        2         2
## 728           TRUE             6            55    2        2         2
## 729           TRUE             6            36    2        2         2
## 730           TRUE             6            33    2        2         2
## 731           TRUE             6            16    2        2         2
## 732           TRUE             6            14    2        2         2
## 733           TRUE             6            14    2        2         2
## 734           TRUE             5            57    2        2         2
## 735           TRUE             5            57    2        2         2
## 736           TRUE             5            57    2        2         2
## 737           TRUE             5            57    2        2         2
## 738           TRUE             5            57    2        2         2
## 739           TRUE             5            40    2        2         2
## 740           TRUE             5            25    2        2         2
## 741           TRUE             5            08    2        2         2
## 742           TRUE             5            08    2        2         2
## 743           TRUE             5            08    2        2         2
## 744           TRUE             5            08    2        2         2
## 745           TRUE             5            08    2        2         2
## 746           TRUE             5            00    2        2         2
## 747           TRUE             4            49    2        2         2
## 748           TRUE             4            32    2        2         2
## 749           TRUE             4            28    2        2         2
## 750           TRUE             4            25    2        2         2
## 751           TRUE             4            22    2        2         2
## 752           TRUE             4            19    2        2         2
## 753           TRUE             4            19    2        2         2
## 754           TRUE             3            56    2        2         2
## 755           TRUE             3            52    2        2         2
## 756           TRUE             3            45    2        2         2
## 757           TRUE             3            34    2        2         2
## 758           TRUE             3            31    2        2         2
## 759           TRUE             3            30    2        2         2
## 760           TRUE             3            27    2        2         2
## 761           TRUE             3            25    2        2         2
## 762           TRUE             3            12    2        2         2
## 763           TRUE             3            12    2        2         2
## 764           TRUE             2            55    2        2         2
## 765           TRUE             2            53    2        2         2
## 766           TRUE             2            47    2        2         2
## 767           TRUE             2            47    2        2         2
## 768           TRUE             2            47    2        2         2
## 769           TRUE             2            47    2        2         2
## 770           TRUE             2            23    2        2         2
## 771           TRUE             2            21    2        2         2
## 772           TRUE             2            21    2        2         2
## 773           TRUE             2            21    2        2         2
## 774           TRUE             2            08    2        2         2
## 775           TRUE             1            49    2        2         2
## 776           TRUE             1            33    2        2         2
## 777           TRUE             1            13    2        2         2
## 778           TRUE             1            09    2        2         2
## 779           TRUE             1            09    2        2         2
## 780           TRUE             1            09    2        2         2
## 781           TRUE             1            09    2        2         2
## 782           TRUE             1            09    2        2         2
## 783           TRUE             1            09    2        2         2
## 784           TRUE             1            09    2        2         2
## 785           TRUE             1            09    2        2         2
## 786           TRUE             0          46.8    2        2         2
## 787           TRUE             0          46.8    2        2         2
## 788           TRUE             0          32.9    2        2         2
## 789           TRUE             0          32.9    2        2         2
## 790           TRUE             0          32.9    2        2         2
## 791           TRUE             0          30.2    2        2         2
## 792           TRUE             0          14.6    2        2         2
## 793           TRUE             0           9.7    2        2         2
## 794           TRUE             0           7.9    2        2         2
## 795           TRUE             0           7.9    2        2         2
## 796           TRUE             0           7.9    2        2         2
## 797           TRUE             0           5.8    2        2         2
## 798           TRUE             0           0.0    2        2         2
## 799           TRUE             0           0.0    2        2      <NA>
## 800           TRUE            10            00    1     <NA>         1
## 801           TRUE             9            48    1        1         1
## 802           TRUE             9            25    1        1         1
## 803           TRUE             9            16    1        1         1
## 804           TRUE             9            05    1        1         1
## 805           TRUE             9            02    1        1         1
## 806           TRUE             8            48    1        1         1
## 807           TRUE             8            48    1        1         1
## 808           TRUE             8            34    1        1         1
## 809           TRUE             8            31    1        1         1
## 810           TRUE             8            25    1        1         1
## 811           TRUE             8            21    1        1         1
## 812           TRUE             8            16    1        1         1
## 813           TRUE             8            13    1        1         1
## 814           TRUE             7            52    1        1         1
## 815           TRUE             7            49    1        1         1
## 816           TRUE             7            44    1        1         1
## 817           TRUE             7            42    1        1         1
## 818           TRUE             7            28    1        1         1
## 819           TRUE             7            24    1        1         1
## 820           TRUE             7            22    1        1         1
## 821           TRUE             6            59    1        1         1
## 822           TRUE             6            47    1        1         1
## 823           TRUE             6            29    1        1         1
## 824           TRUE             6            26    1        1         1
## 825           TRUE             6            23    1        1         1
## 826           TRUE             6            23    1        1         1
## 827           TRUE             6            23    1        1         1
## 828           TRUE             6            23    1        1         1
## 829           TRUE             6            23    1        1         1
## 830           TRUE             6            21    1        1         1
## 831           TRUE             6            14    1        1         1
## 832           TRUE             6            14    1        1         1
## 833           TRUE             5            56    1        1         1
## 834           TRUE             5            56    1        1         1
## 835           TRUE             5            54    1        1         1
## 836           TRUE             5            46    1        1         1
## 837           TRUE             5            26    1        1         1
## 838           TRUE             5            22    1        1         1
## 839           TRUE             5            19    1        1         1
## 840           TRUE             5            02    1        1         1
## 841           TRUE             5            02    1        1         1
## 842           TRUE             4            52    1        1         1
## 843           TRUE             4            51    1        1         1
## 844           TRUE             4            51    1        1         1
## 845           TRUE             4            51    1        1         1
## 846           TRUE             4            51    1        1         1
## 847           TRUE             4            51    1        1         1
## 848           TRUE             4            40    1        1         1
## 849           TRUE             4            35    1        1         1
## 850           TRUE             4            24    1        1         1
## 851           TRUE             4            21    1        1         1
## 852           TRUE             4            18    1        1         1
## 853           TRUE             4            16    1        1         1
## 854           TRUE             4            10    1        1         1
## 855           TRUE             4            08    1        1         1
## 856           TRUE             4            04    1        1         1
## 857           TRUE             4            01    1        1         1
## 858           TRUE             3            52    1        1         1
## 859           TRUE             3            42    1        1         1
## 860           TRUE             3            42    1        1         1
## 861           TRUE             3            42    1        1         1
## 862           TRUE             3            42    1        1         1
## 863           TRUE             3            32    1        1         1
## 864           TRUE             3            29    1        1         1
## 865           TRUE             3            25    1        1         1
## 866           TRUE             3            06    1        1         1
## 867           TRUE             3            06    1        1         1
## 868           TRUE             2            48    1        1         1
## 869           TRUE             2            45    1        1         1
## 870           TRUE             2            40    1        1         1
## 871           TRUE             2            29    1        1         1
## 872           TRUE             2            29    1        1         1
## 873           TRUE             2            29    1        1         1
## 874           TRUE             2            29    1        1         1
## 875           TRUE             2            19    1        1         1
## 876           TRUE             2            17    1        1         1
## 877           TRUE             2            17    1        1         1
## 878           TRUE             2            05    1        1         1
## 879           TRUE             2            01    1        1         1
## 880           TRUE             1            49    1        1         1
## 881           TRUE             1            47    1        1         1
## 882           TRUE             1            47    1        1         1
## 883           TRUE             1            47    1        1         1
## 884           TRUE             1            34    1        1         1
## 885           TRUE             1            26    1        1         1
## 886           TRUE             1            16    1        1         1
## 887           TRUE             1            16    1        1         1
## 888           TRUE             1            16    1        1         1
## 889           TRUE             1            16    1        1         1
## 890           TRUE             1            16    1        1         1
## 891           TRUE             1            02    1        1         1
## 892           TRUE             0          59.9    1        1         1
## 893           TRUE             0          59.9    1        1         1
## 894           TRUE             0          59.9    1        1         1
## 895           TRUE             0          57.8    1        1         1
## 896           TRUE             0          56.1    1        1         1
## 897           TRUE             0          54.2    1        1         1
## 898           TRUE             0          45.6    1        1         1
## 899           TRUE             0          43.1    1        1         1
## 900           TRUE             0          25.9    1        1         1
## 901           TRUE             0           1.7    1        1         1
## 902           TRUE             0           1.7    1        1         1
## 903           TRUE             0           0.0    1        1         1
## 904           TRUE            10            00    1        1         1
## 905           TRUE            10            00    1        1         1
## 906           TRUE            10            00    1        1         1
## 907           TRUE             9            48    1        1         1
## 908           TRUE             9            44    1        1         1
## 909           TRUE             9            42    1        1         1
## 910           TRUE             9            27    1        1         1
## 911           TRUE             9            20    1        1         1
## 912           TRUE             9            20    1        1         1
## 913           TRUE             9            20    1        1         1
## 914           TRUE             9            05    1        1         1
## 915           TRUE             9            03    1        1         1
## 916           TRUE             9            01    1        1         1
## 917           TRUE             8            53    1        1         1
## 918           TRUE             8            39    1        1         1
## 919           TRUE             8            20    1        1         1
## 920           TRUE             8            16    1        1         1
## 921           TRUE             8            08    1        1         1
## 922           TRUE             8            05    1        1         1
## 923           TRUE             7            57    1        1         1
## 924           TRUE             7            53    1        1         1
## 925           TRUE             7            49    1        1         1
## 926           TRUE             7            44    1        1         1
## 927           TRUE             7            44    1        1         1
## 928           TRUE             7            44    1        1         1
## 929           TRUE             7            30    1        1         1
## 930           TRUE             7            17    1        1         1
## 931           TRUE             7            13    1        1         1
## 932           TRUE             7            12    1        1         1
## 933           TRUE             7            12    1        1         1
## 934           TRUE             7            12    1        1         1
## 935           TRUE             7            12    1        1         1
## 936           TRUE             6            48    1        1         1
## 937           TRUE             6            48    1        1         1
## 938           TRUE             6            48    1        1         1
## 939           TRUE             6            34    1        1         1
## 940           TRUE             6            31    1        1         1
## 941           TRUE             6            26    1        1         1
## 942           TRUE             6            19    1        1         1
## 943           TRUE             6            05    1        1         1
## 944           TRUE             6            01    1        1         1
## 945           TRUE             5            57    1        1         1
## 946           TRUE             5            34    1        1         1
## 947           TRUE             5            17    1        1         1
## 948           TRUE             4            54    1        1         1
## 949           TRUE             4            52    1        1         1
## 950           TRUE             4            39    1        1         1
## 951           TRUE             4            39    1        1         1
## 952           TRUE             4            39    1        1         1
## 953           TRUE             4            25    1        1         1
## 954           TRUE             4            06    1        1         1
## 955           TRUE             4            06    1        1         1
## 956           TRUE             3            50    1        1         1
## 957           TRUE             3            46    1        1         1
## 958           TRUE             3            43    1        1         1
## 959           TRUE             3            24    1        1         1
## 960           TRUE             3            20    1        1         1
## 961           TRUE             3            12    1        1         1
## 962           TRUE             3            07    1        1         1
## 963           TRUE             2            54    1        1         1
## 964           TRUE             2            51    1        1         1
## 965           TRUE             2            40    1        1         1
## 966           TRUE             2            36    1        1         1
## 967           TRUE             2            34    1        1         1
## 968           TRUE             2            12    1        1         1
## 969           TRUE             2            12    1        1         1
## 970           TRUE             1            54    1        1         1
## 971           TRUE             1            50    1        1         1
## 972           TRUE             1            34    1        1         1
## 973           TRUE             1            30    1        1         1
## 974           TRUE             1            28    1        1         1
## 975           TRUE             1            25    1        1         1
## 976           TRUE             1            23    1        1         1
## 977           TRUE             1            21    1        1         1
## 978           TRUE             1            21    1        1         1
## 979           TRUE             1            07    1        1         1
## 980           TRUE             0          51.9    1        1         1
## 981           TRUE             0          50.0    1        1         1
## 982           TRUE             0          43.5    1        1         1
## 983           TRUE             0          43.5    1        1         1
## 984           TRUE             0          36.1    1        1         1
## 985           TRUE             0          20.2    1        1         1
## 986           TRUE             0          17.8    1        1         1
## 987           TRUE             0           1.5    1        1         1
## 988           TRUE             0           0.5    1        1         1
## 989           TRUE             0           0.0    1        1         1
## 990           TRUE             0           0.0    1        1         2
## 991           TRUE            10            00    2        1         2
## 992           TRUE            10            00    2        2         2
## 993           TRUE             9            40    2        2         2
## 994           TRUE             9            25    2        2         2
## 995           TRUE             9            08    2        2         2
## 996           TRUE             9            07    2        2         2
## 997           TRUE             9            04    2        2         2
## 998           TRUE             8            51    2        2         2
## 999           TRUE             8            30    2        2         2
## 1000          TRUE             8            30    2        2         2
## 1001          TRUE             8            30    2        2         2
## 1002          TRUE             8            22    2        2         2
## 1003          TRUE             8            19    2        2         2
## 1004          TRUE             8            16    2        2         2
## 1005          TRUE             8            01    2        2         2
## 1006          TRUE             7            46    2        2         2
## 1007          TRUE             7            36    2        2         2
## 1008          TRUE             7            32    2        2         2
## 1009          TRUE             7            32    2        2         2
## 1010          TRUE             7            32    2        2         2
## 1011          TRUE             7            32    2        2         2
## 1012          TRUE             7            07    2        2         2
## 1013          TRUE             7            04    2        2         2
## 1014          TRUE             6            56    2        2         2
## 1015          TRUE             6            48    2        2         2
## 1016          TRUE             6            45    2        2         2
## 1017          TRUE             6            42    2        2         2
## 1018          TRUE             6            22    2        2         2
## 1019          TRUE             6            21    2        2         2
## 1020          TRUE             6            13    2        2         2
## 1021          TRUE             6            00    2        2         2
## 1022          TRUE             5            53    2        2         2
## 1023          TRUE             5            49    2        2         2
## 1024          TRUE             5            46    2        2         2
## 1025          TRUE             5            27    2        2         2
## 1026          TRUE             5            18    2        2         2
## 1027          TRUE             5            18    2        2         2
## 1028          TRUE             5            18    2        2         2
## 1029          TRUE             5            04    2        2         2
## 1030          TRUE             5            04    2        2         2
## 1031          TRUE             5            04    2        2         2
## 1032          TRUE             5            00    2        2         2
## 1033          TRUE             4            53    2        2         2
## 1034          TRUE             4            34    2        2         2
## 1035          TRUE             4            34    2        2         2
## 1036          TRUE             4            34    2        2         2
## 1037          TRUE             4            16    2        2         2
## 1038          TRUE             3            59    2        2         2
## 1039          TRUE             3            58    2        2         2
## 1040          TRUE             3            58    2        2         2
## 1041          TRUE             3            58    2        2         2
## 1042          TRUE             3            58    2        2         2
## 1043          TRUE             3            56    2        2         2
## 1044          TRUE             3            56    2        2         2
## 1045          TRUE             3            56    2        2         2
## 1046          TRUE             3            53    2        2         2
## 1047          TRUE             3            38    2        2         2
## 1048          TRUE             3            26    2        2         2
## 1049          TRUE             3            21    2        2         2
## 1050          TRUE             2            54    2        2         2
## 1051          TRUE             2            51    2        2         2
## 1052          TRUE             2            50    2        2         2
## 1053          TRUE             2            48    2        2         2
## 1054          TRUE             2            48    2        2         2
## 1055          TRUE             2            48    2        2         2
## 1056          TRUE             2            48    2        2         2
## 1057          TRUE             2            48    2        2         2
## 1058          TRUE             2            48    2        2         2
## 1059          TRUE             2            48    2        2         2
## 1060          TRUE             2            48    2        2         2
## 1061          TRUE             2            34    2        2         2
## 1062          TRUE             2            15    2        2         2
## 1063          TRUE             2            15    2        2         2
## 1064          TRUE             2            03    2        2         2
## 1065          TRUE             1            59    2        2         2
## 1066          TRUE             1            50    2        2         2
## 1067          TRUE             1            50    2        2         2
## 1068          TRUE             1            50    2        2         2
## 1069          TRUE             1            41    2        2         2
## 1070          TRUE             1            38    2        2         2
## 1071          TRUE             1            30    2        2         2
## 1072          TRUE             1            30    2        2         2
## 1073          TRUE             1            30    2        2         2
## 1074          TRUE             1            22    2        2         2
## 1075          TRUE             1            10    2        2         2
## 1076          TRUE             1            10    2        2         2
## 1077          TRUE             1            09    2        2         2
## 1078          TRUE             1            09    2        2         2
## 1079          TRUE             1            09    2        2         2
## 1080          TRUE             1            09    2        2         2
## 1081          TRUE             1            05    2        2         2
## 1082          TRUE             1            01    2        2         2
## 1083          TRUE             1            01    2        2         2
## 1084          TRUE             0          46.9    2        2         2
## 1085          TRUE             0          32.8    2        2         2
## 1086          TRUE             0          16.1    2        2         2
## 1087          TRUE             0          13.1    2        2         2
## 1088          TRUE             0           0.0    2        2         2
## 1089          TRUE            10            00    2        2         2
## 1090          TRUE            10            00    2        2         2
## 1091          TRUE             9            48    2        2         2
## 1092          TRUE             9            43    2        2         2
## 1093          TRUE             9            40    2        2         2
## 1094          TRUE             9            34    2        2         2
## 1095          TRUE             9            33    2        2         2
## 1096          TRUE             9            15    2        2         2
## 1097          TRUE             9            12    2        2         2
## 1098          TRUE             9            12    2        2         2
## 1099          TRUE             9            09    2        2         2
## 1100          TRUE             8            57    2        2         2
## 1101          TRUE             8            51    2        2         2
## 1102          TRUE             8            51    2        2         2
## 1103          TRUE             8            51    2        2         2
## 1104          TRUE             8            39    2        2         2
## 1105          TRUE             8            34    2        2         2
## 1106          TRUE             8            21    2        2         2
## 1107          TRUE             8            15    2        2         2
## 1108          TRUE             8            08    2        2         2
## 1109          TRUE             8            08    2        2         2
## 1110          TRUE             7            54    2        2         2
## 1111          TRUE             7            51    2        2         2
## 1112          TRUE             7            49    2        2         2
## 1113          TRUE             7            49    2        2         2
## 1114          TRUE             7            36    2        2         2
## 1115          TRUE             7            31    2        2         2
## 1116          TRUE             7            24    2        2         2
## 1117          TRUE             7            18    2        2         2
## 1118          TRUE             7            18    2        2         2
## 1119          TRUE             7            14    2        2         2
## 1120          TRUE             7            00    2        2         2
## 1121          TRUE             7            00    2        2         2
## 1122          TRUE             6            58    2        2         2
## 1123          TRUE             6            50    2        2         2
## 1124          TRUE             6            40    2        2         2
## 1125          TRUE             6            37    2        2         2
## 1126          TRUE             6            32    2        2         2
## 1127          TRUE             6            29    2        2         2
## 1128          TRUE             6            26    2        2         2
## 1129          TRUE             6            26    2        2         2
## 1130          TRUE             6            24    2        2         2
## 1131          TRUE             6            20    2        2         2
## 1132          TRUE             6            20    2        2         2
## 1133          TRUE             6            18    2        2         2
## 1134          TRUE             5            49    2        2         2
## 1135          TRUE             5            39    2        2         2
## 1136          TRUE             5            34    2        2         2
## 1137          TRUE             5            32    2        2         2
## 1138          TRUE             5            31    2        2         2
## 1139          TRUE             5            25    2        2         2
## 1140          TRUE             5            20    2        2         2
## 1141          TRUE             5            20    2        2         2
## 1142          TRUE             5            20    2        2         2
## 1143          TRUE             5            06    2        2         2
## 1144          TRUE             5            04    2        2         2
## 1145          TRUE             5            03    2        2         2
## 1146          TRUE             5            03    2        2         2
## 1147          TRUE             4            50    2        2         2
## 1148          TRUE             4            47    2        2         2
## 1149          TRUE             4            31    2        2         2
## 1150          TRUE             4            28    2        2         2
## 1151          TRUE             4            13    2        2         2
## 1152          TRUE             3            52    2        2         2
## 1153          TRUE             3            39    2        2         2
## 1154          TRUE             3            39    2        2         2
## 1155          TRUE             3            39    2        2         2
## 1156          TRUE             3            39    2        2         2
## 1157          TRUE             3            37    2        2         2
## 1158          TRUE             3            22    2        2         2
## 1159          TRUE             3            19    2        2         2
## 1160          TRUE             3            05    2        2         2
## 1161          TRUE             3            01    2        2         2
## 1162          TRUE             2            54    2        2         2
## 1163          TRUE             2            38    2        2         2
## 1164          TRUE             2            35    2        2         2
## 1165          TRUE             2            26    2        2         2
## 1166          TRUE             2            26    2        2         2
## 1167          TRUE             2            21    2        2         2
## 1168          TRUE             2            21    2        2         2
## 1169          TRUE             2            21    2        2         2
## 1170          TRUE             2            21    2        2         2
## 1171          TRUE             2            21    2        2         2
## 1172          TRUE             2            18    2        2         2
## 1173          TRUE             2            00    2        2         2
## 1174          TRUE             1            38    2        2         2
## 1175          TRUE             1            33    2        2         2
## 1176          TRUE             1            25    2        2         2
## 1177          TRUE             1            22    2        2         2
## 1178          TRUE             1            17    2        2         2
## 1179          TRUE             1            17    2        2         2
## 1180          TRUE             1            17    2        2         2
## 1181          TRUE             0          56.8    2        2         2
## 1182          TRUE             0          56.8    2        2         2
## 1183          TRUE             0          46.5    2        2         2
## 1184          TRUE             0          43.4    2        2         2
## 1185          TRUE             0          42.6    2        2         2
## 1186          TRUE             0          37.0    2        2         2
## 1187          TRUE             0          31.4    2        2         2
## 1188          TRUE             0          31.4    2        2         2
## 1189          TRUE             0          31.4    2        2         2
## 1190          TRUE             0          31.4    2        2         2
## 1191          TRUE             0          31.4    2        2         2
## 1192          TRUE             0           7.0    2        2         2
## 1193          TRUE             0           1.1    2        2         2
## 1194          TRUE             0           1.1    2        2         2
## 1195          TRUE             0           0.0    2        2         2
## 1196          TRUE             0           0.0    2        2      <NA>
## 1197          TRUE            10            00    1     <NA>         1
## 1198          TRUE             9            45    1        1         1
## 1199          TRUE             9            28    1        1         1
## 1200          TRUE             9            12    1        1         1
## 1201          TRUE             9            08    1        1         1
## 1202          TRUE             9            00    1        1         1
## 1203          TRUE             8            57    1        1         1
## 1204          TRUE             8            50    1        1         1
## 1205          TRUE             8            47    1        1         1
## 1206          TRUE             8            41    1        1         1
## 1207          TRUE             8            23    1        1         1
## 1208          TRUE             8            02    1        1         1
## 1209          TRUE             7            55    1        1         1
## 1210          TRUE             7            49    1        1         1
## 1211          TRUE             7            46    1        1         1
## 1212          TRUE             7            33    1        1         1
## 1213          TRUE             7            13    1        1         1
## 1214          TRUE             7            01    1        1         1
## 1215          TRUE             6            49    1        1         1
## 1216          TRUE             6            45    1        1         1
## 1217          TRUE             6            38    1        1         1
## 1218          TRUE             6            36    1        1         1
## 1219          TRUE             6            36    1        1         1
## 1220          TRUE             6            13    1        1         1
## 1221          TRUE             5            59    1        1         1
## 1222          TRUE             5            57    1        1         1
## 1223          TRUE             5            54    1        1         1
## 1224          TRUE             5            54    1        1         1
## 1225          TRUE             5            54    1        1         1
## 1226          TRUE             5            54    1        1         1
## 1227          TRUE             5            54    1        1         1
## 1228          TRUE             5            54    1        1         1
## 1229          TRUE             5            42    1        1         1
## 1230          TRUE             5            38    1        1         1
## 1231          TRUE             5            38    1        1         1
## 1232          TRUE             5            31    1        1         1
## 1233          TRUE             5            25    1        1         1
## 1234          TRUE             5            12    1        1         1
## 1235          TRUE             5            06    1        1         1
## 1236          TRUE             5            06    1        1         1
## 1237          TRUE             5            06    1        1         1
## 1238          TRUE             5            06    1        1         1
## 1239          TRUE             4            53    1        1         1
## 1240          TRUE             4            48    1        1         1
## 1241          TRUE             4            39    1        1         1
## 1242          TRUE             4            39    1        1         1
## 1243          TRUE             4            39    1        1         1
## 1244          TRUE             4            39    1        1         1
## 1245          TRUE             4            39    1        1         1
## 1246          TRUE             4            22    1        1         1
## 1247          TRUE             4            22    1        1         1
## 1248          TRUE             4            22    1        1         1
## 1249          TRUE             3            58    1        1         1
## 1250          TRUE             3            56    1        1         1
## 1251          TRUE             3            55    1        1         1
## 1252          TRUE             3            42    1        1         1
## 1253          TRUE             3            30    1        1         1
## 1254          TRUE             3            19    1        1         1
## 1255          TRUE             3            01    1        1         1
## 1256          TRUE             2            57    1        1         1
## 1257          TRUE             2            56    1        1         1
## 1258          TRUE             2            55    1        1         1
## 1259          TRUE             2            52    1        1         1
## 1260          TRUE             2            47    1        1         1
## 1261          TRUE             2            47    1        1         1
## 1262          TRUE             2            47    1        1         1
## 1263          TRUE             2            47    1        1         1
## 1264          TRUE             2            33    1        1         1
## 1265          TRUE             2            30    1        1         1
## 1266          TRUE             2            27    1        1         1
## 1267          TRUE             2            19    1        1         1
## 1268          TRUE             2            19    1        1         1
## 1269          TRUE             2            03    1        1         1
## 1270          TRUE             1            56    1        1         1
## 1271          TRUE             1            54    1        1         1
## 1272          TRUE             1            53    1        1         1
## 1273          TRUE             1            41    1        1         1
## 1274          TRUE             1            29    1        1         1
## 1275          TRUE             1            10    1        1         1
## 1276          TRUE             0          57.4    1        1         1
## 1277          TRUE             0          57.4    1        1         1
## 1278          TRUE             0          39.1    1        1         1
## 1279          TRUE             0          27.7    1        1         1
## 1280          TRUE             0          27.7    1        1         1
## 1281          TRUE             0          27.7    1        1         1
## 1282          TRUE             0          27.7    1        1         1
## 1283          TRUE             0          13.2    1        1         1
## 1284          TRUE             0           2.5    1        1         1
## 1285          TRUE             0           1.7    1        1         1
## 1286          TRUE             0           1.7    1        1         1
## 1287          TRUE             0           0.0    1        1         1
## 1288          TRUE             0           0.0    1        1         1
## 1289          TRUE             0           0.0    1        1         1
## 1290          TRUE            10            00    1        1         1
## 1291          TRUE            10            00    1        1         1
## 1292          TRUE            10            00    1        1         1
## 1293          TRUE            10            00    1        1         1
## 1294          TRUE             9            49    1        1         1
## 1295          TRUE             9            49    1        1         1
## 1296          TRUE             9            49    1        1         1
## 1297          TRUE             9            49    1        1         1
## 1298          TRUE             9            49    1        1         1
## 1299          TRUE             9            36    1        1         1
## 1300          TRUE             9            36    1        1         1
## 1301          TRUE             9            36    1        1         1
## 1302          TRUE             9            36    1        1         1
## 1303          TRUE             9            21    1        1         1
## 1304          TRUE             9            16    1        1         1
## 1305          TRUE             9            07    1        1         1
## 1306          TRUE             9            07    1        1         1
## 1307          TRUE             9            07    1        1         1
## 1308          TRUE             9            07    1        1         1
## 1309          TRUE             8            54    1        1         1
## 1310          TRUE             8            41    1        1         1
## 1311          TRUE             8            36    1        1         1
## 1312          TRUE             8            34    1        1         1
## 1313          TRUE             8            34    1        1         1
## 1314          TRUE             8            29    1        1         1
## 1315          TRUE             8            29    1        1         1
## 1316          TRUE             8            29    1        1         1
## 1317          TRUE             8            16    1        1         1
## 1318          TRUE             7            59    1        1         1
## 1319          TRUE             7            55    1        1         1
## 1320          TRUE             7            55    1        1         1
## 1321          TRUE             7            55    1        1         1
## 1322          TRUE             7            42    1        1         1
## 1323          TRUE             7            38    1        1         1
## 1324          TRUE             7            35    1        1         1
## 1325          TRUE             7            35    1        1         1
## 1326          TRUE             7            35    1        1         1
## 1327          TRUE             7            19    1        1         1
## 1328          TRUE             7            18    1        1         1
## 1329          TRUE             7            18    1        1         1
## 1330          TRUE             7            18    1        1         1
## 1331          TRUE             7            18    1        1         1
## 1332          TRUE             7            06    1        1         1
## 1333          TRUE             7            01    1        1         1
## 1334          TRUE             7            01    1        1         1
## 1335          TRUE             6            54    1        1         1
## 1336          TRUE             6            54    1        1         1
## 1337          TRUE             6            52    1        1         1
## 1338          TRUE             6            48    1        1         1
## 1339          TRUE             6            42    1        1         1
## 1340          TRUE             6            27    1        1         1
## 1341          TRUE             6            27    1        1         1
## 1342          TRUE             6            27    1        1         1
## 1343          TRUE             6            27    1        1         1
## 1344          TRUE             6            27    1        1         1
## 1345          TRUE             6            16    1        1         1
## 1346          TRUE             6            13    1        1         1
## 1347          TRUE             6            09    1        1         1
## 1348          TRUE             6            03    1        1         1
## 1349          TRUE             5            45    1        1         1
## 1350          TRUE             5            45    1        1         1
## 1351          TRUE             5            45    1        1         1
## 1352          TRUE             5            24    1        1         1
## 1353          TRUE             5            22    1        1         1
## 1354          TRUE             5            07    1        1         1
## 1355          TRUE             5            04    1        1         1
## 1356          TRUE             4            55    1        1         1
## 1357          TRUE             4            44    1        1         1
## 1358          TRUE             4            28    1        1         1
## 1359          TRUE             4            27    1        1         1
## 1360          TRUE             4            26    1        1         1
## 1361          TRUE             4            21    1        1         1
## 1362          TRUE             4            21    1        1         1
## 1363          TRUE             4            06    1        1         1
## 1364          TRUE             4            03    1        1         1
## 1365          TRUE             3            58    1        1         1
## 1366          TRUE             3            58    1        1         1
## 1367          TRUE             3            58    1        1         1
## 1368          TRUE             3            48    1        1         1
## 1369          TRUE             3            38    1        1         1
## 1370          TRUE             3            34    1        1         1
## 1371          TRUE             3            27    1        1         1
## 1372          TRUE             3            20    1        1         1
## 1373          TRUE             3            20    1        1         1
## 1374          TRUE             3            20    1        1         1
## 1375          TRUE             3            20    1        1         1
## 1376          TRUE             3            04    1        1         1
## 1377          TRUE             3            01    1        1         1
## 1378          TRUE             2            54    1        1         1
## 1379          TRUE             2            54    1        1         1
## 1380          TRUE             2            40    1        1         1
## 1381          TRUE             2            32    1        1         1
## 1382          TRUE             2            26    1        1         1
## 1383          TRUE             2            08    1        1         1
## 1384          TRUE             2            07    1        1         1
## 1385          TRUE             1            55    1        1         1
## 1386          TRUE             1            49    1        1         1
## 1387          TRUE             1            48    1        1         1
## 1388          TRUE             1            38    1        1         1
## 1389          TRUE             1            38    1        1         1
## 1390          TRUE             1            38    1        1         1
## 1391          TRUE             1            38    1        1         1
## 1392          TRUE             1            38    1        1         1
## 1393          TRUE             1            38    1        1         1
## 1394          TRUE             1            38    1        1         1
## 1395          TRUE             1            25    1        1         1
## 1396          TRUE             1            22    1        1         1
## 1397          TRUE             1            22    1        1         1
## 1398          TRUE             1            22    1        1         1
## 1399          TRUE             1            22    1        1         1
## 1400          TRUE             1            22    1        1         1
## 1401          TRUE             1            20    1        1         1
## 1402          TRUE             1            14    1        1         1
## 1403          TRUE             1            08    1        1         1
## 1404          TRUE             0          53.8    1        1         1
## 1405          TRUE             0          40.2    1        1         1
## 1406          TRUE             0          37.7    1        1         1
## 1407          TRUE             0          26.1    1        1         1
## 1408          TRUE             0           2.4    1        1         1
## 1409          TRUE             0           2.4    1        1         1
## 1410          TRUE             0           0.0    1        1         2
## 1411          TRUE            10            00    2        1         2
## 1412          TRUE            10            00    2        2         2
## 1413          TRUE            10            00    2        2         2
## 1414          TRUE            10            00    2        2         2
## 1415          TRUE            10            00    2        2         2
## 1416          TRUE             9            51    2        2         2
## 1417          TRUE             9            31    2        2         2
## 1418          TRUE             9            27    2        2         2
## 1419          TRUE             9            12    2        2         2
## 1420          TRUE             9            07    2        2         2
## 1421          TRUE             9            05    2        2         2
## 1422          TRUE             9            01    2        2         2
## 1423          TRUE             8            49    2        2         2
## 1424          TRUE             8            45    2        2         2
## 1425          TRUE             8            38    2        2         2
## 1426          TRUE             8            26    2        2         2
## 1427          TRUE             8            20    2        2         2
## 1428          TRUE             8            07    2        2         2
## 1429          TRUE             8            05    2        2         2
## 1430          TRUE             8            05    2        2         2
## 1431          TRUE             7            43    2        2         2
## 1432          TRUE             7            33    2        2         2
## 1433          TRUE             7            30    2        2         2
## 1434          TRUE             7            28    2        2         2
## 1435          TRUE             7            28    2        2         2
## 1436          TRUE             7            28    2        2         2
## 1437          TRUE             7            11    2        2         2
## 1438          TRUE             7            10    2        2         2
## 1439          TRUE             7            09    2        2         2
## 1440          TRUE             6            55    2        2         2
## 1441          TRUE             6            51    2        2         2
## 1442          TRUE             6            51    2        2         2
## 1443          TRUE             6            51    2        2         2
## 1444          TRUE             6            51    2        2         2
## 1445          TRUE             6            51    2        2         2
## 1446          TRUE             6            51    2        2         2
## 1447          TRUE             6            36    2        2         2
## 1448          TRUE             6            26    2        2         2
## 1449          TRUE             6            13    2        2         2
## 1450          TRUE             5            57    2        2         2
## 1451          TRUE             5            54    2        2         2
## 1452          TRUE             5            54    2        2         2
## 1453          TRUE             5            54    2        2         2
## 1454          TRUE             5            54    2        2         2
## 1455          TRUE             5            40    2        2         2
## 1456          TRUE             5            37    2        2         2
## 1457          TRUE             5            33    2        2         2
## 1458          TRUE             5            33    2        2         2
## 1459          TRUE             5            33    2        2         2
## 1460          TRUE             5            21    2        2         2
## 1461          TRUE             5            08    2        2         2
## 1462          TRUE             5            08    2        2         2
## 1463          TRUE             5            08    2        2         2
## 1464          TRUE             5            08    2        2         2
## 1465          TRUE             4            49    2        2         2
## 1466          TRUE             4            44    2        2         2
## 1467          TRUE             4            35    2        2         2
## 1468          TRUE             4            32    2        2         2
## 1469          TRUE             4            28    2        2         2
## 1470          TRUE             4            28    2        2         2
## 1471          TRUE             4            11    2        2         2
## 1472          TRUE             4            07    2        2         2
## 1473          TRUE             4            05    2        2         2
## 1474          TRUE             4            02    2        2         2
## 1475          TRUE             4            00    2        2         2
## 1476          TRUE             4            00    2        2         2
## 1477          TRUE             4            00    2        2         2
## 1478          TRUE             4            00    2        2         2
## 1479          TRUE             4            00    2        2         2
## 1480          TRUE             3            42    2        2         2
## 1481          TRUE             3            18    2        2         2
## 1482          TRUE             2            56    2        2         2
## 1483          TRUE             2            49    2        2         2
## 1484          TRUE             2            49    2        2         2
## 1485          TRUE             2            49    2        2         2
## 1486          TRUE             2            33    2        2         2
## 1487          TRUE             2            30    2        2         2
## 1488          TRUE             2            25    2        2         2
## 1489          TRUE             2            08    2        2         2
## 1490          TRUE             1            45    2        2         2
## 1491          TRUE             1            41    2        2         2
## 1492          TRUE             1            40    2        2         2
## 1493          TRUE             1            40    2        2         2
## 1494          TRUE             1            19    2        2         2
## 1495          TRUE             0          55.3    2        2         2
## 1496          TRUE             0          52.3    2        2         2
## 1497          TRUE             0          49.2    2        2         2
## 1498          TRUE             0          46.8    2        2         2
## 1499          TRUE             0          44.9    2        2         2
## 1500          TRUE             0          44.8    2        2         2
## 1501          TRUE             0          24.5    2        2         2
## 1502          TRUE             0          21.7    2        2         2
## 1503          TRUE             0          16.8    2        2         2
## 1504          TRUE             0          16.8    2        2         2
## 1505          TRUE             0          16.8    2        2         2
## 1506          TRUE             0          16.8    2        2         2
## 1507          TRUE             0           2.1    2        2         2
## 1508          TRUE             0           0.1    2        2         2
## 1509          TRUE             0           0.0    2        2         2
## 1510          TRUE            10            00    2        2         2
## 1511          TRUE            10            00    2        2         2
## 1512          TRUE            10            00    2        2         2
## 1513          TRUE             9            41    2        2         2
## 1514          TRUE             9            29    2        2         2
## 1515          TRUE             9            23    2        2         2
## 1516          TRUE             9            08    2        2         2
## 1517          TRUE             9            08    2        2         2
## 1518          TRUE             8            53    2        2         2
## 1519          TRUE             8            43    2        2         2
## 1520          TRUE             8            42    2        2         2
## 1521          TRUE             8            37    2        2         2
## 1522          TRUE             8            27    2        2         2
## 1523          TRUE             8            14    2        2         2
## 1524          TRUE             8            09    2        2         2
## 1525          TRUE             8            06    2        2         2
## 1526          TRUE             8            04    2        2         2
## 1527          TRUE             7            58    2        2         2
## 1528          TRUE             7            36    2        2         2
## 1529          TRUE             7            34    2        2         2
## 1530          TRUE             7            28    2        2         2
## 1531          TRUE             7            28    2        2         2
## 1532          TRUE             7            28    2        2         2
## 1533          TRUE             7            28    2        2         2
## 1534          TRUE             7            28    2        2         2
## 1535          TRUE             7            28    2        2         2
## 1536          TRUE             7            24    2        2         2
## 1537          TRUE             7            15    2        2         2
## 1538          TRUE             7            04    2        2         2
## 1539          TRUE             7            02    2        2         2
## 1540          TRUE             7            01    2        2         2
## 1541          TRUE             6            51    2        2         2
## 1542          TRUE             6            51    2        2         2
## 1543          TRUE             6            51    2        2         2
## 1544          TRUE             6            51    2        2         2
## 1545          TRUE             6            51    2        2         2
## 1546          TRUE             6            44    2        2         2
## 1547          TRUE             6            34    2        2         2
## 1548          TRUE             6            31    2        2         2
## 1549          TRUE             6            29    2        2         2
## 1550          TRUE             6            27    2        2         2
## 1551          TRUE             6            19    2        2         2
## 1552          TRUE             6            17    2        2         2
## 1553          TRUE             6            17    2        2         2
## 1554          TRUE             6            17    2        2         2
## 1555          TRUE             6            03    2        2         2
## 1556          TRUE             6            01    2        2         2
## 1557          TRUE             5            44    2        2         2
## 1558          TRUE             5            23    2        2         2
## 1559          TRUE             5            20    2        2         2
## 1560          TRUE             5            03    2        2         2
## 1561          TRUE             5            01    2        2         2
## 1562          TRUE             4            54    2        2         2
## 1563          TRUE             4            48    2        2         2
## 1564          TRUE             4            41    2        2         2
## 1565          TRUE             4            39    2        2         2
## 1566          TRUE             4            37    2        2         2
## 1567          TRUE             4            37    2        2         2
## 1568          TRUE             4            37    2        2         2
## 1569          TRUE             4            37    2        2         2
## 1570          TRUE             4            33    2        2         2
## 1571          TRUE             4            33    2        2         2
## 1572          TRUE             4            30    2        2         2
## 1573          TRUE             4            11    2        2         2
## 1574          TRUE             4            08    2        2         2
## 1575          TRUE             3            52    2        2         2
## 1576          TRUE             3            50    2        2         2
## 1577          TRUE             3            32    2        2         2
## 1578          TRUE             3            07    2        2         2
## 1579          TRUE             3            07    2        2         2
## 1580          TRUE             3            07    2        2         2
## 1581          TRUE             3            07    2        2         2
## 1582          TRUE             2            54    2        2         2
## 1583          TRUE             2            54    2        2         2
## 1584          TRUE             2            54    2        2         2
## 1585          TRUE             2            54    2        2         2
## 1586          TRUE             2            54    2        2         2
## 1587          TRUE             2            54    2        2         2
## 1588          TRUE             2            38    2        2         2
## 1589          TRUE             2            38    2        2         2
## 1590          TRUE             2            30    2        2         2
## 1591          TRUE             2            30    2        2         2
## 1592          TRUE             2            30    2        2         2
## 1593          TRUE             2            24    2        2         2
## 1594          TRUE             2            21    2        2         2
## 1595          TRUE             2            16    2        2         2
## 1596          TRUE             2            06    2        2         2
## 1597          TRUE             1            55    2        2         2
## 1598          TRUE             1            54    2        2         2
## 1599          TRUE             1            53    2        2         2
## 1600          TRUE             1            49    2        2         2
## 1601          TRUE             1            49    2        2         2
## 1602          TRUE             1            49    2        2         2
## 1603          TRUE             1            49    2        2         2
## 1604          TRUE             1            38    2        2         2
## 1605          TRUE             1            35    2        2         2
## 1606          TRUE             1            29    2        2         2
## 1607          TRUE             1            25    2        2         2
## 1608          TRUE             1            09    2        2         2
## 1609          TRUE             0          58.9    2        2         2
## 1610          TRUE             0          54.7    2        2         2
## 1611          TRUE             0          53.2    2        2         2
## 1612          TRUE             0          53.2    2        2         2
## 1613          TRUE             0          53.2    2        2         2
## 1614          TRUE             0          40.4    2        2         2
## 1615          TRUE             0          40.3    2        2         2
## 1616          TRUE             0          36.7    2        2         2
## 1617          TRUE             0          21.2    2        2         2
## 1618          TRUE             0          16.5    2        2         2
## 1619          TRUE             0          14.6    2        2         2
## 1620          TRUE             0          12.7    2        2         2
## 1621          TRUE             0           9.1    2        2         2
## 1622          TRUE             0           2.0    2        2         2
## 1623          TRUE             0           0.1    2        2         2
## 1624          TRUE             0           0.0    2        2         2
## 1625          TRUE             0           0.0    2        2      <NA>
## 1626          TRUE            10            00    1     <NA>         1
## 1627          TRUE             9            48    1        1         1
## 1628          TRUE             9            42    1        1         1
## 1629          TRUE             9            20    1        1         1
## 1630          TRUE             9            17    1        1         1
## 1631          TRUE             9            02    1        1         1
## 1632          TRUE             8            58    1        1         1
## 1633          TRUE             8            43    1        1         1
## 1634          TRUE             8            26    1        1         1
## 1635          TRUE             8            07    1        1         1
## 1636          TRUE             8            05    1        1         1
## 1637          TRUE             8            01    1        1         1
## 1638          TRUE             7            47    1        1         1
## 1639          TRUE             7            47    1        1         1
## 1640          TRUE             7            29    1        1         1
## 1641          TRUE             7            24    1        1         1
## 1642          TRUE             7            20    1        1         1
## 1643          TRUE             7            10    1        1         1
## 1644          TRUE             7            03    1        1         1
## 1645          TRUE             6            59    1        1         1
## 1646          TRUE             6            53    1        1         1
## 1647          TRUE             6            50    1        1         1
## 1648          TRUE             6            43    1        1         1
## 1649          TRUE             6            40    1        1         1
## 1650          TRUE             6            30    1        1         1
## 1651          TRUE             6            27    1        1         1
## 1652          TRUE             6            21    1        1         1
## 1653          TRUE             6            04    1        1         1
## 1654          TRUE             5            51    1        1         1
## 1655          TRUE             5            34    1        1         1
## 1656          TRUE             5            26    1        1         1
## 1657          TRUE             5            23    1        1         1
## 1658          TRUE             5            18    1        1         1
## 1659          TRUE             4            59    1        1         1
## 1660          TRUE             4            56    1        1         1
## 1661          TRUE             4            48    1        1         1
## 1662          TRUE             4            48    1        1         1
## 1663          TRUE             4            48    1        1         1
## 1664          TRUE             4            48    1        1         1
## 1665          TRUE             4            48    1        1         1
## 1666          TRUE             4            48    1        1         1
## 1667          TRUE             4            48    1        1         1
## 1668          TRUE             4            48    1        1         1
## 1669          TRUE             4            30    1        1         1
## 1670          TRUE             4            10    1        1         1
## 1671          TRUE             4            07    1        1         1
## 1672          TRUE             3            59    1        1         1
## 1673          TRUE             3            57    1        1         1
## 1674          TRUE             3            48    1        1         1
## 1675          TRUE             3            45    1        1         1
## 1676          TRUE             3            33    1        1         1
## 1677          TRUE             3            30    1        1         1
## 1678          TRUE             3            16    1        1         1
## 1679          TRUE             3            12    1        1         1
## 1680          TRUE             2            46    1        1         1
## 1681          TRUE             2            46    1        1         1
## 1682          TRUE             2            46    1        1         1
## 1683          TRUE             2            46    1        1         1
## 1684          TRUE             2            30    1        1         1
## 1685          TRUE             2            17    1        1         1
## 1686          TRUE             2            04    1        1         1
## 1687          TRUE             1            44    1        1         1
## 1688          TRUE             1            27    1        1         1
## 1689          TRUE             1            26    1        1         1
## 1690          TRUE             1            26    1        1         1
## 1691          TRUE             1            26    1        1         1
## 1692          TRUE             1            26    1        1         1
## 1693          TRUE             1            26    1        1         1
## 1694          TRUE             1            05    1        1         1
## 1695          TRUE             1            01    1        1         1
## 1696          TRUE             0          43.6    1        1         1
## 1697          TRUE             0          41.7    1        1         1
## 1698          TRUE             0          38.3    1        1         1
## 1699          TRUE             0          16.1    1        1         1
## 1700          TRUE             0          12.6    1        1         1
## 1701          TRUE             0           1.1    1        1         1
## 1702          TRUE             0           1.1    1        1         1
## 1703          TRUE             0           0.0    1        1         1
## 1704          TRUE            10            00    1        1         1
## 1705          TRUE            10            00    1        1         1
## 1706          TRUE             9            46    1        1         1
## 1707          TRUE             9            37    1        1         1
## 1708          TRUE             9            35    1        1         1
## 1709          TRUE             9            35    1        1         1
## 1710          TRUE             9            35    1        1         1
## 1711          TRUE             9            35    1        1         1
## 1712          TRUE             9            19    1        1         1
## 1713          TRUE             9            15    1        1         1
## 1714          TRUE             9            05    1        1         1
## 1715          TRUE             8            55    1        1         1
## 1716          TRUE             8            50    1        1         1
## 1717          TRUE             8            39    1        1         1
## 1718          TRUE             8            28    1        1         1
## 1719          TRUE             8            28    1        1         1
## 1720          TRUE             8            28    1        1         1
## 1721          TRUE             8            23    1        1         1
## 1722          TRUE             8            23    1        1         1
## 1723          TRUE             8            23    1        1         1
## 1724          TRUE             8            23    1        1         1
## 1725          TRUE             8            09    1        1         1
## 1726          TRUE             8            09    1        1         1
## 1727          TRUE             8            03    1        1         1
## 1728          TRUE             7            51    1        1         1
## 1729          TRUE             7            48    1        1         1
## 1730          TRUE             7            42    1        1         1
## 1731          TRUE             7            41    1        1         1
## 1732          TRUE             7            23    1        1         1
## 1733          TRUE             7            22    1        1         1
## 1734          TRUE             7            21    1        1         1
## 1735          TRUE             7            19    1        1         1
## 1736          TRUE             7            13    1        1         1
## 1737          TRUE             7            10    1        1         1
## 1738          TRUE             7            07    1        1         1
## 1739          TRUE             7            07    1        1         1
## 1740          TRUE             7            06    1        1         1
## 1741          TRUE             7            06    1        1         1
## 1742          TRUE             7            06    1        1         1
## 1743          TRUE             7            06    1        1         1
## 1744          TRUE             7            06    1        1         1
## 1745          TRUE             6            49    1        1         1
## 1746          TRUE             6            49    1        1         1
## 1747          TRUE             6            49    1        1         1
## 1748          TRUE             6            35    1        1         1
## 1749          TRUE             6            18    1        1         1
## 1750          TRUE             6            18    1        1         1
## 1751          TRUE             6            18    1        1         1
## 1752          TRUE             6            18    1        1         1
## 1753          TRUE             5            54    1        1         1
## 1754          TRUE             5            51    1        1         1
## 1755          TRUE             5            51    1        1         1
## 1756          TRUE             5            51    1        1         1
## 1757          TRUE             5            36    1        1         1
## 1758          TRUE             5            31    1        1         1
## 1759          TRUE             5            21    1        1         1
## 1760          TRUE             5            17    1        1         1
## 1761          TRUE             5            13    1        1         1
## 1762          TRUE             5            13    1        1         1
## 1763          TRUE             5            13    1        1         1
## 1764          TRUE             5            13    1        1         1
## 1765          TRUE             5            13    1        1         1
## 1766          TRUE             4            51    1        1         1
## 1767          TRUE             4            49    1        1         1
## 1768          TRUE             4            46    1        1         1
## 1769          TRUE             4            35    1        1         1
## 1770          TRUE             4            32    1        1         1
## 1771          TRUE             4            29    1        1         1
## 1772          TRUE             4            26    1        1         1
## 1773          TRUE             4            17    1        1         1
## 1774          TRUE             4            15    1        1         1
## 1775          TRUE             4            10    1        1         1
## 1776          TRUE             4            05    1        1         1
## 1777          TRUE             4            05    1        1         1
## 1778          TRUE             3            56    1        1         1
## 1779          TRUE             3            49    1        1         1
## 1780          TRUE             3            49    1        1         1
## 1781          TRUE             3            49    1        1         1
## 1782          TRUE             3            49    1        1         1
## 1783          TRUE             3            33    1        1         1
## 1784          TRUE             3            29    1        1         1
## 1785          TRUE             3            24    1        1         1
## 1786          TRUE             3            24    1        1         1
## 1787          TRUE             3            24    1        1         1
## 1788          TRUE             3            21    1        1         1
## 1789          TRUE             3            00    1        1         1
## 1790          TRUE             2            59    1        1         1
## 1791          TRUE             2            59    1        1         1
## 1792          TRUE             2            52    1        1         1
## 1793          TRUE             2            52    1        1         1
## 1794          TRUE             2            52    1        1         1
## 1795          TRUE             2            52    1        1         1
## 1796          TRUE             2            35    1        1         1
## 1797          TRUE             2            32    1        1         1
## 1798          TRUE             2            22    1        1         1
## 1799          TRUE             2            19    1        1         1
## 1800          TRUE             2            13    1        1         1
## 1801          TRUE             2            11    1        1         1
## 1802          TRUE             2            11    1        1         1
## 1803          TRUE             2            01    1        1         1
## 1804          TRUE             1            59    1        1         1
## 1805          TRUE             1            48    1        1         1
## 1806          TRUE             1            44    1        1         1
## 1807          TRUE             1            32    1        1         1
## 1808          TRUE             1            29    1        1         1
## 1809          TRUE             1            21    1        1         1
## 1810          TRUE             1            19    1        1         1
## 1811          TRUE             1            17    1        1         1
## 1812          TRUE             1            17    1        1         1
## 1813          TRUE             1            17    1        1         1
## 1814          TRUE             1            17    1        1         1
## 1815          TRUE             1            17    1        1         1
## 1816          TRUE             0          56.9    1        1         1
## 1817          TRUE             0          54.7    1        1         1
## 1818          TRUE             0          53.4    1        1         1
## 1819          TRUE             0          37.1    1        1         1
## 1820          TRUE             0          35.4    1        1         1
## 1821          TRUE             0          27.8    1        1         1
## 1822          TRUE             0          25.5    1        1         1
## 1823          TRUE             0          23.2    1        1         1
## 1824          TRUE             0          23.2    1        1         1
## 1825          TRUE             0          23.2    1        1         1
## 1826          TRUE             0          23.2    1        1         1
## 1827          TRUE             0          23.2    1        1         1
## 1828          TRUE             0          11.5    1        1         1
## 1829          TRUE             0          11.5    1        1         1
## 1830          TRUE             0          11.5    1        1         1
## 1831          TRUE             0           2.8    1        1         1
## 1832          TRUE             0           2.8    1        1         1
## 1833          TRUE             0           2.8    1        1         1
## 1834          TRUE             0           0.1    1        1         1
## 1835          TRUE             0           0.1    1        1         1
## 1836          TRUE             0           0.0    1        1         2
## 1837          TRUE            10            00    2        1         2
## 1838          TRUE            10            00    2        2         2
## 1839          TRUE            10            00    2        2         2
## 1840          TRUE             9            40    2        2         2
## 1841          TRUE             9            17    2        2         2
## 1842          TRUE             9            07    2        2         2
## 1843          TRUE             9            05    2        2         2
## 1844          TRUE             9            04    2        2         2
## 1845          TRUE             9            04    2        2         2
## 1846          TRUE             8            52    2        2         2
## 1847          TRUE             8            50    2        2         2
## 1848          TRUE             8            49    2        2         2
## 1849          TRUE             8            30    2        2         2
## 1850          TRUE             8            28    2        2         2
## 1851          TRUE             8            06    2        2         2
## 1852          TRUE             8            03    2        2         2
## 1853          TRUE             8            03    2        2         2
## 1854          TRUE             7            50    2        2         2
## 1855          TRUE             7            48    2        2         2
## 1856          TRUE             7            37    2        2         2
## 1857          TRUE             7            19    2        2         2
## 1858          TRUE             7            19    2        2         2
## 1859          TRUE             7            19    2        2         2
## 1860          TRUE             7            19    2        2         2
## 1861          TRUE             7            06    2        2         2
## 1862          TRUE             7            02    2        2         2
## 1863          TRUE             6            47    2        2         2
## 1864          TRUE             6            47    2        2         2
## 1865          TRUE             6            47    2        2         2
## 1866          TRUE             6            41    2        2         2
## 1867          TRUE             6            41    2        2         2
## 1868          TRUE             6            38    2        2         2
## 1869          TRUE             6            35    2        2         2
## 1870          TRUE             6            25    2        2         2
## 1871          TRUE             6            11    2        2         2
## 1872          TRUE             6            09    2        2         2
## 1873          TRUE             6            00    2        2         2
## 1874          TRUE             5            56    2        2         2
## 1875          TRUE             5            52    2        2         2
## 1876          TRUE             5            52    2        2         2
## 1877          TRUE             5            52    2        2         2
## 1878          TRUE             5            52    2        2         2
## 1879          TRUE             5            36    2        2         2
## 1880          TRUE             5            35    2        2         2
## 1881          TRUE             5            35    2        2         2
## 1882          TRUE             5            35    2        2         2
## 1883          TRUE             5            27    2        2         2
## 1884          TRUE             5            23    2        2         2
## 1885          TRUE             5            23    2        2         2
## 1886          TRUE             5            23    2        2         2
## 1887          TRUE             5            17    2        2         2
## 1888          TRUE             5            17    2        2         2
## 1889          TRUE             5            17    2        2         2
## 1890          TRUE             5            17    2        2         2
## 1891          TRUE             5            02    2        2         2
## 1892          TRUE             4            58    2        2         2
## 1893          TRUE             4            54    2        2         2
## 1894          TRUE             4            54    2        2         2
## 1895          TRUE             4            54    2        2         2
## 1896          TRUE             4            54    2        2         2
## 1897          TRUE             4            54    2        2         2
## 1898          TRUE             4            34    2        2         2
## 1899          TRUE             4            32    2        2         2
## 1900          TRUE             4            28    2        2         2
## 1901          TRUE             4            28    2        2         2
## 1902          TRUE             4            09    2        2         2
## 1903          TRUE             4            05    2        2         2
## 1904          TRUE             3            53    2        2         2
## 1905          TRUE             3            23    2        2         2
## 1906          TRUE             3            20    2        2         2
## 1907          TRUE             3            10    2        2         2
## 1908          TRUE             3            10    2        2         2
## 1909          TRUE             2            54    2        2         2
## 1910          TRUE             2            46    2        2         2
## 1911          TRUE             2            42    2        2         2
## 1912          TRUE             2            26    2        2         2
## 1913          TRUE             2            26    2        2         2
## 1914          TRUE             2            12    2        2         2
## 1915          TRUE             2            06    2        2         2
## 1916          TRUE             2            03    2        2         2
## 1917          TRUE             2            00    2        2         2
## 1918          TRUE             1            53    2        2         2
## 1919          TRUE             1            29    2        2         2
## 1920          TRUE             1            05    2        2         2
## 1921          TRUE             1            03    2        2         2
## 1922          TRUE             0          57.0    2        2         2
## 1923          TRUE             0          48.6    2        2         2
## 1924          TRUE             0          44.0    2        2         2
## 1925          TRUE             0          38.1    2        2         2
## 1926          TRUE             0          35.3    2        2         2
## 1927          TRUE             0          11.7    2        2         2
## 1928          TRUE             0           9.8    2        2         2
## 1929          TRUE             0           3.2    2        2         2
## 1930          TRUE             0           0.6    2        2         2
## 1931          TRUE             0           0.0    2        2         2
## 1932          TRUE            10            00    2        2         2
## 1933          TRUE            10            00    2        2         2
## 1934          TRUE            10            00    2        2         2
## 1935          TRUE            10            00    2        2         2
## 1936          TRUE            10            00    2        2         2
## 1937          TRUE            10            00    2        2         2
## 1938          TRUE            10            00    2        2         2
## 1939          TRUE             9            46    2        2         2
## 1940          TRUE             9            33    2        2         2
## 1941          TRUE             9            28    2        2         2
## 1942          TRUE             9            23    2        2         2
## 1943          TRUE             9            16    2        2         2
## 1944          TRUE             9            09    2        2         2
## 1945          TRUE             9            03    2        2         2
## 1946          TRUE             8            55    2        2         2
## 1947          TRUE             8            32    2        2         2
## 1948          TRUE             8            29    2        2         2
## 1949          TRUE             8            23    2        2         2
## 1950          TRUE             8            20    2        2         2
## 1951          TRUE             8            10    2        2         2
## 1952          TRUE             7            56    2        2         2
## 1953          TRUE             7            55    2        2         2
## 1954          TRUE             7            55    2        2         2
## 1955          TRUE             7            36    2        2         2
## 1956          TRUE             7            34    2        2         2
## 1957          TRUE             7            26    2        2         2
## 1958          TRUE             7            21    2        2         2
## 1959          TRUE             6            59    2        2         2
## 1960          TRUE             6            46    2        2         2
## 1961          TRUE             6            44    2        2         2
## 1962          TRUE             6            44    2        2         2
## 1963          TRUE             6            44    2        2         2
## 1964          TRUE             6            44    2        2         2
## 1965          TRUE             6            27    2        2         2
## 1966          TRUE             6            25    2        2         2
## 1967          TRUE             6            10    2        2         2
## 1968          TRUE             6            06    2        2         2
## 1969          TRUE             6            00    2        2         2
## 1970          TRUE             5            57    2        2         2
## 1971          TRUE             5            40    2        2         2
## 1972          TRUE             5            40    2        2         2
## 1973          TRUE             5            40    2        2         2
## 1974          TRUE             5            40    2        2         2
## 1975          TRUE             5            40    2        2         2
## 1976          TRUE             5            40    2        2         2
## 1977          TRUE             5            40    2        2         2
## 1978          TRUE             5            19    2        2         2
## 1979          TRUE             5            16    2        2         2
## 1980          TRUE             5            07    2        2         2
## 1981          TRUE             4            56    2        2         2
## 1982          TRUE             4            53    2        2         2
## 1983          TRUE             4            46    2        2         2
## 1984          TRUE             4            46    2        2         2
## 1985          TRUE             4            46    2        2         2
## 1986          TRUE             4            46    2        2         2
## 1987          TRUE             4            46    2        2         2
## 1988          TRUE             4            28    2        2         2
## 1989          TRUE             4            18    2        2         2
## 1990          TRUE             4            18    2        2         2
## 1991          TRUE             4            18    2        2         2
## 1992          TRUE             3            53    2        2         2
## 1993          TRUE             3            53    2        2         2
## 1994          TRUE             3            39    2        2         2
## 1995          TRUE             3            39    2        2         2
## 1996          TRUE             3            39    2        2         2
## 1997          TRUE             3            19    2        2         2
## 1998          TRUE             2            55    2        2         2
## 1999          TRUE             2            55    2        2         2
## 2000          TRUE             2            55    2        2         2
## 2001          TRUE             2            55    2        2         2
## 2002          TRUE             2            38    2        2         2
## 2003          TRUE             2            33    2        2         2
## 2004          TRUE             2            24    2        2         2
## 2005          TRUE             2            21    2        2         2
## 2006          TRUE             2            13    2        2         2
## 2007          TRUE             2            13    2        2         2
## 2008          TRUE             2            13    2        2         2
## 2009          TRUE             2            13    2        2         2
## 2010          TRUE             2            13    2        2         2
## 2011          TRUE             2            13    2        2         2
## 2012          TRUE             2            13    2        2         2
## 2013          TRUE             2            03    2        2         2
## 2014          TRUE             1            47    2        2         2
## 2015          TRUE             1            43    2        2         2
## 2016          TRUE             1            38    2        2         2
## 2017          TRUE             1            38    2        2         2
## 2018          TRUE             1            38    2        2         2
## 2019          TRUE             1            27    2        2         2
## 2020          TRUE             1            25    2        2         2
## 2021          TRUE             1            09    2        2         2
## 2022          TRUE             1            07    2        2         2
## 2023          TRUE             1            04    2        2         2
## 2024          TRUE             0          57.0    2        2         2
## 2025          TRUE             0          46.9    2        2         2
## 2026          TRUE             0          42.3    2        2         2
## 2027          TRUE             0          29.4    2        2         2
## 2028          TRUE             0          25.9    2        2         2
## 2029          TRUE             0          20.2    2        2         2
## 2030          TRUE             0          17.8    2        2         2
## 2031          TRUE             0          13.7    2        2         2
## 2032          TRUE             0          13.7    2        2         2
## 2033          TRUE             0          11.9    2        2         2
## 2034          TRUE             0          11.9    2        2         2
## 2035          TRUE             0          11.9    2        2         2
## 2036          TRUE             0          11.9    2        2         2
## 2037          TRUE             0           0.0    2        2         2
## 2038          TRUE             0           0.0    2        2      <NA>
## 2039          TRUE            10            00    1     <NA>         1
## 2040          TRUE             9            44    1        1         1
## 2041          TRUE             9            40    1        1         1
## 2042          TRUE             9            36    1        1         1
## 2043          TRUE             9            36    1        1         1
## 2044          TRUE             9            36    1        1         1
## 2045          TRUE             9            26    1        1         1
## 2046          TRUE             9            22    1        1         1
## 2047          TRUE             9            07    1        1         1
## 2048          TRUE             9            04    1        1         1
## 2049          TRUE             9            04    1        1         1
## 2050          TRUE             8            54    1        1         1
## 2051          TRUE             8            31    1        1         1
## 2052          TRUE             8            27    1        1         1
## 2053          TRUE             8            23    1        1         1
## 2054          TRUE             8            12    1        1         1
## 2055          TRUE             7            57    1        1         1
## 2056          TRUE             7            54    1        1         1
## 2057          TRUE             7            49    1        1         1
## 2058          TRUE             7            46    1        1         1
## 2059          TRUE             7            45    1        1         1
## 2060          TRUE             7            45    1        1         1
## 2061          TRUE             7            38    1        1         1
## 2062          TRUE             7            22    1        1         1
## 2063          TRUE             7            18    1        1         1
## 2064          TRUE             7            10    1        1         1
## 2065          TRUE             7            07    1        1         1
## 2066          TRUE             7            04    1        1         1
## 2067          TRUE             6            47    1        1         1
## 2068          TRUE             6            47    1        1         1
## 2069          TRUE             6            47    1        1         1
## 2070          TRUE             6            47    1        1         1
## 2071          TRUE             6            35    1        1         1
## 2072          TRUE             6            24    1        1         1
## 2073          TRUE             6            20    1        1         1
## 2074          TRUE             6            12    1        1         1
## 2075          TRUE             6            09    1        1         1
## 2076          TRUE             6            01    1        1         1
## 2077          TRUE             5            58    1        1         1
## 2078          TRUE             5            51    1        1         1
## 2079          TRUE             5            42    1        1         1
## 2080          TRUE             5            32    1        1         1
## 2081          TRUE             5            18    1        1         1
## 2082          TRUE             5            13    1        1         1
## 2083          TRUE             5            09    1        1         1
## 2084          TRUE             5            03    1        1         1
## 2085          TRUE             4            46    1        1         1
## 2086          TRUE             4            34    1        1         1
## 2087          TRUE             4            14    1        1         1
## 2088          TRUE             4            10    1        1         1
## 2089          TRUE             4            05    1        1         1
## 2090          TRUE             3            37    1        1         1
## 2091          TRUE             3            23    1        1         1
## 2092          TRUE             3            04    1        1         1
## 2093          TRUE             3            02    1        1         1
## 2094          TRUE             3            02    1        1         1
## 2095          TRUE             3            02    1        1         1
## 2096          TRUE             3            02    1        1         1
## 2097          TRUE             3            02    1        1         1
## 2098          TRUE             3            02    1        1         1
## 2099          TRUE             3            02    1        1         1
## 2100          TRUE             3            02    1        1         1
## 2101          TRUE             3            02    1        1         1
## 2102          TRUE             3            02    1        1         1
## 2103          TRUE             2            50    1        1         1
## 2104          TRUE             2            34    1        1         1
## 2105          TRUE             2            31    1        1         1
## 2106          TRUE             2            11    1        1         1
## 2107          TRUE             2            05    1        1         1
## 2108          TRUE             1            56    1        1         1
## 2109          TRUE             1            39    1        1         1
## 2110          TRUE             1            24    1        1         1
## 2111          TRUE             1            24    1        1         1
## 2112          TRUE             1            14    1        1         1
## 2113          TRUE             0          58.3    1        1         1
## 2114          TRUE             0          55.7    1        1         1
## 2115          TRUE             0          47.6    1        1         1
## 2116          TRUE             0          45.1    1        1         1
## 2117          TRUE             0          45.1    1        1         1
## 2118          TRUE             0          27.6    1        1         1
## 2119          TRUE             0          13.0    1        1         1
## 2120          TRUE             0           0.0    1        1         1
## 2121          TRUE             0           0.0    1        1         1
## 2122          TRUE             9            35    1        1         1
## 2123          TRUE             9            24    1        1         1
## 2124          TRUE             9            18    1        1         1
## 2125          TRUE             9            15    1        1         1
## 2126          TRUE             8            54    1        1         1
## 2127          TRUE             8            50    1        1         1
## 2128          TRUE             8            49    1        1         1
## 2129          TRUE             8            31    1        1         1
## 2130          TRUE             8            28    1        1         1
## 2131          TRUE             8            26    1        1         1
## 2132          TRUE             8            03    1        1         1
## 2133          TRUE             8            03    1        1         1
## 2134          TRUE             8            03    1        1         1
## 2135          TRUE             8            03    1        1         1
## 2136          TRUE             7            44    1        1         1
## 2137          TRUE             7            40    1        1         1
## 2138          TRUE             7            34    1        1         1
## 2139          TRUE             7            31    1        1         1
## 2140          TRUE             7            21    1        1         1
## 2141          TRUE             7            21    1        1         1
## 2142          TRUE             7            20    1        1         1
## 2143          TRUE             7            20    1        1         1
## 2144          TRUE             7            14    1        1         1
## 2145          TRUE             7            14    1        1         1
## 2146          TRUE             7            14    1        1         1
## 2147          TRUE             7            14    1        1         1
## 2148          TRUE             7            14    1        1         1
## 2149          TRUE             7            14    1        1         1
## 2150          TRUE             7            14    1        1         1
## 2151          TRUE             6            59    1        1         1
## 2152          TRUE             6            56    1        1         1
## 2153          TRUE             6            46    1        1         1
## 2154          TRUE             6            44    1        1         1
## 2155          TRUE             6            43    1        1         1
## 2156          TRUE             6            43    1        1         1
## 2157          TRUE             6            43    1        1         1
## 2158          TRUE             6            33    1        1         1
## 2159          TRUE             6            12    1        1         1
## 2160          TRUE             5            57    1        1         1
## 2161          TRUE             5            55    1        1         1
## 2162          TRUE             5            48    1        1         1
## 2163          TRUE             5            35    1        1         1
## 2164          TRUE             5            35    1        1         1
## 2165          TRUE             5            35    1        1         1
## 2166          TRUE             5            35    1        1         1
## 2167          TRUE             5            35    1        1         1
## 2168          TRUE             5            35    1        1         1
## 2169          TRUE             5            25    1        1         1
## 2170          TRUE             5            22    1        1         1
## 2171          TRUE             5            16    1        1         1
## 2172          TRUE             5            01    1        1         1
## 2173          TRUE             4            56    1        1         1
## 2174          TRUE             4            53    1        1         1
## 2175          TRUE             4            49    1        1         1
## 2176          TRUE             4            42    1        1         1
## 2177          TRUE             4            39    1        1         1
## 2178          TRUE             4            33    1        1         1
## 2179          TRUE             4            33    1        1         1
## 2180          TRUE             4            33    1        1         1
## 2181          TRUE             4            33    1        1         1
## 2182          TRUE             4            29    1        1         1
## 2183          TRUE             4            29    1        1         1
## 2184          TRUE             4            29    1        1         1
## 2185          TRUE             4            29    1        1         1
## 2186          TRUE             4            14    1        1         1
## 2187          TRUE             4            09    1        1         1
## 2188          TRUE             4            02    1        1         1
## 2189          TRUE             4            02    1        1         1
## 2190          TRUE             3            51    1        1         1
## 2191          TRUE             3            46    1        1         1
## 2192          TRUE             3            41    1        1         1
## 2193          TRUE             3            22    1        1         1
## 2194          TRUE             3            18    1        1         1
## 2195          TRUE             3            04    1        1         1
## 2196          TRUE             2            56    1        1         1
## 2197          TRUE             2            56    1        1         1
## 2198          TRUE             2            56    1        1         1
## 2199          TRUE             2            45    1        1         1
## 2200          TRUE             2            45    1        1         1
## 2201          TRUE             2            45    1        1         1
## 2202          TRUE             2            42    1        1         1
## 2203          TRUE             2            38    1        1         1
## 2204          TRUE             2            24    1        1         1
## 2205          TRUE             2            15    1        1         1
## 2206          TRUE             2            12    1        1         1
## 2207          TRUE             2            03    1        1         1
## 2208          TRUE             1            47    1        1         1
## 2209          TRUE             1            44    1        1         1
## 2210          TRUE             1            43    1        1         1
## 2211          TRUE             1            38    1        1         1
## 2212          TRUE             1            30    1        1         1
## 2213          TRUE             1            26    1        1         1
## 2214          TRUE             1            22    1        1         1
## 2215          TRUE             1            22    1        1         1
## 2216          TRUE             1            15    1        1         1
## 2217          TRUE             1            07    1        1         1
## 2218          TRUE             1            01    1        1         1
## 2219          TRUE             1            01    1        1         1
## 2220          TRUE             0          49.4    1        1         1
## 2221          TRUE             0          30.3    1        1         1
## 2222          TRUE             0          28.0    1        1         1
## 2223          TRUE             0          24.2    1        1         1
## 2224          TRUE             0           0.3    1        1         1
## 2225          TRUE             0           0.0    1        1         2
## 2226          TRUE             9            45    2        1         2
## 2227          TRUE             9            26    2        2         2
## 2228          TRUE             9            23    2        2         2
## 2229          TRUE             9            13    2        2         2
## 2230          TRUE             9            11    2        2         2
## 2231          TRUE             8            57    2        2         2
## 2232          TRUE             8            54    2        2         2
## 2233          TRUE             8            45    2        2         2
## 2234          TRUE             8            37    2        2         2
## 2235          TRUE             8            37    2        2         2
## 2236          TRUE             8            26    2        2         2
## 2237          TRUE             8            15    2        2         2
## 2238          TRUE             8            12    2        2         2
## 2239          TRUE             8            01    2        2         2
## 2240          TRUE             8            00    2        2         2
## 2241          TRUE             7            47    2        2         2
## 2242          TRUE             7            43    2        2         2
## 2243          TRUE             7            41    2        2         2
## 2244          TRUE             7            32    2        2         2
## 2245          TRUE             7            28    2        2         2
## 2246          TRUE             7            19    2        2         2
## 2247          TRUE             7            16    2        2         2
## 2248          TRUE             7            02    2        2         2
## 2249          TRUE             6            59    2        2         2
## 2250          TRUE             6            53    2        2         2
## 2251          TRUE             6            46    2        2         2
## 2252          TRUE             6            26    2        2         2
## 2253          TRUE             6            11    2        2         2
## 2254          TRUE             6            11    2        2         2
## 2255          TRUE             6            11    2        2         2
## 2256          TRUE             6            11    2        2         2
## 2257          TRUE             6            01    2        2         2
## 2258          TRUE             5            58    2        2         2
## 2259          TRUE             5            57    2        2         2
## 2260          TRUE             5            41    2        2         2
## 2261          TRUE             5            28    2        2         2
## 2262          TRUE             5            14    2        2         2
## 2263          TRUE             5            12    2        2         2
## 2264          TRUE             5            08    2        2         2
## 2265          TRUE             5            00    2        2         2
## 2266          TRUE             5            00    2        2         2
## 2267          TRUE             4            41    2        2         2
## 2268          TRUE             4            41    2        2         2
## 2269          TRUE             4            41    2        2         2
## 2270          TRUE             4            41    2        2         2
## 2271          TRUE             4            24    2        2         2
## 2272          TRUE             4            15    2        2         2
## 2273          TRUE             3            59    2        2         2
## 2274          TRUE             3            56    2        2         2
## 2275          TRUE             3            56    2        2         2
## 2276          TRUE             3            56    2        2         2
## 2277          TRUE             3            45    2        2         2
## 2278          TRUE             3            21    2        2         2
## 2279          TRUE             3            21    2        2         2
## 2280          TRUE             3            21    2        2         2
## 2281          TRUE             3            10    2        2         2
## 2282          TRUE             2            47    2        2         2
## 2283          TRUE             2            34    2        2         2
## 2284          TRUE             2            31    2        2         2
## 2285          TRUE             2            15    2        2         2
## 2286          TRUE             2            10    2        2         2
## 2287          TRUE             2            08    2        2         2
## 2288          TRUE             1            54    2        2         2
## 2289          TRUE             1            42    2        2         2
## 2290          TRUE             1            39    2        2         2
## 2291          TRUE             1            34    2        2         2
## 2292          TRUE             1            34    2        2         2
## 2293          TRUE             1            34    2        2         2
## 2294          TRUE             1            17    2        2         2
## 2295          TRUE             1            14    2        2         2
## 2296          TRUE             1            06    2        2         2
## 2297          TRUE             1            04    2        2         2
## 2298          TRUE             0          57.5    2        2         2
## 2299          TRUE             0          55.4    2        2         2
## 2300          TRUE             0          47.6    2        2         2
## 2301          TRUE             0          47.6    2        2         2
## 2302          TRUE             0          40.6    2        2         2
## 2303          TRUE             0          30.8    2        2         2
## 2304          TRUE             0          26.4    2        2         2
## 2305          TRUE             0          13.2    2        2         2
## 2306          TRUE             0           0.5    2        2         2
## 2307          TRUE             0           0.5    2        2         2
## 2308          TRUE             0           0.5    2        2         2
## 2309          TRUE             0           0.5    2        2         2
## 2310          TRUE             0           0.5    2        2         2
## 2311          TRUE             0           0.1    2        2         2
## 2312          TRUE             0           0.0    2        2         2
## 2313          TRUE             0           0.0    2        2         2
## 2314          TRUE            10            00    2        2         2
## 2315          TRUE             9            46    2        2         2
## 2316          TRUE             9            31    2        2         2
## 2317          TRUE             9            31    2        2         2
## 2318          TRUE             9            09    2        2         2
## 2319          TRUE             9            09    2        2         2
## 2320          TRUE             9            09    2        2         2
## 2321          TRUE             9            09    2        2         2
## 2322          TRUE             8            59    2        2         2
## 2323          TRUE             8            43    2        2         2
## 2324          TRUE             8            41    2        2         2
## 2325          TRUE             8            39    2        2         2
## 2326          TRUE             8            21    2        2         2
## 2327          TRUE             8            18    2        2         2
## 2328          TRUE             8            11    2        2         2
## 2329          TRUE             8            09    2        2         2
## 2330          TRUE             8            05    2        2         2
## 2331          TRUE             8            05    2        2         2
## 2332          TRUE             8            05    2        2         2
## 2333          TRUE             8            05    2        2         2
## 2334          TRUE             7            48    2        2         2
## 2335          TRUE             7            44    2        2         2
## 2336          TRUE             7            40    2        2         2
## 2337          TRUE             7            36    2        2         2
## 2338          TRUE             7            33    2        2         2
## 2339          TRUE             7            24    2        2         2
## 2340          TRUE             7            16    2        2         2
## 2341          TRUE             7            13    2        2         2
## 2342          TRUE             6            52    2        2         2
## 2343          TRUE             6            40    2        2         2
## 2344          TRUE             6            27    2        2         2
## 2345          TRUE             6            27    2        2         2
## 2346          TRUE             6            27    2        2         2
## 2347          TRUE             6            27    2        2         2
## 2348          TRUE             6            27    2        2         2
## 2349          TRUE             6            21    2        2         2
## 2350          TRUE             6            09    2        2         2
## 2351          TRUE             6            09    2        2         2
## 2352          TRUE             6            09    2        2         2
## 2353          TRUE             6            09    2        2         2
## 2354          TRUE             6            05    2        2         2
## 2355          TRUE             5            59    2        2         2
## 2356          TRUE             5            56    2        2         2
## 2357          TRUE             5            50    2        2         2
## 2358          TRUE             5            46    2        2         2
## 2359          TRUE             5            43    2        2         2
## 2360          TRUE             5            32    2        2         2
## 2361          TRUE             5            30    2        2         2
## 2362          TRUE             5            18    2        2         2
## 2363          TRUE             4            59    2        2         2
## 2364          TRUE             4            41    2        2         2
## 2365          TRUE             4            26    2        2         2
## 2366          TRUE             4            22    2        2         2
## 2367          TRUE             4            19    2        2         2
## 2368          TRUE             4            19    2        2         2
## 2369          TRUE             4            19    2        2         2
## 2370          TRUE             4            01    2        2         2
## 2371          TRUE             3            49    2        2         2
## 2372          TRUE             3            49    2        2         2
## 2373          TRUE             3            27    2        2         2
## 2374          TRUE             3            24    2        2         2
## 2375          TRUE             3            04    2        2         2
## 2376          TRUE             3            00    2        2         2
## 2377          TRUE             2            58    2        2         2
## 2378          TRUE             2            50    2        2         2
## 2379          TRUE             2            35    2        2         2
## 2380          TRUE             2            28    2        2         2
##      game_play_number
## 1                   1
## 2                   2
## 3                   3
## 4                   4
## 5                   5
## 6                   6
## 7                   7
## 8                   8
## 9                   9
## 10                 10
## 11                 11
## 12                 12
## 13                 13
## 14                 14
## 15                 15
## 16                 16
## 17                 17
## 18                 18
## 19                 19
## 20                 20
## 21                 21
## 22                 22
## 23                 23
## 24                 24
## 25                 25
## 26                 26
## 27                 27
## 28                 28
## 29                 29
## 30                 30
## 31                 31
## 32                 32
## 33                 33
## 34                 34
## 35                 35
## 36                 36
## 37                 37
## 38                 38
## 39                 39
## 40                 40
## 41                 41
## 42                 42
## 43                 43
## 44                 44
## 45                 45
## 46                 46
## 47                 47
## 48                 48
## 49                 49
## 50                 50
## 51                 51
## 52                 52
## 53                 53
## 54                 54
## 55                 55
## 56                 56
## 57                 57
## 58                 58
## 59                 59
## 60                 60
## 61                 61
## 62                 62
## 63                 63
## 64                 64
## 65                 65
## 66                 66
## 67                 67
## 68                 68
## 69                 69
## 70                 70
## 71                 71
## 72                 72
## 73                 73
## 74                 74
## 75                 75
## 76                 76
## 77                 77
## 78                 78
## 79                 79
## 80                 80
## 81                 81
## 82                 82
## 83                 83
## 84                 84
## 85                 85
## 86                 86
## 87                 87
## 88                 88
## 89                 89
## 90                 90
## 91                 91
## 92                 92
## 93                 93
## 94                 94
## 95                 95
## 96                 96
## 97                 97
## 98                 98
## 99                 99
## 100               100
## 101               101
## 102               102
## 103               103
## 104               104
## 105               105
## 106               106
## 107               107
## 108               108
## 109               109
## 110               110
## 111               111
## 112               112
## 113               113
## 114               114
## 115               115
## 116               116
## 117               117
## 118               118
## 119               119
## 120               120
## 121               121
## 122               122
## 123               123
## 124               124
## 125               125
## 126               126
## 127               127
## 128               128
## 129               129
## 130               130
## 131               131
## 132               132
## 133               133
## 134               134
## 135               135
## 136               136
## 137               137
## 138               138
## 139               139
## 140               140
## 141               141
## 142               142
## 143               143
## 144               144
## 145               145
## 146               146
## 147               147
## 148               148
## 149               149
## 150               150
## 151               151
## 152               152
## 153               153
## 154               154
## 155               155
## 156               156
## 157               157
## 158               158
## 159               159
## 160               160
## 161               161
## 162               162
## 163               163
## 164               164
## 165               165
## 166               166
## 167               167
## 168               168
## 169               169
## 170               170
## 171               171
## 172               172
## 173               173
## 174               174
## 175               175
## 176               176
## 177               177
## 178               178
## 179               179
## 180               180
## 181               181
## 182               182
## 183               183
## 184               184
## 185               185
## 186               186
## 187               187
## 188               188
## 189               189
## 190               190
## 191               191
## 192               192
## 193               193
## 194               194
## 195               195
## 196               196
## 197               197
## 198               198
## 199               199
## 200               200
## 201               201
## 202               202
## 203               203
## 204               204
## 205               205
## 206               206
## 207               207
## 208               208
## 209               209
## 210               210
## 211               211
## 212               212
## 213               213
## 214               214
## 215               215
## 216               216
## 217               217
## 218               218
## 219               219
## 220               220
## 221               221
## 222               222
## 223               223
## 224               224
## 225               225
## 226               226
## 227               227
## 228               228
## 229               229
## 230               230
## 231               231
## 232               232
## 233               233
## 234               234
## 235               235
## 236               236
## 237               237
## 238               238
## 239               239
## 240               240
## 241               241
## 242               242
## 243               243
## 244               244
## 245               245
## 246               246
## 247               247
## 248               248
## 249               249
## 250               250
## 251               251
## 252               252
## 253               253
## 254               254
## 255               255
## 256               256
## 257               257
## 258               258
## 259               259
## 260               260
## 261               261
## 262               262
## 263               263
## 264               264
## 265               265
## 266               266
## 267               267
## 268               268
## 269               269
## 270               270
## 271               271
## 272               272
## 273               273
## 274               274
## 275               275
## 276               276
## 277               277
## 278               278
## 279               279
## 280               280
## 281               281
## 282               282
## 283               283
## 284               284
## 285               285
## 286               286
## 287               287
## 288               288
## 289               289
## 290               290
## 291               291
## 292               292
## 293               293
## 294               294
## 295               295
## 296               296
## 297               297
## 298               298
## 299               299
## 300               300
## 301               301
## 302               302
## 303               303
## 304               304
## 305               305
## 306               306
## 307               307
## 308               308
## 309               309
## 310               310
## 311               311
## 312               312
## 313               313
## 314               314
## 315               315
## 316               316
## 317               317
## 318               318
## 319               319
## 320               320
## 321               321
## 322               322
## 323               323
## 324               324
## 325               325
## 326               326
## 327               327
## 328               328
## 329               329
## 330               330
## 331               331
## 332               332
## 333               333
## 334               334
## 335               335
## 336               336
## 337               337
## 338               338
## 339               339
## 340               340
## 341               341
## 342               342
## 343               343
## 344               344
## 345               345
## 346               346
## 347               347
## 348               348
## 349               349
## 350               350
## 351               351
## 352               352
## 353               353
## 354               354
## 355               355
## 356               356
## 357               357
## 358               358
## 359               359
## 360               360
## 361               361
## 362               362
## 363               363
## 364               364
## 365               365
## 366               366
## 367               367
## 368               368
## 369               369
## 370               370
## 371               371
## 372               372
## 373               373
## 374               374
## 375               375
## 376               376
## 377               377
## 378               378
## 379               379
## 380               380
## 381               381
## 382               382
## 383               383
## 384               384
## 385               385
## 386               386
## 387               387
## 388               388
## 389               389
## 390               390
## 391               391
## 392               392
## 393               393
## 394               394
## 395               395
## 396               396
## 397               397
## 398               398
## 399               399
## 400               400
## 401               401
## 402               402
## 403               403
## 404               404
## 405               405
## 406               406
## 407               407
## 408               408
## 409               409
## 410               410
## 411               411
## 412               412
## 413                 1
## 414                 2
## 415                 3
## 416                 4
## 417                 5
## 418                 6
## 419                 7
## 420                 8
## 421                 9
## 422                10
## 423                11
## 424                12
## 425                13
## 426                14
## 427                15
## 428                16
## 429                17
## 430                18
## 431                19
## 432                20
## 433                21
## 434                22
## 435                23
## 436                24
## 437                25
## 438                26
## 439                27
## 440                28
## 441                29
## 442                30
## 443                31
## 444                32
## 445                33
## 446                34
## 447                35
## 448                36
## 449                37
## 450                38
## 451                39
## 452                40
## 453                41
## 454                42
## 455                43
## 456                44
## 457                45
## 458                46
## 459                47
## 460                48
## 461                49
## 462                50
## 463                51
## 464                52
## 465                53
## 466                54
## 467                55
## 468                56
## 469                57
## 470                58
## 471                59
## 472                60
## 473                61
## 474                62
## 475                63
## 476                64
## 477                65
## 478                66
## 479                67
## 480                68
## 481                69
## 482                70
## 483                71
## 484                72
## 485                73
## 486                74
## 487                75
## 488                76
## 489                77
## 490                78
## 491                79
## 492                80
## 493                81
## 494                82
## 495                83
## 496                84
## 497                85
## 498                86
## 499                87
## 500                88
## 501                89
## 502                90
## 503                91
## 504                92
## 505                93
## 506                94
## 507                95
## 508                96
## 509                97
## 510                98
## 511                99
## 512               100
## 513               101
## 514               102
## 515               103
## 516               104
## 517               105
## 518               106
## 519               107
## 520               108
## 521               109
## 522               110
## 523               111
## 524               112
## 525               113
## 526               114
## 527               115
## 528               116
## 529               117
## 530               118
## 531               119
## 532               120
## 533               121
## 534               122
## 535               123
## 536               124
## 537               125
## 538               126
## 539               127
## 540               128
## 541               129
## 542               130
## 543               131
## 544               132
## 545               133
## 546               134
## 547               135
## 548               136
## 549               137
## 550               138
## 551               139
## 552               140
## 553               141
## 554               142
## 555               143
## 556               144
## 557               145
## 558               146
## 559               147
## 560               148
## 561               149
## 562               150
## 563               151
## 564               152
## 565               153
## 566               154
## 567               155
## 568               156
## 569               157
## 570               158
## 571               159
## 572               160
## 573               161
## 574               162
## 575               163
## 576               164
## 577               165
## 578               166
## 579               167
## 580               168
## 581               169
## 582               170
## 583               171
## 584               172
## 585               173
## 586               174
## 587               175
## 588               176
## 589               177
## 590               178
## 591               179
## 592               180
## 593               181
## 594               182
## 595               183
## 596               184
## 597               185
## 598               186
## 599               187
## 600               188
## 601               189
## 602               190
## 603               191
## 604               192
## 605               193
## 606               194
## 607               195
## 608               196
## 609               197
## 610               198
## 611               199
## 612               200
## 613               201
## 614               202
## 615               203
## 616               204
## 617               205
## 618               206
## 619               207
## 620               208
## 621               209
## 622               210
## 623               211
## 624               212
## 625               213
## 626               214
## 627               215
## 628               216
## 629               217
## 630               218
## 631               219
## 632               220
## 633               221
## 634               222
## 635               223
## 636               224
## 637               225
## 638               226
## 639               227
## 640               228
## 641               229
## 642               230
## 643               231
## 644               232
## 645               233
## 646               234
## 647               235
## 648               236
## 649               237
## 650               238
## 651               239
## 652               240
## 653               241
## 654               242
## 655               243
## 656               244
## 657               245
## 658               246
## 659               247
## 660               248
## 661               249
## 662               250
## 663               251
## 664               252
## 665               253
## 666               254
## 667               255
## 668               256
## 669               257
## 670               258
## 671               259
## 672               260
## 673               261
## 674               262
## 675               263
## 676               264
## 677               265
## 678               266
## 679               267
## 680               268
## 681               269
## 682               270
## 683               271
## 684               272
## 685               273
## 686               274
## 687               275
## 688               276
## 689               277
## 690               278
## 691               279
## 692               280
## 693               281
## 694               282
## 695               283
## 696               284
## 697               285
## 698               286
## 699               287
## 700               288
## 701               289
## 702               290
## 703               291
## 704               292
## 705               293
## 706               294
## 707               295
## 708               296
## 709               297
## 710               298
## 711               299
## 712               300
## 713               301
## 714               302
## 715               303
## 716               304
## 717               305
## 718               306
## 719               307
## 720               308
## 721               309
## 722               310
## 723               311
## 724               312
## 725               313
## 726               314
## 727               315
## 728               316
## 729               317
## 730               318
## 731               319
## 732               320
## 733               321
## 734               322
## 735               323
## 736               324
## 737               325
## 738               326
## 739               327
## 740               328
## 741               329
## 742               330
## 743               331
## 744               332
## 745               333
## 746               334
## 747               335
## 748               336
## 749               337
## 750               338
## 751               339
## 752               340
## 753               341
## 754               342
## 755               343
## 756               344
## 757               345
## 758               346
## 759               347
## 760               348
## 761               349
## 762               350
## 763               351
## 764               352
## 765               353
## 766               354
## 767               355
## 768               356
## 769               357
## 770               358
## 771               359
## 772               360
## 773               361
## 774               362
## 775               363
## 776               364
## 777               365
## 778               366
## 779               367
## 780               368
## 781               369
## 782               370
## 783               371
## 784               372
## 785               373
## 786               374
## 787               375
## 788               376
## 789               377
## 790               378
## 791               379
## 792               380
## 793               381
## 794               382
## 795               383
## 796               384
## 797               385
## 798               386
## 799               387
## 800                 1
## 801                 2
## 802                 3
## 803                 4
## 804                 5
## 805                 6
## 806                 7
## 807                 8
## 808                 9
## 809                10
## 810                11
## 811                12
## 812                13
## 813                14
## 814                15
## 815                16
## 816                17
## 817                18
## 818                19
## 819                20
## 820                21
## 821                22
## 822                23
## 823                24
## 824                25
## 825                26
## 826                27
## 827                28
## 828                29
## 829                30
## 830                31
## 831                32
## 832                33
## 833                34
## 834                35
## 835                36
## 836                37
## 837                38
## 838                39
## 839                40
## 840                41
## 841                42
## 842                43
## 843                44
## 844                45
## 845                46
## 846                47
## 847                48
## 848                49
## 849                50
## 850                51
## 851                52
## 852                53
## 853                54
## 854                55
## 855                56
## 856                57
## 857                58
## 858                59
## 859                60
## 860                61
## 861                62
## 862                63
## 863                64
## 864                65
## 865                66
## 866                67
## 867                68
## 868                69
## 869                70
## 870                71
## 871                72
## 872                73
## 873                74
## 874                75
## 875                76
## 876                77
## 877                78
## 878                79
## 879                80
## 880                81
## 881                82
## 882                83
## 883                84
## 884                85
## 885                86
## 886                87
## 887                88
## 888                89
## 889                90
## 890                91
## 891                92
## 892                93
## 893                94
## 894                95
## 895                96
## 896                97
## 897                98
## 898                99
## 899               100
## 900               101
## 901               102
## 902               103
## 903               104
## 904               105
## 905               106
## 906               107
## 907               108
## 908               109
## 909               110
## 910               111
## 911               112
## 912               113
## 913               114
## 914               115
## 915               116
## 916               117
## 917               118
## 918               119
## 919               120
## 920               121
## 921               122
## 922               123
## 923               124
## 924               125
## 925               126
## 926               127
## 927               128
## 928               129
## 929               130
## 930               131
## 931               132
## 932               133
## 933               134
## 934               135
## 935               136
## 936               137
## 937               138
## 938               139
## 939               140
## 940               141
## 941               142
## 942               143
## 943               144
## 944               145
## 945               146
## 946               147
## 947               148
## 948               149
## 949               150
## 950               151
## 951               152
## 952               153
## 953               154
## 954               155
## 955               156
## 956               157
## 957               158
## 958               159
## 959               160
## 960               161
## 961               162
## 962               163
## 963               164
## 964               165
## 965               166
## 966               167
## 967               168
## 968               169
## 969               170
## 970               171
## 971               172
## 972               173
## 973               174
## 974               175
## 975               176
## 976               177
## 977               178
## 978               179
## 979               180
## 980               181
## 981               182
## 982               183
## 983               184
## 984               185
## 985               186
## 986               187
## 987               188
## 988               189
## 989               190
## 990               191
## 991               192
## 992               193
## 993               194
## 994               195
## 995               196
## 996               197
## 997               198
## 998               199
## 999               200
## 1000              201
## 1001              202
## 1002              203
## 1003              204
## 1004              205
## 1005              206
## 1006              207
## 1007              208
## 1008              209
## 1009              210
## 1010              211
## 1011              212
## 1012              213
## 1013              214
## 1014              215
## 1015              216
## 1016              217
## 1017              218
## 1018              219
## 1019              220
## 1020              221
## 1021              222
## 1022              223
## 1023              224
## 1024              225
## 1025              226
## 1026              227
## 1027              228
## 1028              229
## 1029              230
## 1030              231
## 1031              232
## 1032              233
## 1033              234
## 1034              235
## 1035              236
## 1036              237
## 1037              238
## 1038              239
## 1039              240
## 1040              241
## 1041              242
## 1042              243
## 1043              244
## 1044              245
## 1045              246
## 1046              247
## 1047              248
## 1048              249
## 1049              250
## 1050              251
## 1051              252
## 1052              253
## 1053              254
## 1054              255
## 1055              256
## 1056              257
## 1057              258
## 1058              259
## 1059              260
## 1060              261
## 1061              262
## 1062              263
## 1063              264
## 1064              265
## 1065              266
## 1066              267
## 1067              268
## 1068              269
## 1069              270
## 1070              271
## 1071              272
## 1072              273
## 1073              274
## 1074              275
## 1075              276
## 1076              277
## 1077              278
## 1078              279
## 1079              280
## 1080              281
## 1081              282
## 1082              283
## 1083              284
## 1084              285
## 1085              286
## 1086              287
## 1087              288
## 1088              289
## 1089              290
## 1090              291
## 1091              292
## 1092              293
## 1093              294
## 1094              295
## 1095              296
## 1096              297
## 1097              298
## 1098              299
## 1099              300
## 1100              301
## 1101              302
## 1102              303
## 1103              304
## 1104              305
## 1105              306
## 1106              307
## 1107              308
## 1108              309
## 1109              310
## 1110              311
## 1111              312
## 1112              313
## 1113              314
## 1114              315
## 1115              316
## 1116              317
## 1117              318
## 1118              319
## 1119              320
## 1120              321
## 1121              322
## 1122              323
## 1123              324
## 1124              325
## 1125              326
## 1126              327
## 1127              328
## 1128              329
## 1129              330
## 1130              331
## 1131              332
## 1132              333
## 1133              334
## 1134              335
## 1135              336
## 1136              337
## 1137              338
## 1138              339
## 1139              340
## 1140              341
## 1141              342
## 1142              343
## 1143              344
## 1144              345
## 1145              346
## 1146              347
## 1147              348
## 1148              349
## 1149              350
## 1150              351
## 1151              352
## 1152              353
## 1153              354
## 1154              355
## 1155              356
## 1156              357
## 1157              358
## 1158              359
## 1159              360
## 1160              361
## 1161              362
## 1162              363
## 1163              364
## 1164              365
## 1165              366
## 1166              367
## 1167              368
## 1168              369
## 1169              370
## 1170              371
## 1171              372
## 1172              373
## 1173              374
## 1174              375
## 1175              376
## 1176              377
## 1177              378
## 1178              379
## 1179              380
## 1180              381
## 1181              382
## 1182              383
## 1183              384
## 1184              385
## 1185              386
## 1186              387
## 1187              388
## 1188              389
## 1189              390
## 1190              391
## 1191              392
## 1192              393
## 1193              394
## 1194              395
## 1195              396
## 1196              397
## 1197                1
## 1198                2
## 1199                3
## 1200                4
## 1201                5
## 1202                6
## 1203                7
## 1204                8
## 1205                9
## 1206               10
## 1207               11
## 1208               12
## 1209               13
## 1210               14
## 1211               15
## 1212               16
## 1213               17
## 1214               18
## 1215               19
## 1216               20
## 1217               21
## 1218               22
## 1219               23
## 1220               24
## 1221               25
## 1222               26
## 1223               27
## 1224               28
## 1225               29
## 1226               30
## 1227               31
## 1228               32
## 1229               33
## 1230               34
## 1231               35
## 1232               36
## 1233               37
## 1234               38
## 1235               39
## 1236               40
## 1237               41
## 1238               42
## 1239               43
## 1240               44
## 1241               45
## 1242               46
## 1243               47
## 1244               48
## 1245               49
## 1246               50
## 1247               51
## 1248               52
## 1249               53
## 1250               54
## 1251               55
## 1252               56
## 1253               57
## 1254               58
## 1255               59
## 1256               60
## 1257               61
## 1258               62
## 1259               63
## 1260               64
## 1261               65
## 1262               66
## 1263               67
## 1264               68
## 1265               69
## 1266               70
## 1267               71
## 1268               72
## 1269               73
## 1270               74
## 1271               75
## 1272               76
## 1273               77
## 1274               78
## 1275               79
## 1276               80
## 1277               81
## 1278               82
## 1279               83
## 1280               84
## 1281               85
## 1282               86
## 1283               87
## 1284               88
## 1285               89
## 1286               90
## 1287               91
## 1288               92
## 1289               93
## 1290               94
## 1291               95
## 1292               96
## 1293               97
## 1294               98
## 1295               99
## 1296              100
## 1297              101
## 1298              102
## 1299              103
## 1300              104
## 1301              105
## 1302              106
## 1303              107
## 1304              108
## 1305              109
## 1306              110
## 1307              111
## 1308              112
## 1309              113
## 1310              114
## 1311              115
## 1312              116
## 1313              117
## 1314              118
## 1315              119
## 1316              120
## 1317              121
## 1318              122
## 1319              123
## 1320              124
## 1321              125
## 1322              126
## 1323              127
## 1324              128
## 1325              129
## 1326              130
## 1327              131
## 1328              132
## 1329              133
## 1330              134
## 1331              135
## 1332              136
## 1333              137
## 1334              138
## 1335              139
## 1336              140
## 1337              141
## 1338              142
## 1339              143
## 1340              144
## 1341              145
## 1342              146
## 1343              147
## 1344              148
## 1345              149
## 1346              150
## 1347              151
## 1348              152
## 1349              153
## 1350              154
## 1351              155
## 1352              156
## 1353              157
## 1354              158
## 1355              159
## 1356              160
## 1357              161
## 1358              162
## 1359              163
## 1360              164
## 1361              165
## 1362              166
## 1363              167
## 1364              168
## 1365              169
## 1366              170
## 1367              171
## 1368              172
## 1369              173
## 1370              174
## 1371              175
## 1372              176
## 1373              177
## 1374              178
## 1375              179
## 1376              180
## 1377              181
## 1378              182
## 1379              183
## 1380              184
## 1381              185
## 1382              186
## 1383              187
## 1384              188
## 1385              189
## 1386              190
## 1387              191
## 1388              192
## 1389              193
## 1390              194
## 1391              195
## 1392              196
## 1393              197
## 1394              198
## 1395              199
## 1396              200
## 1397              201
## 1398              202
## 1399              203
## 1400              204
## 1401              205
## 1402              206
## 1403              207
## 1404              208
## 1405              209
## 1406              210
## 1407              211
## 1408              212
## 1409              213
## 1410              214
## 1411              215
## 1412              216
## 1413              217
## 1414              218
## 1415              219
## 1416              220
## 1417              221
## 1418              222
## 1419              223
## 1420              224
## 1421              225
## 1422              226
## 1423              227
## 1424              228
## 1425              229
## 1426              230
## 1427              231
## 1428              232
## 1429              233
## 1430              234
## 1431              235
## 1432              236
## 1433              237
## 1434              238
## 1435              239
## 1436              240
## 1437              241
## 1438              242
## 1439              243
## 1440              244
## 1441              245
## 1442              246
## 1443              247
## 1444              248
## 1445              249
## 1446              250
## 1447              251
## 1448              252
## 1449              253
## 1450              254
## 1451              255
## 1452              256
## 1453              257
## 1454              258
## 1455              259
## 1456              260
## 1457              261
## 1458              262
## 1459              263
## 1460              264
## 1461              265
## 1462              266
## 1463              267
## 1464              268
## 1465              269
## 1466              270
## 1467              271
## 1468              272
## 1469              273
## 1470              274
## 1471              275
## 1472              276
## 1473              277
## 1474              278
## 1475              279
## 1476              280
## 1477              281
## 1478              282
## 1479              283
## 1480              284
## 1481              285
## 1482              286
## 1483              287
## 1484              288
## 1485              289
## 1486              290
## 1487              291
## 1488              292
## 1489              293
## 1490              294
## 1491              295
## 1492              296
## 1493              297
## 1494              298
## 1495              299
## 1496              300
## 1497              301
## 1498              302
## 1499              303
## 1500              304
## 1501              305
## 1502              306
## 1503              307
## 1504              308
## 1505              309
## 1506              310
## 1507              311
## 1508              312
## 1509              313
## 1510              314
## 1511              315
## 1512              316
## 1513              317
## 1514              318
## 1515              319
## 1516              320
## 1517              321
## 1518              322
## 1519              323
## 1520              324
## 1521              325
## 1522              326
## 1523              327
## 1524              328
## 1525              329
## 1526              330
## 1527              331
## 1528              332
## 1529              333
## 1530              334
## 1531              335
## 1532              336
## 1533              337
## 1534              338
## 1535              339
## 1536              340
## 1537              341
## 1538              342
## 1539              343
## 1540              344
## 1541              345
## 1542              346
## 1543              347
## 1544              348
## 1545              349
## 1546              350
## 1547              351
## 1548              352
## 1549              353
## 1550              354
## 1551              355
## 1552              356
## 1553              357
## 1554              358
## 1555              359
## 1556              360
## 1557              361
## 1558              362
## 1559              363
## 1560              364
## 1561              365
## 1562              366
## 1563              367
## 1564              368
## 1565              369
## 1566              370
## 1567              371
## 1568              372
## 1569              373
## 1570              374
## 1571              375
## 1572              376
## 1573              377
## 1574              378
## 1575              379
## 1576              380
## 1577              381
## 1578              382
## 1579              383
## 1580              384
## 1581              385
## 1582              386
## 1583              387
## 1584              388
## 1585              389
## 1586              390
## 1587              391
## 1588              392
## 1589              393
## 1590              394
## 1591              395
## 1592              396
## 1593              397
## 1594              398
## 1595              399
## 1596              400
## 1597              401
## 1598              402
## 1599              403
## 1600              404
## 1601              405
## 1602              406
## 1603              407
## 1604              408
## 1605              409
## 1606              410
## 1607              411
## 1608              412
## 1609              413
## 1610              414
## 1611              415
## 1612              416
## 1613              417
## 1614              418
## 1615              419
## 1616              420
## 1617              421
## 1618              422
## 1619              423
## 1620              424
## 1621              425
## 1622              426
## 1623              427
## 1624              428
## 1625              429
## 1626                1
## 1627                2
## 1628                3
## 1629                4
## 1630                5
## 1631                6
## 1632                7
## 1633                8
## 1634                9
## 1635               10
## 1636               11
## 1637               12
## 1638               13
## 1639               14
## 1640               15
## 1641               16
## 1642               17
## 1643               18
## 1644               19
## 1645               20
## 1646               21
## 1647               22
## 1648               23
## 1649               24
## 1650               25
## 1651               26
## 1652               27
## 1653               28
## 1654               29
## 1655               30
## 1656               31
## 1657               32
## 1658               33
## 1659               34
## 1660               35
## 1661               36
## 1662               37
## 1663               38
## 1664               39
## 1665               40
## 1666               41
## 1667               42
## 1668               43
## 1669               44
## 1670               45
## 1671               46
## 1672               47
## 1673               48
## 1674               49
## 1675               50
## 1676               51
## 1677               52
## 1678               53
## 1679               54
## 1680               55
## 1681               56
## 1682               57
## 1683               58
## 1684               59
## 1685               60
## 1686               61
## 1687               62
## 1688               63
## 1689               64
## 1690               65
## 1691               66
## 1692               67
## 1693               68
## 1694               69
## 1695               70
## 1696               71
## 1697               72
## 1698               73
## 1699               74
## 1700               75
## 1701               76
## 1702               77
## 1703               78
## 1704               79
## 1705               80
## 1706               81
## 1707               82
## 1708               83
## 1709               84
## 1710               85
## 1711               86
## 1712               87
## 1713               88
## 1714               89
## 1715               90
## 1716               91
## 1717               92
## 1718               93
## 1719               94
## 1720               95
## 1721               96
## 1722               97
## 1723               98
## 1724               99
## 1725              100
## 1726              101
## 1727              102
## 1728              103
## 1729              104
## 1730              105
## 1731              106
## 1732              107
## 1733              108
## 1734              109
## 1735              110
## 1736              111
## 1737              112
## 1738              113
## 1739              114
## 1740              115
## 1741              116
## 1742              117
## 1743              118
## 1744              119
## 1745              120
## 1746              121
## 1747              122
## 1748              123
## 1749              124
## 1750              125
## 1751              126
## 1752              127
## 1753              128
## 1754              129
## 1755              130
## 1756              131
## 1757              132
## 1758              133
## 1759              134
## 1760              135
## 1761              136
## 1762              137
## 1763              138
## 1764              139
## 1765              140
## 1766              141
## 1767              142
## 1768              143
## 1769              144
## 1770              145
## 1771              146
## 1772              147
## 1773              148
## 1774              149
## 1775              150
## 1776              151
## 1777              152
## 1778              153
## 1779              154
## 1780              155
## 1781              156
## 1782              157
## 1783              158
## 1784              159
## 1785              160
## 1786              161
## 1787              162
## 1788              163
## 1789              164
## 1790              165
## 1791              166
## 1792              167
## 1793              168
## 1794              169
## 1795              170
## 1796              171
## 1797              172
## 1798              173
## 1799              174
## 1800              175
## 1801              176
## 1802              177
## 1803              178
## 1804              179
## 1805              180
## 1806              181
## 1807              182
## 1808              183
## 1809              184
## 1810              185
## 1811              186
## 1812              187
## 1813              188
## 1814              189
## 1815              190
## 1816              191
## 1817              192
## 1818              193
## 1819              194
## 1820              195
## 1821              196
## 1822              197
## 1823              198
## 1824              199
## 1825              200
## 1826              201
## 1827              202
## 1828              203
## 1829              204
## 1830              205
## 1831              206
## 1832              207
## 1833              208
## 1834              209
## 1835              210
## 1836              211
## 1837              212
## 1838              213
## 1839              214
## 1840              215
## 1841              216
## 1842              217
## 1843              218
## 1844              219
## 1845              220
## 1846              221
## 1847              222
## 1848              223
## 1849              224
## 1850              225
## 1851              226
## 1852              227
## 1853              228
## 1854              229
## 1855              230
## 1856              231
## 1857              232
## 1858              233
## 1859              234
## 1860              235
## 1861              236
## 1862              237
## 1863              238
## 1864              239
## 1865              240
## 1866              241
## 1867              242
## 1868              243
## 1869              244
## 1870              245
## 1871              246
## 1872              247
## 1873              248
## 1874              249
## 1875              250
## 1876              251
## 1877              252
## 1878              253
## 1879              254
## 1880              255
## 1881              256
## 1882              257
## 1883              258
## 1884              259
## 1885              260
## 1886              261
## 1887              262
## 1888              263
## 1889              264
## 1890              265
## 1891              266
## 1892              267
## 1893              268
## 1894              269
## 1895              270
## 1896              271
## 1897              272
## 1898              273
## 1899              274
## 1900              275
## 1901              276
## 1902              277
## 1903              278
## 1904              279
## 1905              280
## 1906              281
## 1907              282
## 1908              283
## 1909              284
## 1910              285
## 1911              286
## 1912              287
## 1913              288
## 1914              289
## 1915              290
## 1916              291
## 1917              292
## 1918              293
## 1919              294
## 1920              295
## 1921              296
## 1922              297
## 1923              298
## 1924              299
## 1925              300
## 1926              301
## 1927              302
## 1928              303
## 1929              304
## 1930              305
## 1931              306
## 1932              307
## 1933              308
## 1934              309
## 1935              310
## 1936              311
## 1937              312
## 1938              313
## 1939              314
## 1940              315
## 1941              316
## 1942              317
## 1943              318
## 1944              319
## 1945              320
## 1946              321
## 1947              322
## 1948              323
## 1949              324
## 1950              325
## 1951              326
## 1952              327
## 1953              328
## 1954              329
## 1955              330
## 1956              331
## 1957              332
## 1958              333
## 1959              334
## 1960              335
## 1961              336
## 1962              337
## 1963              338
## 1964              339
## 1965              340
## 1966              341
## 1967              342
## 1968              343
## 1969              344
## 1970              345
## 1971              346
## 1972              347
## 1973              348
## 1974              349
## 1975              350
## 1976              351
## 1977              352
## 1978              353
## 1979              354
## 1980              355
## 1981              356
## 1982              357
## 1983              358
## 1984              359
## 1985              360
## 1986              361
## 1987              362
## 1988              363
## 1989              364
## 1990              365
## 1991              366
## 1992              367
## 1993              368
## 1994              369
## 1995              370
## 1996              371
## 1997              372
## 1998              373
## 1999              374
## 2000              375
## 2001              376
## 2002              377
## 2003              378
## 2004              379
## 2005              380
## 2006              381
## 2007              382
## 2008              383
## 2009              384
## 2010              385
## 2011              386
## 2012              387
## 2013              388
## 2014              389
## 2015              390
## 2016              391
## 2017              392
## 2018              393
## 2019              394
## 2020              395
## 2021              396
## 2022              397
## 2023              398
## 2024              399
## 2025              400
## 2026              401
## 2027              402
## 2028              403
## 2029              404
## 2030              405
## 2031              406
## 2032              407
## 2033              408
## 2034              409
## 2035              410
## 2036              411
## 2037              412
## 2038              413
## 2039                1
## 2040                2
## 2041                3
## 2042                4
## 2043                5
## 2044                6
## 2045                7
## 2046                8
## 2047                9
## 2048               10
## 2049               11
## 2050               12
## 2051               13
## 2052               14
## 2053               15
## 2054               16
## 2055               17
## 2056               18
## 2057               19
## 2058               20
## 2059               21
## 2060               22
## 2061               23
## 2062               24
## 2063               25
## 2064               26
## 2065               27
## 2066               28
## 2067               29
## 2068               30
## 2069               31
## 2070               32
## 2071               33
## 2072               34
## 2073               35
## 2074               36
## 2075               37
## 2076               38
## 2077               39
## 2078               40
## 2079               41
## 2080               42
## 2081               43
## 2082               44
## 2083               45
## 2084               46
## 2085               47
## 2086               48
## 2087               49
## 2088               50
## 2089               51
## 2090               52
## 2091               53
## 2092               54
## 2093               55
## 2094               56
## 2095               57
## 2096               58
## 2097               59
## 2098               60
## 2099               61
## 2100               62
## 2101               63
## 2102               64
## 2103               65
## 2104               66
## 2105               67
## 2106               68
## 2107               69
## 2108               70
## 2109               71
## 2110               72
## 2111               73
## 2112               74
## 2113               75
## 2114               76
## 2115               77
## 2116               78
## 2117               79
## 2118               80
## 2119               81
## 2120               82
## 2121               83
## 2122               84
## 2123               85
## 2124               86
## 2125               87
## 2126               88
## 2127               89
## 2128               90
## 2129               91
## 2130               92
## 2131               93
## 2132               94
## 2133               95
## 2134               96
## 2135               97
## 2136               98
## 2137               99
## 2138              100
## 2139              101
## 2140              102
## 2141              103
## 2142              104
## 2143              105
## 2144              106
## 2145              107
## 2146              108
## 2147              109
## 2148              110
## 2149              111
## 2150              112
## 2151              113
## 2152              114
## 2153              115
## 2154              116
## 2155              117
## 2156              118
## 2157              119
## 2158              120
## 2159              121
## 2160              122
## 2161              123
## 2162              124
## 2163              125
## 2164              126
## 2165              127
## 2166              128
## 2167              129
## 2168              130
## 2169              131
## 2170              132
## 2171              133
## 2172              134
## 2173              135
## 2174              136
## 2175              137
## 2176              138
## 2177              139
## 2178              140
## 2179              141
## 2180              142
## 2181              143
## 2182              144
## 2183              145
## 2184              146
## 2185              147
## 2186              148
## 2187              149
## 2188              150
## 2189              151
## 2190              152
## 2191              153
## 2192              154
## 2193              155
## 2194              156
## 2195              157
## 2196              158
## 2197              159
## 2198              160
## 2199              161
## 2200              162
## 2201              163
## 2202              164
## 2203              165
## 2204              166
## 2205              167
## 2206              168
## 2207              169
## 2208              170
## 2209              171
## 2210              172
## 2211              173
## 2212              174
## 2213              175
## 2214              176
## 2215              177
## 2216              178
## 2217              179
## 2218              180
## 2219              181
## 2220              182
## 2221              183
## 2222              184
## 2223              185
## 2224              186
## 2225              187
## 2226              188
## 2227              189
## 2228              190
## 2229              191
## 2230              192
## 2231              193
## 2232              194
## 2233              195
## 2234              196
## 2235              197
## 2236              198
## 2237              199
## 2238              200
## 2239              201
## 2240              202
## 2241              203
## 2242              204
## 2243              205
## 2244              206
## 2245              207
## 2246              208
## 2247              209
## 2248              210
## 2249              211
## 2250              212
## 2251              213
## 2252              214
## 2253              215
## 2254              216
## 2255              217
## 2256              218
## 2257              219
## 2258              220
## 2259              221
## 2260              222
## 2261              223
## 2262              224
## 2263              225
## 2264              226
## 2265              227
## 2266              228
## 2267              229
## 2268              230
## 2269              231
## 2270              232
## 2271              233
## 2272              234
## 2273              235
## 2274              236
## 2275              237
## 2276              238
## 2277              239
## 2278              240
## 2279              241
## 2280              242
## 2281              243
## 2282              244
## 2283              245
## 2284              246
## 2285              247
## 2286              248
## 2287              249
## 2288              250
## 2289              251
## 2290              252
## 2291              253
## 2292              254
## 2293              255
## 2294              256
## 2295              257
## 2296              258
## 2297              259
## 2298              260
## 2299              261
## 2300              262
## 2301              263
## 2302              264
## 2303              265
## 2304              266
## 2305              267
## 2306              268
## 2307              269
## 2308              270
## 2309              271
## 2310              272
## 2311              273
## 2312              274
## 2313              275
## 2314              276
## 2315              277
## 2316              278
## 2317              279
## 2318              280
## 2319              281
## 2320              282
## 2321              283
## 2322              284
## 2323              285
## 2324              286
## 2325              287
## 2326              288
## 2327              289
## 2328              290
## 2329              291
## 2330              292
## 2331              293
## 2332              294
## 2333              295
## 2334              296
## 2335              297
## 2336              298
## 2337              299
## 2338              300
## 2339              301
## 2340              302
## 2341              303
## 2342              304
## 2343              305
## 2344              306
## 2345              307
## 2346              308
## 2347              309
## 2348              310
## 2349              311
## 2350              312
## 2351              313
## 2352              314
## 2353              315
## 2354              316
## 2355              317
## 2356              318
## 2357              319
## 2358              320
## 2359              321
## 2360              322
## 2361              323
## 2362              324
## 2363              325
## 2364              326
## 2365              327
## 2366              328
## 2367              329
## 2368              330
## 2369              331
## 2370              332
## 2371              333
## 2372              334
## 2373              335
## 2374              336
## 2375              337
## 2376              338
## 2377              339
## 2378              340
## 2379              341
## 2380              342
##  [ reached 'max' / getOption("max.print") -- omitted 17834 rows ]
# Get the shots and clean this data a bit:
wnba_shots_data <- wnba_pbp_data %>%
  filter(shooting_play)
# Remove unnecessary columns:
wnba_shots_data <- wnba_shots_data %>%
  dplyr::select(-shooting_play, -id, -participants_2_athlete_id,
                -type_abbreviation, -season, -season_type, 
                -home_team_spread, -game_spread, -home_favorite)


wnba_shots_data
##      sequence_number period_display_value period_number home_score coordinate_x
## 1                  6          1st Quarter             1          0           27
## 2                  9          1st Quarter             1          0           37
## 3                 13          1st Quarter             1          3           41
## 4                 15          1st Quarter             1          3           35
## 5                 17          1st Quarter             1          3           27
## 6                 20          1st Quarter             1          6           10
## 7                 21          1st Quarter             1          6            2
## 8                 25          1st Quarter             1          6           23
## 9                 27          1st Quarter             1          8           13
## 10                29          1st Quarter             1          8           22
## 11                32          1st Quarter             1          9   -214748340
## 12                33          1st Quarter             1         10   -214748340
## 13                34          1st Quarter             1         10           27
## 14                36          1st Quarter             1         10           25
## 15                37          1st Quarter             1         10           31
## 16                39          1st Quarter             1         10           16
## 17                42          1st Quarter             1         10           24
## 18                43          1st Quarter             1         10           39
## 19                45          1st Quarter             1         10           25
## 20                47          1st Quarter             1         13            6
## 21                49          1st Quarter             1         13           25
## 22                51          1st Quarter             1         15           26
## 23                53          1st Quarter             1         15           24
## 24                55          1st Quarter             1         15           29
## 25                57          1st Quarter             1         15           41
## 26                72          1st Quarter             1         18           37
## 27                74          1st Quarter             1         18           18
## 28                78          1st Quarter             1         19   -214748340
## 29                79          1st Quarter             1         20   -214748340
## 30                80          1st Quarter             1         20           47
## 31                82          1st Quarter             1         20           25
## 32               161          1st Quarter             1         20           26
## 33                84          1st Quarter             1         20           35
## 34                86          1st Quarter             1         23            8
## 35                88          1st Quarter             1         23           12
## 36                92          1st Quarter             1         23           25
## 37                94          1st Quarter             1         23           36
## 38                96          1st Quarter             1         23           26
## 39               100          1st Quarter             1         23   -214748340
## 40               101          1st Quarter             1         23   -214748340
## 41               113          1st Quarter             1         23           37
## 42               114          1st Quarter             1         26           29
## 43               116          1st Quarter             1         26           23
## 44               203          1st Quarter             1         26           36
## 45               118          1st Quarter             1         26           18
## 46               119          1st Quarter             1         26           34
## 47               121          1st Quarter             1         26           30
## 48               138          2nd Quarter             2         26           15
## 49               146          2nd Quarter             2         26           14
## 50               150          2nd Quarter             2         26           37
## 51               152          2nd Quarter             2         26           23
## 52               164          2nd Quarter             2         26   -214748340
## 53               169          2nd Quarter             2         26           23
## 54               171          2nd Quarter             2         26           25
## 55               175          2nd Quarter             2         27   -214748340
## 56               176          2nd Quarter             2         28   -214748340
## 57               177          2nd Quarter             2         28           23
## 58               179          2nd Quarter             2         30           24
## 59               181          2nd Quarter             2         30           38
## 60               183          2nd Quarter             2         30           28
## 61               185          2nd Quarter             2         30           26
## 62               198          2nd Quarter             2         33           14
## 63               200          2nd Quarter             2         33           36
## 64               201          2nd Quarter             2         33           34
## 65               205          2nd Quarter             2         33           23
## 66               207          2nd Quarter             2         33           19
## 67               209          2nd Quarter             2         33           24
## 68               211          2nd Quarter             2         33           16
## 69               212          2nd Quarter             2         33           27
## 70               214          2nd Quarter             2         33            2
## 71               219          2nd Quarter             2         36            2
## 72               228          2nd Quarter             2         36           13
## 73               230          2nd Quarter             2         36           44
## 74               232          2nd Quarter             2         36           12
## 75               234          2nd Quarter             2         36           18
## 76               236          2nd Quarter             2         38           24
## 77               238          2nd Quarter             2         38           26
## 78               240          2nd Quarter             2         40           24
## 79               242          2nd Quarter             2         40           30
## 80               243          2nd Quarter             2         40           35
## 81               248          2nd Quarter             2         40   -214748340
## 82               249          2nd Quarter             2         40   -214748340
## 83               250          2nd Quarter             2         43            3
## 84               252          2nd Quarter             2         43           13
## 85               256          2nd Quarter             2         43           23
## 86               261          2nd Quarter             2         43   -214748340
## 87               262          2nd Quarter             2         43   -214748340
## 88               264          2nd Quarter             2         43           47
## 89               268          2nd Quarter             2         45           36
## 90               269          2nd Quarter             2         45           26
## 91               272          2nd Quarter             2         46   -214748340
## 92               275          2nd Quarter             2         47   -214748340
## 93               276          2nd Quarter             2         47           25
## 94               286          3rd Quarter             3         47           17
## 95               288          3rd Quarter             3         50           14
## 96               289          3rd Quarter             3         50           13
## 97               291          3rd Quarter             3         52           26
## 98               293          3rd Quarter             3         52           27
## 99               295          3rd Quarter             3         52           25
## 100              297          3rd Quarter             3         52           24
## 101              298          3rd Quarter             3         52           21
## 102              302          3rd Quarter             3         52           32
## 103              304          3rd Quarter             3         52           29
## 104              306          3rd Quarter             3         54           29
## 105              308          3rd Quarter             3         54           27
## 106              312          3rd Quarter             3         56           24
## 107              317          3rd Quarter             3         56           29
## 108              319          3rd Quarter             3         56           21
## 109              321          3rd Quarter             3         56           25
## 110              323          3rd Quarter             3         56           19
## 111              325          3rd Quarter             3         56           36
## 112              328          3rd Quarter             3         59            4
## 113              330          3rd Quarter             3         59           40
## 114              332          3rd Quarter             3         61           25
## 115              335          3rd Quarter             3         62   -214748340
## 116              336          3rd Quarter             3         62           25
## 117              338          3rd Quarter             3         62           23
## 118              340          3rd Quarter             3         62           26
## 119              346          3rd Quarter             3         62   -214748340
## 120              347          3rd Quarter             3         62           23
## 121              350          3rd Quarter             3         62            9
## 122              352          3rd Quarter             3         62           15
## 123              354          3rd Quarter             3         62           24
## 124              356          3rd Quarter             3         62           24
## 125              358          3rd Quarter             3         62           26
## 126              360          3rd Quarter             3         62           24
## 127              368          3rd Quarter             3         62           35
## 128              376          3rd Quarter             3         64           16
## 129              377          3rd Quarter             3         64           37
## 130              379          3rd Quarter             3         64           18
## 131              384          3rd Quarter             3         64           21
## 132              386          3rd Quarter             3         66           26
## 133              389          3rd Quarter             3         66           26
## 134              393          3rd Quarter             3         66           28
## 135              397          3rd Quarter             3         68           13
## 136              398          3rd Quarter             3         68           35
## 137              403          3rd Quarter             3         68           26
## 138              409          4th Quarter             4         70           27
## 139              410          4th Quarter             4         70           25
## 140              415          4th Quarter             4         70            2
## 141              417          4th Quarter             4         72           18
## 142              424          4th Quarter             4         72           19
## 143              426          4th Quarter             4         72           24
## 144              430          4th Quarter             4         72   -214748340
## 145              436          4th Quarter             4         73   -214748340
## 146              437          4th Quarter             4         73           28
## 147              444          4th Quarter             4         73           33
## 148              448          4th Quarter             4         75           18
## 149              453          4th Quarter             4         75           35
## 150              456          4th Quarter             4         75           10
## 151              458          4th Quarter             4         75           48
## 152              462          4th Quarter             4         75           23
## 153              472          4th Quarter             4         75           25
## 154              474          4th Quarter             4         75           25
## 155              477          4th Quarter             4         75           26
## 156              485          4th Quarter             4         75   -214748340
## 157              488          4th Quarter             4         75           28
## 158              489          4th Quarter             4         77           21
## 159              492          4th Quarter             4         78   -214748340
## 160              493          4th Quarter             4         78           23
## 161              495          4th Quarter             4         78           25
## 162              498          4th Quarter             4         80           32
## 163              499          4th Quarter             4         80           24
## 164              501          4th Quarter             4         80           24
## 165              502          4th Quarter             4         80           11
## 166              512          4th Quarter             4         80   -214748340
## 167              514          4th Quarter             4         80   -214748340
## 168              517          4th Quarter             4         80   -214748340
## 169              519          4th Quarter             4         81   -214748340
## 170              520          4th Quarter             4         81           22
## 171              524          4th Quarter             4         81           26
## 172              526          4th Quarter             4         81           24
## 173              527          4th Quarter             4         81           14
## 174              529          4th Quarter             4         81           19
## 175              533          4th Quarter             4         81   -214748340
## 176              537          4th Quarter             4         82   -214748340
## 177              538          4th Quarter             4         82           38
## 178              542          4th Quarter             4         82           26
## 179              545          4th Quarter             4         82           25
## 180              546          4th Quarter             4         85           12
## 181              549          4th Quarter             4         85   -214748340
## 182              551          4th Quarter             4         85   -214748340
## 183              554          4th Quarter             4         86   -214748340
## 184              555          4th Quarter             4         87   -214748340
## 185              570          4th Quarter             4         90           13
## 186                8          1st Quarter             1          0           15
## 187               12          1st Quarter             1          0           38
## 188               14          1st Quarter             1          0           13
## 189               16          1st Quarter             1          0           16
## 190               18          1st Quarter             1          0           34
## 191               20          1st Quarter             1          0           21
## 192               22          1st Quarter             1          2           25
## 193               25          1st Quarter             1          2   -214748340
## 194               26          1st Quarter             1          2   -214748340
## 195               31          1st Quarter             1          2           26
## 196               35          1st Quarter             1          3   -214748340
## 197               38          1st Quarter             1          4   -214748340
## 198               40          1st Quarter             1          7            4
## 199               52          1st Quarter             1          7           25
## 200               56          1st Quarter             1          8   -214748340
## 201               57          1st Quarter             1          9   -214748340
## 202               58          1st Quarter             1          9           31
## 203               62          1st Quarter             1         10   -214748340
## 204               67          1st Quarter             1         11   -214748340
## 205               68          1st Quarter             1         11            3
## 206               70          1st Quarter             1         11           25
## 207               72          1st Quarter             1         11           11
## 208               74          1st Quarter             1         11           25
## 209               78          1st Quarter             1         11   -214748340
## 210               82          1st Quarter             1         11           25
## 211               87          1st Quarter             1         12   -214748340
## 212               88          1st Quarter             1         13   -214748340
## 213               91          1st Quarter             1         13   -214748340
## 214               93          1st Quarter             1         13   -214748340
## 215               95          1st Quarter             1         15           13
## 216               99          1st Quarter             1         15   -214748340
## 217              100          1st Quarter             1         15   -214748340
## 218              101          1st Quarter             1         15            9
## 219              106          1st Quarter             1         15           25
## 220              108          1st Quarter             1         15           13
## 221              110          1st Quarter             1         15           26
## 222              125          1st Quarter             1         15           30
## 223              127          1st Quarter             1         15           15
## 224              131          1st Quarter             1         15   -214748340
## 225              137          1st Quarter             1         15   -214748340
## 226              138          1st Quarter             1         17           26
## 227              140          1st Quarter             1         17           39
## 228              142          1st Quarter             1         17           25
## 229              144          1st Quarter             1         17           28
## 230              147          1st Quarter             1         17           13
## 231              158          2nd Quarter             2         17   -214748340
## 232              159          2nd Quarter             2         17   -214748340
## 233              160          2nd Quarter             2         17           31
## 234              162          2nd Quarter             2         17           10
## 235              166          2nd Quarter             2         19           25
## 236              170          2nd Quarter             2         19           27
## 237              172          2nd Quarter             2         19           15
## 238              181          2nd Quarter             2         19   -214748340
## 239              182          2nd Quarter             2         19   -214748340
## 240              186          2nd Quarter             2         19   -214748340
## 241              187          2nd Quarter             2         19            3
## 242              189          2nd Quarter             2         19           27
## 243              191          2nd Quarter             2         19           25
## 244              192          2nd Quarter             2         21           33
## 245              193          2nd Quarter             2         21           12
## 246              195          2nd Quarter             2         23           24
## 247              197          2nd Quarter             2         23           25
## 248              199          2nd Quarter             2         23           25
## 249              208          2nd Quarter             2         25           38
## 250              210          2nd Quarter             2         25           13
## 251              212          2nd Quarter             2         27           16
## 252              214          2nd Quarter             2         27           24
## 253              216          2nd Quarter             2         27           25
## 254              219          2nd Quarter             2         27           15
## 255              221          2nd Quarter             2         27           26
## 256              223          2nd Quarter             2         27            9
## 257              236          2nd Quarter             2         27           12
## 258              238          2nd Quarter             2         27           20
## 259              244          2nd Quarter             2         27           25
## 260              247          2nd Quarter             2         29           25
## 261              248          2nd Quarter             2         29           20
## 262              250          2nd Quarter             2         29           28
## 263              259          2nd Quarter             2         29           24
## 264              261          2nd Quarter             2         29            9
## 265              265          2nd Quarter             2         29           25
## 266              267          2nd Quarter             2         29           18
## 267              269          2nd Quarter             2         29           48
## 268              276          2nd Quarter             2         29           26
## 269              281          2nd Quarter             2         31           26
## 270              287          2nd Quarter             2         32   -214748340
## 271              288          2nd Quarter             2         33   -214748340
## 272              319          3rd Quarter             3         33           31
## 273              326          3rd Quarter             3         33           20
## 274              329          3rd Quarter             3         33           28
## 275              298          3rd Quarter             3         33           11
## 276              300          3rd Quarter             3         33           25
## 277              302          3rd Quarter             3         33           39
## 278              303          3rd Quarter             3         35           26
## 279              306          3rd Quarter             3         35   -214748340
## 280              308          3rd Quarter             3         35   -214748340
## 281              309          3rd Quarter             3         37           25
## 282              310          3rd Quarter             3         37           28
## 283              317          3rd Quarter             3         37   -214748340
## 284              321          3rd Quarter             3         38   -214748340
## 285              324          3rd Quarter             3         40           20
## 286              332          3rd Quarter             3         40           25
## 287              337          3rd Quarter             3         40            4
## 288              342          3rd Quarter             3         40            3
## 289              344          3rd Quarter             3         40           39
## 290              346          3rd Quarter             3         40           26
## 291              348          3rd Quarter             3         40           23
## 292              352          3rd Quarter             3         40           24
## 293              354          3rd Quarter             3         40           23
## 294              363          3rd Quarter             3         40           26
## 295              365          3rd Quarter             3         40           25
## 296              366          3rd Quarter             3         40           34
## 297              368          3rd Quarter             3         40           13
## 298              370          3rd Quarter             3         40           32
## 299              373          3rd Quarter             3         40           32
## 300              375          3rd Quarter             3         40           26
## 301              378          3rd Quarter             3         40           25
## 302              379          3rd Quarter             3         42           34
## 303              382          3rd Quarter             3         44           25
## 304              383          3rd Quarter             3         44           26
## 305              386          3rd Quarter             3         44           25
## 306              391          3rd Quarter             3         44   -214748340
## 307              398          3rd Quarter             3         44   -214748340
## 308              399          3rd Quarter             3         47            2
## 309              403          3rd Quarter             3         47   -214748340
## 310              405          3rd Quarter             3         47   -214748340
## 311              406          3rd Quarter             3         49           11
## 312              408          3rd Quarter             3         49           13
## 313              412          4th Quarter             4         49           12
## 314              414          4th Quarter             4         49           35
## 315              418          4th Quarter             4         49            9
## 316              420          4th Quarter             4         49           18
## 317              422          4th Quarter             4         49           18
## 318              425          4th Quarter             4         50   -214748340
## 319              426          4th Quarter             4         51   -214748340
## 320              431          4th Quarter             4         51           21
## 321              433          4th Quarter             4         51           11
## 322              435          4th Quarter             4         51           20
## 323              437          4th Quarter             4         51           26
## 324              447          4th Quarter             4         51           15
## 325              449          4th Quarter             4         51           25
## 326              451          4th Quarter             4         51            4
## 327              453          4th Quarter             4         51           48
## 328              460          4th Quarter             4         51   -214748340
## 329              464          4th Quarter             4         51   -214748340
## 330              465          4th Quarter             4         53           26
## 331              466          4th Quarter             4         53            5
## 332              480          4th Quarter             4         56           30
## 333              482          4th Quarter             4         56            3
## 334              484          4th Quarter             4         56           26
## 335              492          4th Quarter             4         56           22
## 336              495          4th Quarter             4         56           25
## 337              497          4th Quarter             4         56           26
## 338              500          4th Quarter             4         56           26
## 339              505          4th Quarter             4         56           18
## 340              507          4th Quarter             4         58           24
## 341              513          4th Quarter             4         59   -214748340
## 342              514          4th Quarter             4         59           24
## 343              519          4th Quarter             4         61           23
## 344              520          4th Quarter             4         61           13
## 345              522          4th Quarter             4         63           25
## 346              526          4th Quarter             4         63           19
## 347              530          4th Quarter             4         64   -214748340
## 348              539          4th Quarter             4         65   -214748340
## 349              548          4th Quarter             4         66   -214748340
## 350              549          4th Quarter             4         66   -214748340
## 351              551          4th Quarter             4         66           26
## 352              556          4th Quarter             4         67   -214748340
## 353              557          4th Quarter             4         67   -214748340
## 354                7          1st Quarter             1          2           33
## 355               11          1st Quarter             1          4           20
## 356               12          1st Quarter             1          4           28
## 357               14          1st Quarter             1          4           25
## 358               18          1st Quarter             1          4           23
## 359               20          1st Quarter             1          4           25
## 360               23          1st Quarter             1          4           35
## 361               25          1st Quarter             1          4           29
## 362               27          1st Quarter             1          4           23
## 363               29          1st Quarter             1          4            6
## 364               31          1st Quarter             1          4           26
## 365               33          1st Quarter             1          6           36
## 366               37          1st Quarter             1          6           12
## 367               41          1st Quarter             1          6   -214748340
## 368               46          1st Quarter             1          6   -214748340
## 369               49          1st Quarter             1          6           39
## 370               52          1st Quarter             1          6           22
## 371               56          1st Quarter             1          6           25
## 372               58          1st Quarter             1          6           21
## 373               60          1st Quarter             1          6           23
## 374               61          1st Quarter             1          6           18
## 375               63          1st Quarter             1          6           17
## 376               74          1st Quarter             1          6           38
## 377               76          1st Quarter             1          6           30
## 378               79          1st Quarter             1          6           25
## 379               81          1st Quarter             1          6           13
## 380               84          1st Quarter             1          6            7
## 381               86          1st Quarter             1          6           29
## 382               95          1st Quarter             1          6           44
## 383               97          1st Quarter             1          9           37
## 384               98          1st Quarter             1          9           28
## 385              100          1st Quarter             1          9           24
## 386              102          1st Quarter             1          9           25
## 387              111          1st Quarter             1          9           17
## 388              115          1st Quarter             1          9           22
## 389              117          1st Quarter             1          9           45
## 390              127          1st Quarter             1          9   -214748340
## 391              131          1st Quarter             1         10   -214748340
## 392              136          1st Quarter             1         10   -214748340
## 393              137          1st Quarter             1         10   -214748340
## 394              139          1st Quarter             1         10           12
## 395              141          1st Quarter             1         10           34
## 396              144          1st Quarter             1         10           33
## 397              146          1st Quarter             1         10           25
## 398              156          2nd Quarter             2         10           19
## 399              159          2nd Quarter             2         10           39
## 400              163          2nd Quarter             2         10           25
## 401              168          2nd Quarter             2         10           25
## 402              172          2nd Quarter             2         10           45
## 403              174          2nd Quarter             2         12           32
## 404              175          2nd Quarter             2         12           30
## 405              177          2nd Quarter             2         12           23
## 406              179          2nd Quarter             2         12            2
## 407              181          2nd Quarter             2         12           48
## 408              188          2nd Quarter             2         14           26
## 409              190          2nd Quarter             2         14           22
## 410              194          2nd Quarter             2         15   -214748340
## 411              197          2nd Quarter             2         16   -214748340
## 412              204          2nd Quarter             2         16           19
## 413              208          2nd Quarter             2         16           26
## 414              210          2nd Quarter             2         16           25
## 415              212          2nd Quarter             2         16           25
## 416              213          2nd Quarter             2         18           25
## 417              214          2nd Quarter             2         18           49
## 418              216          2nd Quarter             2         18           21
## 419              218          2nd Quarter             2         18           25
## 420              222          2nd Quarter             2         20           26
## 421              227          2nd Quarter             2         20           35
## 422              231          2nd Quarter             2         20           14
## 423              233          2nd Quarter             2         20           22
## 424              236          2nd Quarter             2         20           24
## 425              238          2nd Quarter             2         20           25
## 426              240          2nd Quarter             2         22           23
## 427              245          2nd Quarter             2         22           29
## 428              248          2nd Quarter             2         22           22
## 429              251          2nd Quarter             2         22           45
## 430              253          2nd Quarter             2         24           26
## 431              257          2nd Quarter             2         24           25
## 432              259          2nd Quarter             2         24            7
## 433              261          2nd Quarter             2         24           13
## 434              264          2nd Quarter             2         24            8
## 435              266          2nd Quarter             2         24           25
## 436              268          2nd Quarter             2         24           25
## 437              277          3rd Quarter             3         24           23
## 438              279          3rd Quarter             3         27           39
## 439              281          3rd Quarter             3         27           26
## 440              284          3rd Quarter             3         30           12
## 441              287          3rd Quarter             3         30   -214748340
## 442              288          3rd Quarter             3         30   -214748340
## 443              289          3rd Quarter             3         30           33
## 444              291          3rd Quarter             3         33           11
## 445              293          3rd Quarter             3         33           27
## 446              295          3rd Quarter             3         33            7
## 447              300          3rd Quarter             3         34   -214748340
## 448              301          3rd Quarter             3         35   -214748340
## 449              302          3rd Quarter             3         35           24
## 450              304          3rd Quarter             3         37           24
## 451              310          3rd Quarter             3         37           24
## 452              312          3rd Quarter             3         39           24
## 453              316          3rd Quarter             3         39            4
## 454              318          3rd Quarter             3         41           16
## 455              319          3rd Quarter             3         41           10
## 456              327          3rd Quarter             3         41   -214748340
## 457              328          3rd Quarter             3         41   -214748340
## 458              330          3rd Quarter             3         41           25
## 459              331          3rd Quarter             3         43           27
## 460              334          3rd Quarter             3         44   -214748340
## 461              335          3rd Quarter             3         44           29
## 462              336          3rd Quarter             3         44           26
## 463              345          3rd Quarter             3         46           26
## 464              349          3rd Quarter             3         46   -214748340
## 465              351          3rd Quarter             3         46           17
## 466              355          3rd Quarter             3         48           19
## 467              357          3rd Quarter             3         48            1
## 468              361          3rd Quarter             3         48            2
## 469              365          3rd Quarter             3         48   -214748340
## 470              371          3rd Quarter             3         48   -214748340
## 471              372          3rd Quarter             3         50           19
## 472              374          3rd Quarter             3         50           19
## 473              376          3rd Quarter             3         50           41
## 474              385          3rd Quarter             3         50           25
## 475              389          3rd Quarter             3         51   -214748340
## 476              390          3rd Quarter             3         52   -214748340
## 477              391          3rd Quarter             3         52           26
## 478              393          3rd Quarter             3         52           43
## 479              397          3rd Quarter             3         52   -214748340
## 480              400          3rd Quarter             3         52   -214748340
## 481              405          3rd Quarter             3         52           26
## 482              407          3rd Quarter             3         54           24
## 483              409          3rd Quarter             3         54           22
## 484              419          4th Quarter             4         54           24
## 485              445          4th Quarter             4         54           19
## 486              422          4th Quarter             4         54           28
## 487              428          4th Quarter             4         57           46
## 488              435          4th Quarter             4         57   -214748340
## 489              436          4th Quarter             4         57   -214748340
## 490              439          4th Quarter             4         57           27
## 491              442          4th Quarter             4         57           23
## 492              451          4th Quarter             4         57           21
## 493              454          4th Quarter             4         57           27
## 494              458          4th Quarter             4         57           25
## 495              460          4th Quarter             4         57           22
## 496              462          4th Quarter             4         57           25
## 497              465          4th Quarter             4         57           23
## 498              469          4th Quarter             4         59           10
## 499              473          4th Quarter             4         59            2
## 500              475          4th Quarter             4         59           26
## 501              478          4th Quarter             4         59           28
## 502              484          4th Quarter             4         59           25
## 503              488          4th Quarter             4         61           10
## 504              490          4th Quarter             4         61           20
## 505              494          4th Quarter             4         61           25
## 506              496          4th Quarter             4         63           25
## 507              501          4th Quarter             4         64   -214748340
## 508              502          4th Quarter             4         65   -214748340
## 509              503          4th Quarter             4         65           23
## 510              508          4th Quarter             4         65           22
## 511              510          4th Quarter             4         65           18
## 512              512          4th Quarter             4         65           26
## 513              514          4th Quarter             4         67           26
## 514              517          4th Quarter             4         67   -214748340
## 515              520          4th Quarter             4         67   -214748340
## 516              522          4th Quarter             4         67           26
## 517              525          4th Quarter             4         67           31
## 518              527          4th Quarter             4         69           34
## 519              528          4th Quarter             4         69           48
## 520              530          4th Quarter             4         69           39
## 521              532          4th Quarter             4         69           26
## 522              539          4th Quarter             4         69   -214748340
## 523              541          4th Quarter             4         71           25
## 524              542          4th Quarter             4         71           25
## 525              544          4th Quarter             4         71           28
## 526              548          4th Quarter             4         72   -214748340
## 527              549          4th Quarter             4         73   -214748340
## 528              550          4th Quarter             4         73           27
## 529              553          4th Quarter             4         73           25
## 530              555          4th Quarter             4         75           26
## 531              559          4th Quarter             4         75   -214748340
## 532              561          4th Quarter             4         75   -214748340
## 533              565          4th Quarter             4         75           38
## 534                7          1st Quarter             1          2           26
## 535               10          1st Quarter             1          2            8
## 536               13          1st Quarter             1          2           37
## 537               15          1st Quarter             1          2           34
## 538               18          1st Quarter             1          4           15
## 539               21          1st Quarter             1          4            4
## 540               23          1st Quarter             1          4           42
## 541               25          1st Quarter             1          6           24
## 542               26          1st Quarter             1          6           27
## 543               28          1st Quarter             1          8           18
## 544               30          1st Quarter             1          8           24
## 545               32          1st Quarter             1         11           38
## 546               38          1st Quarter             1         11            3
## 547               51          1st Quarter             1         11           26
## 548               56          1st Quarter             1         13           21
## 549               59          1st Quarter             1         13           25
## 550               63          1st Quarter             1         13   -214748340
## 551               65          1st Quarter             1         14   -214748340
## 552               68          1st Quarter             1         16           24
## 553               91          1st Quarter             1         16           20
## 554               94          1st Quarter             1         16           25
## 555               96          1st Quarter             1         18           26
## 556               98          1st Quarter             1         18            2
## 557              100          1st Quarter             1         18           25
## 558              104          1st Quarter             1         18           27
## 559              106          1st Quarter             1         18           25
## 560              111          1st Quarter             1         18   -214748340
## 561              112          1st Quarter             1         18           26
## 562              114          1st Quarter             1         18            6
## 563              115          1st Quarter             1         18           44
## 564              120          1st Quarter             1         18           19
## 565              122          1st Quarter             1         20           25
## 566              125          1st Quarter             1         23           10
## 567              132          1st Quarter             1         23           25
## 568              135          1st Quarter             1         24   -214748340
## 569              138          1st Quarter             1         25   -214748340
## 570              141          1st Quarter             1         25           25
## 571              143          1st Quarter             1         27           25
## 572              144          1st Quarter             1         27           28
## 573              158          2nd Quarter             2         27   -214748340
## 574              165          2nd Quarter             2         27           26
## 575              279          2nd Quarter             2         27   -214748340
## 576              280          2nd Quarter             2         27   -214748340
## 577              161          2nd Quarter             2         27            8
## 578              166          2nd Quarter             2         27   -214748340
## 579              167          2nd Quarter             2         27   -214748340
## 580              168          2nd Quarter             2         27   -214748340
## 581              175          2nd Quarter             2         27           25
## 582              177          2nd Quarter             2         29           24
## 583              180          2nd Quarter             2         29   -214748340
## 584              181          2nd Quarter             2         29   -214748340
## 585              183          2nd Quarter             2         31           26
## 586              193          2nd Quarter             2         31           23
## 587              195          2nd Quarter             2         31           11
## 588              200          2nd Quarter             2         31           27
## 589              210          2nd Quarter             2         31           28
## 590              216          2nd Quarter             2         31           29
## 591              219          2nd Quarter             2         31           25
## 592              221          2nd Quarter             2         31           17
## 593              224          2nd Quarter             2         32   -214748340
## 594              229          2nd Quarter             2         33   -214748340
## 595              230          2nd Quarter             2         33           25
## 596              234          2nd Quarter             2         33           47
## 597              241          2nd Quarter             2         33           17
## 598              243          2nd Quarter             2         33           26
## 599              245          2nd Quarter             2         33           26
## 600              246          2nd Quarter             2         35           25
## 601              247          2nd Quarter             2         35           28
## 602              254          2nd Quarter             2         35           25
## 603              264          2nd Quarter             2         35           47
## 604              266          2nd Quarter             2         35           24
## 605              270          2nd Quarter             2         35   -214748340
## 606              272          2nd Quarter             2         36   -214748340
## 607              273          2nd Quarter             2         36           32
## 608              281          2nd Quarter             2         36           21
## 609              283          2nd Quarter             2         36           27
## 610              284          2nd Quarter             2         36           17
## 611              287          2nd Quarter             2         36           42
## 612              289          2nd Quarter             2         39           10
## 613              293          2nd Quarter             2         39   -214748340
## 614              302          2nd Quarter             2         39   -214748340
## 615              307          2nd Quarter             2         39   -214748340
## 616              311          2nd Quarter             2         39   -214748340
## 617              315          2nd Quarter             2         41           24
## 618              317          2nd Quarter             2         41           16
## 619              318          2nd Quarter             2         41           23
## 620              321          2nd Quarter             2         41            6
## 621              340          3rd Quarter             3         41           26
## 622              342          3rd Quarter             3         41           25
## 623              344          3rd Quarter             3         41           27
## 624              347          3rd Quarter             3         41           44
## 625              349          3rd Quarter             3         41           19
## 626              352          3rd Quarter             3         43           26
## 627              353          3rd Quarter             3         43           25
## 628              356          3rd Quarter             3         43           25
## 629              357          3rd Quarter             3         43            5
## 630              359          3rd Quarter             3         43           26
## 631              362          3rd Quarter             3         43   -214748340
## 632              363          3rd Quarter             3         43           26
## 633              365          3rd Quarter             3         45           25
## 634              370          3rd Quarter             3         45   -214748340
## 635              376          3rd Quarter             3         46   -214748340
## 636              377          3rd Quarter             3         46            8
## 637              378          3rd Quarter             3         49           20
## 638              380          3rd Quarter             3         49           10
## 639              383          3rd Quarter             3         49           25
## 640              390          3rd Quarter             3         49           25
## 641              400          3rd Quarter             3         49   -214748340
## 642              403          3rd Quarter             3         49   -214748340
## 643              406          3rd Quarter             3         49           27
## 644              408          3rd Quarter             3         49           35
## 645              413          3rd Quarter             3         49            1
## 646              415          3rd Quarter             3         49           40
## 647              419          3rd Quarter             3         49   -214748340
## 648              423          3rd Quarter             3         49   -214748340
## 649              424          3rd Quarter             3         52           42
## 650              429          3rd Quarter             3         54           24
## 651              436          3rd Quarter             3         54           13
## 652              438          3rd Quarter             3         54            2
## 653              440          3rd Quarter             3         57            3
## 654              442          3rd Quarter             3         57           12
## 655              447          3rd Quarter             3         60           12
## 656              449          3rd Quarter             3         60           38
## 657              454          3rd Quarter             3         60           26
## 658              456          3rd Quarter             3         60           26
## 659              457          3rd Quarter             3         60           20
## 660              461          3rd Quarter             3         60   -214748340
## 661              464          3rd Quarter             3         60   -214748340
## 662              465          3rd Quarter             3         60           31
## 663              475          4th Quarter             4         62           18
## 664              476          4th Quarter             4         62           29
## 665              483          4th Quarter             4         62           14
## 666              486          4th Quarter             4         62           25
## 667              488          4th Quarter             4         64           25
## 668              490          4th Quarter             4         64           25
## 669              492          4th Quarter             4         64           44
## 670              494          4th Quarter             4         64           40
## 671              496          4th Quarter             4         64           27
## 672              498          4th Quarter             4         64           26
## 673              507          4th Quarter             4         64   -214748340
## 674              509          4th Quarter             4         64           26
## 675              510          4th Quarter             4         64           35
## 676              516          4th Quarter             4         64   -214748340
## 677              520          4th Quarter             4         64           25
## 678              522          4th Quarter             4         64            6
## 679              524          4th Quarter             4         64           23
## 680              527          4th Quarter             4         64           28
## 681              534          4th Quarter             4         64           24
## 682              536          4th Quarter             4         64           27
## 683              538          4th Quarter             4         64           40
## 684              540          4th Quarter             4         64           25
## 685              542          4th Quarter             4         64           11
## 686              544          4th Quarter             4         64           37
## 687              558          4th Quarter             4         64           25
## 688              559          4th Quarter             4         64           25
## 689              561          4th Quarter             4         64           18
## 690              563          4th Quarter             4         66           11
## 691              567          4th Quarter             4         66   -214748340
## 692              570          4th Quarter             4         66   -214748340
## 693              576          4th Quarter             4         66   -214748340
## 694              578          4th Quarter             4         67   -214748340
## 695              579          4th Quarter             4         67           27
## 696              582          4th Quarter             4         67            2
## 697              588          4th Quarter             4         67           37
## 698              590          4th Quarter             4         67           21
## 699              591          4th Quarter             4         67           41
## 700              593          4th Quarter             4         69           25
## 701              601          4th Quarter             4         69           26
## 702              603          4th Quarter             4         69            6
## 703              605          4th Quarter             4         69           17
## 704              606          4th Quarter             4         69           25
## 705              608          4th Quarter             4         69           25
## 706              613          4th Quarter             4         69           15
## 707              616          4th Quarter             4         71           24
## 708              617          4th Quarter             4         71           24
## 709              620          4th Quarter             4         71           32
## 710              622          4th Quarter             4         71           42
## 711              624          4th Quarter             4         71            9
## 712                9          1st Quarter             1          3           48
## 713               11          1st Quarter             1          3           32
## 714               15          1st Quarter             1          3           50
## 715               17          1st Quarter             1          3           29
## 716               19          1st Quarter             1          6           48
## 717               21          1st Quarter             1          6           14
## 718               25          1st Quarter             1          6           26
## 719               29          1st Quarter             1          6           48
## 720               34          1st Quarter             1          6           23
## 721               38          1st Quarter             1          6           41
## 722               40          1st Quarter             1          6           36
## 723               42          1st Quarter             1          6           15
## 724               44          1st Quarter             1          6           44
## 725               46          1st Quarter             1          8           12
## 726               50          1st Quarter             1         10           27
## 727               53          1st Quarter             1         10           50
## 728               55          1st Quarter             1         10           27
## 729               57          1st Quarter             1         10           49
## 730               74          1st Quarter             1         12           25
## 731               75          1st Quarter             1         12           15
## 732               77          1st Quarter             1         12           44
## 733               79          1st Quarter             1         12           39
## 734               81          1st Quarter             1         12           48
## 735               85          1st Quarter             1         14           28
## 736               93          1st Quarter             1         16           17
## 737               95          1st Quarter             1         16            2
## 738               97          1st Quarter             1         19           32
## 739               99          1st Quarter             1         19           14
## 740              101          1st Quarter             1         19           39
## 741              111          1st Quarter             1         19           36
## 742              114          1st Quarter             1         19           28
## 743              116          1st Quarter             1         19           27
## 744              118          1st Quarter             1         19           11
## 745              120          1st Quarter             1         19           19
## 746              130          2nd Quarter             2         19            2
## 747              134          2nd Quarter             2         20   -214748340
## 748              135          2nd Quarter             2         21   -214748340
## 749              136          2nd Quarter             2         21            9
## 750              138          2nd Quarter             2         21           22
## 751              140          2nd Quarter             2         21           16
## 752              142          2nd Quarter             2         21           27
## 753              152          2nd Quarter             2         21   -214748340
## 754              154          2nd Quarter             2         22   -214748340
## 755              159          2nd Quarter             2         22            3
## 756              161          2nd Quarter             2         22           25
## 757              163          2nd Quarter             2         22           30
## 758              165          2nd Quarter             2         22           16
## 759              167          2nd Quarter             2         22           23
## 760              169          2nd Quarter             2         22           28
## 761              171          2nd Quarter             2         22           23
## 762              173          2nd Quarter             2         24           30
## 763              180          2nd Quarter             2         25   -214748340
## 764              183          2nd Quarter             2         25   -214748340
## 765              184          2nd Quarter             2         25   -214748340
## 766              189          2nd Quarter             2         25   -214748340
## 767              192          2nd Quarter             2         25   -214748340
## 768              193          2nd Quarter             2         25           18
## 769              199          2nd Quarter             2         25            9
## 770              201          2nd Quarter             2         25           15
## 771              203          2nd Quarter             2         25           28
## 772              207          2nd Quarter             2         25   -214748340
## 773              208          2nd Quarter             2         25   -214748340
## 774              209          2nd Quarter             2         25           17
## 775              212          2nd Quarter             2         25           26
## 776              214          2nd Quarter             2         25            5
## 777              216          2nd Quarter             2         25           20
## 778              219          2nd Quarter             2         25           28
## 779              226          2nd Quarter             2         25           30
## 780              230          2nd Quarter             2         26   -214748340
## 781              233          2nd Quarter             2         27   -214748340
## 782              240          2nd Quarter             2         27   -214748340
## 783              241          2nd Quarter             2         27   -214748340
## 784              244          2nd Quarter             2         27           17
## 785              250          2nd Quarter             2         27   -214748340
## 786              253          2nd Quarter             2         27   -214748340
## 787              254          2nd Quarter             2         27           20
## 788              256          2nd Quarter             2         27           24
## 789              258          2nd Quarter             2         27           25
## 790              263          2nd Quarter             2         27           14
## 791              265          2nd Quarter             2         27           21
## 792              267          2nd Quarter             2         27           17
## 793              269          2nd Quarter             2         27           26
## 794              273          2nd Quarter             2         27   -214748340
## 795              277          2nd Quarter             2         28   -214748340
## 796              278          2nd Quarter             2         28            9
## 797              282          2nd Quarter             2         28           22
## 798              284          2nd Quarter             2         28           21
## 799              286          2nd Quarter             2         28           22
## 800              294          2nd Quarter             2         28   -214748340
## 801              302          2nd Quarter             2         29   -214748340
## 802              303          2nd Quarter             2         30   -214748340
## 803              304          2nd Quarter             2         30           42
## 804              314          3rd Quarter             3         32            9
## 805              318          3rd Quarter             3         32            2
## 806              320          3rd Quarter             3         32           23
## 807              322          3rd Quarter             3         32           39
## 808              324          3rd Quarter             3         34           28
## 809              325          3rd Quarter             3         34           18
## 810              328          3rd Quarter             3         34           15
## 811              334          3rd Quarter             3         36           29
## 812              338          3rd Quarter             3         36   -214748340
## 813              340          3rd Quarter             3         36   -214748340
## 814              341          3rd Quarter             3         36            9
## 815              349          3rd Quarter             3         36           35
## 816              352          3rd Quarter             3         36           44
## 817              357          3rd Quarter             3         36           32
## 818              360          3rd Quarter             3         36           33
## 819              369          3rd Quarter             3         36           26
## 820              375          3rd Quarter             3         36           32
## 821              377          3rd Quarter             3         36           29
## 822              381          3rd Quarter             3         36   -214748340
## 823              384          3rd Quarter             3         36   -214748340
## 824              385          3rd Quarter             3         36            6
## 825              387          3rd Quarter             3         36           29
## 826              392          3rd Quarter             3         36   -214748340
## 827              393          3rd Quarter             3         36   -214748340
## 828              394          3rd Quarter             3         36           26
## 829              406          3rd Quarter             3         38           22
## 830              408          3rd Quarter             3         38           13
## 831              414          3rd Quarter             3         38           24
## 832              419          3rd Quarter             3         38           48
## 833              421          3rd Quarter             3         38           35
## 834              423          3rd Quarter             3         40           25
## 835              425          3rd Quarter             3         40           48
## 836              427          3rd Quarter             3         40           12
## 837              429          3rd Quarter             3         40           12
## 838              431          3rd Quarter             3         40           30
## 839              433          3rd Quarter             3         40           16
## 840              435          3rd Quarter             3         40           15
## 841              437          3rd Quarter             3         40           46
## 842              455          4th Quarter             4         40            9
## 843              459          4th Quarter             4         40            8
## 844              463          4th Quarter             4         40           28
## 845              467          4th Quarter             4         42           13
## 846              469          4th Quarter             4         42           42
## 847              471          4th Quarter             4         42           10
## 848              475          4th Quarter             4         42           20
## 849              477          4th Quarter             4         44           30
## 850              478          4th Quarter             4         44           46
## 851              482          4th Quarter             4         44           28
## 852              484          4th Quarter             4         46           26
## 853              486          4th Quarter             4         46           40
## 854              495          4th Quarter             4         46           49
## 855              498          4th Quarter             4         46           29
## 856              500          4th Quarter             4         46           25
## 857              515          4th Quarter             4         46   -214748340
## 858              516          4th Quarter             4         46   -214748340
## 859              517          4th Quarter             4         46           15
## 860              521          4th Quarter             4         46           20
## 861              525          4th Quarter             4         47   -214748340
## 862              530          4th Quarter             4         48   -214748340
## 863              531          4th Quarter             4         48           20
## 864              535          4th Quarter             4         49   -214748340
## 865              536          4th Quarter             4         50   -214748340
## 866              545          4th Quarter             4         50           28
## 867              547          4th Quarter             4         50            9
## 868              555          4th Quarter             4         50           30
## 869              557          4th Quarter             4         50           13
## 870              561          4th Quarter             4         50   -214748340
## 871              569          4th Quarter             4         50   -214748340
## 872              570          4th Quarter             4         53            7
## 873              571          4th Quarter             4         53           31
## 874              575          4th Quarter             4         54   -214748340
## 875              576          4th Quarter             4         55   -214748340
## 876              577          4th Quarter             4         55           33
## 877              579          4th Quarter             4         55           12
## 878              587          4th Quarter             4         55            4
## 879              589          4th Quarter             4         55           50
## 880              591          4th Quarter             4         55           27
## 881              593          4th Quarter             4         55           23
## 882              597          4th Quarter             4         55   -214748340
## 883              599          4th Quarter             4         56   -214748340
## 884                7          1st Quarter             1          0           25
## 885               11          1st Quarter             1          0   -214748340
## 886               12          1st Quarter             1          0   -214748340
## 887               13          1st Quarter             1          0           36
## 888               15          1st Quarter             1          0           40
## 889               20          1st Quarter             1          0           40
## 890               22          1st Quarter             1          0           20
## 891               24          1st Quarter             1          0           27
## 892               26          1st Quarter             1          2           18
## 893               28          1st Quarter             1          2           12
## 894               30          1st Quarter             1          2           37
## 895               32          1st Quarter             1          2           23
## 896               35          1st Quarter             1          4           24
## 897               36          1st Quarter             1          4           42
## 898               38          1st Quarter             1          4           42
## 899               40          1st Quarter             1          4           39
## 900               43          1st Quarter             1          5   -214748340
## 901               46          1st Quarter             1          6   -214748340
## 902               47          1st Quarter             1          6           27
## 903               49          1st Quarter             1          6           32
## 904               51          1st Quarter             1          6           18
## 905               53          1st Quarter             1          6           46
## 906               55          1st Quarter             1          6           11
## 907               57          1st Quarter             1          6           27
## 908               59          1st Quarter             1          6           24
## 909               63          1st Quarter             1          8           24
## 910               64          1st Quarter             1          8           35
## 911               66          1st Quarter             1         10           32
## 912               67          1st Quarter             1         10            2
## 913               69          1st Quarter             1         12           25
## 914               71          1st Quarter             1         12           28
## 915               72          1st Quarter             1         14           25
## 916               73          1st Quarter             1         14           30
## 917               75          1st Quarter             1         14           26
## 918               89          1st Quarter             1         14   -214748340
## 919               90          1st Quarter             1         16           23
## 920               91          1st Quarter             1         16           17
## 921               93          1st Quarter             1         19           46
## 922               98          1st Quarter             1         19           14
## 923              100          1st Quarter             1         21           21
## 924              105          1st Quarter             1         23           12
## 925              106          1st Quarter             1         23           26
## 926              108          1st Quarter             1         23           10
## 927              112          1st Quarter             1         25           22
## 928              114          1st Quarter             1         25           24
## 929              115          1st Quarter             1         27           19
## 930              120          2nd Quarter             2         27           12
## 931              122          2nd Quarter             2         30           48
## 932              124          2nd Quarter             2         30           23
## 933              129          2nd Quarter             2         30           47
## 934              131          2nd Quarter             2         30           27
## 935              132          2nd Quarter             2         32           30
## 936              137          2nd Quarter             2         33   -214748340
## 937              138          2nd Quarter             2         33           33
## 938              140          2nd Quarter             2         33           18
## 939              142          2nd Quarter             2         33           24
## 940              238          2nd Quarter             2         33           22
## 941              146          2nd Quarter             2         33   -214748340
## 942              154          2nd Quarter             2         34   -214748340
## 943              155          2nd Quarter             2         34           26
## 944              157          2nd Quarter             2         34           31
## 945              159          2nd Quarter             2         34           25
## 946              163          2nd Quarter             2         34           23
## 947              165          2nd Quarter             2         36           16
## 948              166          2nd Quarter             2         36           18
## 949              168          2nd Quarter             2         39           24
## 950              177          2nd Quarter             2         39   -214748340
## 951              178          2nd Quarter             2         39   -214748340
## 952              179          2nd Quarter             2         39           28
## 953              182          2nd Quarter             2         39           23
## 954              185          2nd Quarter             2         39           12
## 955              187          2nd Quarter             2         39           23
## 956              199          2nd Quarter             2         39   -214748340
## 957              201          2nd Quarter             2         40   -214748340
## 958              202          2nd Quarter             2         40           42
## 959              207          2nd Quarter             2         40           30
## 960              209          2nd Quarter             2         43            7
## 961              211          2nd Quarter             2         43           17
## 962              213          2nd Quarter             2         46            9
## 963              219          2nd Quarter             2         46           26
## 964              223          2nd Quarter             2         46   -214748340
## 965              227          2nd Quarter             2         46           23
## 966              229          2nd Quarter             2         46           27
## 967              231          2nd Quarter             2         46           24
## 968              232          2nd Quarter             2         46           24
## 969              235          2nd Quarter             2         46           12
## 970              237          2nd Quarter             2         46           34
## 971              241          2nd Quarter             2         46           28
## 972              245          2nd Quarter             2         46           23
## 973              252          2nd Quarter             2         46           26
## 974              254          2nd Quarter             2         49           42
## 975              260          3rd Quarter             3         52           45
## 976              262          3rd Quarter             3         52           26
## 977              264          3rd Quarter             3         52           14
## 978              266          3rd Quarter             3         52           18
## 979              268          3rd Quarter             3         54           19
## 980              274          3rd Quarter             3         56           28
## 981              276          3rd Quarter             3         56           10
## 982              278          3rd Quarter             3         59            5
## 983              282          3rd Quarter             3         59           44
## 984              284          3rd Quarter             3         59           22
## 985              286          3rd Quarter             3         59           41
## 986              289          3rd Quarter             3         59           21
## 987              293          3rd Quarter             3         59           20
## 988              295          3rd Quarter             3         61           35
## 989              305          3rd Quarter             3         61           22
## 990              309          3rd Quarter             3         61            2
## 991              313          3rd Quarter             3         61           18
## 992              315          3rd Quarter             3         61           17
## 993              316          3rd Quarter             3         61           36
## 994              320          3rd Quarter             3         61   -214748340
## 995              323          3rd Quarter             3         61   -214748340
## 996              326          3rd Quarter             3         64            4
## 997              331          3rd Quarter             3         65   -214748340
## 998              332          3rd Quarter             3         66   -214748340
## 999              333          3rd Quarter             3         66           27
## 1000             340          3rd Quarter             3         66           25
## 1001             343          3rd Quarter             3         68           24
## 1002             345          3rd Quarter             3         68           29
## 1003             349          3rd Quarter             3         68           25
## 1004             351          3rd Quarter             3         70           35
## 1005             353          3rd Quarter             3         70           21
## 1006             357          3rd Quarter             3         71   -214748340
## 1007             358          3rd Quarter             3         72   -214748340
## 1008             359          3rd Quarter             3         72           34
## 1009             361          3rd Quarter             3         72           10
## 1010             363          3rd Quarter             3         72           40
## 1011             365          3rd Quarter             3         72           23
## 1012             367          3rd Quarter             3         72           24
## 1013             369          3rd Quarter             3         72           32
## 1014             371          3rd Quarter             3         72           34
## 1015             378          3rd Quarter             3         72   -214748340
## 1016             382          3rd Quarter             3         72   -214748340
## 1017             389          4th Quarter             4         72           28
## 1018             391          4th Quarter             4         72           28
## 1019             396          4th Quarter             4         72   -214748340
## 1020             399          4th Quarter             4         72   -214748340
## 1021             400          4th Quarter             4         74           23
## 1022             402          4th Quarter             4         74           10
## 1023             404          4th Quarter             4         74           19
## 1024             407          4th Quarter             4         74           20
## 1025             409          4th Quarter             4         74           27
## 1026             413          4th Quarter             4         75   -214748340
## 1027             416          4th Quarter             4         76   -214748340
## 1028             417          4th Quarter             4         76           43
## 1029             419          4th Quarter             4         76            8
## 1030             421          4th Quarter             4         78           23
## 1031             423          4th Quarter             4         78           22
## 1032             427          4th Quarter             4         78           27
## 1033             428          4th Quarter             4         80           44
## 1034             430          4th Quarter             4         80           28
## 1035             441          4th Quarter             4         82           24
## 1036             445          4th Quarter             4         82   -214748340
## 1037             448          4th Quarter             4         82   -214748340
## 1038             450          4th Quarter             4         82           25
## 1039             452          4th Quarter             4         82           32
## 1040             456          4th Quarter             4         82           27
## 1041             458          4th Quarter             4         82           19
## 1042             460          4th Quarter             4         85           42
## 1043             463          4th Quarter             4         85           27
## 1044             465          4th Quarter             4         85           40
## 1045             472          4th Quarter             4         87           24
## 1046             473          4th Quarter             4         87           26
## 1047             475          4th Quarter             4         87            5
## 1048             477          4th Quarter             4         87           43
## 1049             480          4th Quarter             4         89           27
## 1050             482          4th Quarter             4         89           25
## 1051             484          4th Quarter             4         89            3
## 1052             486          4th Quarter             4         91           25
## 1053             487          4th Quarter             4         91           22
## 1054             488          4th Quarter             4         91           39
## 1055             490          4th Quarter             4         91           33
## 1056             492          4th Quarter             4         91           25
## 1057             494          4th Quarter             4         94            3
## 1058             496          4th Quarter             4         94           23
## 1059             498          4th Quarter             4         94            2
## 1060             504          4th Quarter             4         94           24
## 1061             506          4th Quarter             4         94           26
## 1062             509          4th Quarter             4         94           25
## 1063             511          4th Quarter             4         97            6
## 1064               7          1st Quarter             1          0           12
## 1065               9          1st Quarter             1          0           35
## 1066              11          1st Quarter             1          0           37
## 1067              15          1st Quarter             1          0   -214748340
## 1068              16          1st Quarter             1          0   -214748340
## 1069              17          1st Quarter             1          0           45
## 1070              19          1st Quarter             1          0           24
## 1071              22          1st Quarter             1          0   -214748340
## 1072              23          1st Quarter             1          0           26
## 1073              27          1st Quarter             1          2           44
## 1074              31          1st Quarter             1          2           39
## 1075              33          1st Quarter             1          4           24
## 1076              34          1st Quarter             1          4           13
## 1077              36          1st Quarter             1          6           26
## 1078              38          1st Quarter             1          6           35
## 1079              41          1st Quarter             1          7   -214748340
## 1080              42          1st Quarter             1          8   -214748340
## 1081              43          1st Quarter             1          8           24
## 1082              45          1st Quarter             1         10           26
## 1083              47          1st Quarter             1         10           25
## 1084              54          1st Quarter             1         10   -214748340
## 1085              57          1st Quarter             1         10           28
## 1086              60          1st Quarter             1         10   -214748340
## 1087              62          1st Quarter             1         10   -214748340
## 1088              65          1st Quarter             1         10            8
## 1089              67          1st Quarter             1         12           25
## 1090              69          1st Quarter             1         12           16
## 1091              71          1st Quarter             1         15            7
## 1092              73          1st Quarter             1         15            1
## 1093              75          1st Quarter             1         15           40
## 1094              77          1st Quarter             1         15           24
## 1095              80          1st Quarter             1         15           44
## 1096              94          1st Quarter             1         15   -214748340
## 1097              96          1st Quarter             1         15   -214748340
## 1098             100          1st Quarter             1         15   -214748340
## 1099             104          1st Quarter             1         16   -214748340
## 1100             106          1st Quarter             1         16           26
## 1101             109          1st Quarter             1         16           26
## 1102             111          1st Quarter             1         16           35
## 1103             115          1st Quarter             1         16   -214748340
## 1104             116          1st Quarter             1         16   -214748340
## 1105             117          1st Quarter             1         16           25
## 1106             119          1st Quarter             1         16           27
## 1107             126          1st Quarter             1         16           36
## 1108             128          1st Quarter             1         16           24
## 1109             130          1st Quarter             1         16           43
## 1110             132          1st Quarter             1         16           22
## 1111             134          1st Quarter             1         16           24
## 1112             136          1st Quarter             1         18           26
## 1113             138          1st Quarter             1         18           27
## 1114             140          1st Quarter             1         18           20
## 1115             150          2nd Quarter             2         18           24
## 1116             152          2nd Quarter             2         18            4
## 1117             158          2nd Quarter             2         18           25
## 1118             161          2nd Quarter             2         18           25
## 1119             163          2nd Quarter             2         20           45
## 1120             165          2nd Quarter             2         20           23
## 1121             167          2nd Quarter             2         20           26
## 1122             170          2nd Quarter             2         20           12
## 1123             172          2nd Quarter             2         20           44
## 1124             179          2nd Quarter             2         20           30
## 1125             181          2nd Quarter             2         20           42
## 1126             183          2nd Quarter             2         20           23
## 1127             187          2nd Quarter             2         20           29
## 1128             197          2nd Quarter             2         22           25
## 1129             209          2nd Quarter             2         22           30
## 1130             212          2nd Quarter             2         22           25
## 1131             215          2nd Quarter             2         24           12
## 1132             218          2nd Quarter             2         27            4
## 1133             222          2nd Quarter             2         27   -214748340
## 1134             223          2nd Quarter             2         27   -214748340
## 1135             225          2nd Quarter             2         29           32
## 1136             226          2nd Quarter             2         29           25
## 1137             228          2nd Quarter             2         31           25
## 1138             233          2nd Quarter             2         31           47
## 1139             235          2nd Quarter             2         31            6
## 1140             238          2nd Quarter             2         32   -214748340
## 1141             241          2nd Quarter             2         33   -214748340
## 1142             242          2nd Quarter             2         33   -214748340
## 1143             244          2nd Quarter             2         33           12
## 1144             246          2nd Quarter             2         33           26
## 1145             250          2nd Quarter             2         33            6
## 1146             259          2nd Quarter             2         33           12
## 1147             264          2nd Quarter             2         33           31
## 1148             270          2nd Quarter             2         33           43
## 1149             275          2nd Quarter             2         33           42
## 1150             277          2nd Quarter             2         33           13
## 1151             283          2nd Quarter             2         33   -214748340
## 1152             286          2nd Quarter             2         33           34
## 1153             289          2nd Quarter             2         33           39
## 1154             292          2nd Quarter             2         35           24
## 1155             296          2nd Quarter             2         35   -214748340
## 1156             300          2nd Quarter             2         35            2
## 1157             310          3rd Quarter             3         35           24
## 1158             313          3rd Quarter             3         35           49
## 1159             322          3rd Quarter             3         36   -214748340
## 1160             323          3rd Quarter             3         37   -214748340
## 1161             326          3rd Quarter             3         37           26
## 1162             332          3rd Quarter             3         37           48
## 1163             334          3rd Quarter             3         37           42
## 1164             336          3rd Quarter             3         37           25
## 1165             339          3rd Quarter             3         37            6
## 1166             348          3rd Quarter             3         37            4
## 1167             352          3rd Quarter             3         37   -214748340
## 1168             356          3rd Quarter             3         37   -214748340
## 1169             357          3rd Quarter             3         39           33
## 1170             361          3rd Quarter             3         39           46
## 1171             363          3rd Quarter             3         39           24
## 1172             365          3rd Quarter             3         39           24
## 1173             367          3rd Quarter             3         39           13
## 1174             379          3rd Quarter             3         39           27
## 1175             383          3rd Quarter             3         39            6
## 1176             385          3rd Quarter             3         41           12
## 1177             388          3rd Quarter             3         43           27
## 1178             393          3rd Quarter             3         43           37
## 1179             396          3rd Quarter             3         43           25
## 1180             402          3rd Quarter             3         43           27
## 1181             404          3rd Quarter             3         43           36
## 1182             408          3rd Quarter             3         43           26
## 1183             414          3rd Quarter             3         43           22
## 1184             416          3rd Quarter             3         45           25
## 1185             417          3rd Quarter             3         45           31
## 1186             424          3rd Quarter             3         45           20
## 1187             426          3rd Quarter             3         45           17
## 1188             427          3rd Quarter             3         45           22
## 1189             433          3rd Quarter             3         45           27
## 1190             435          3rd Quarter             3         45           24
## 1191             437          3rd Quarter             3         45           25
## 1192             439          3rd Quarter             3         45           28
## 1193             443          3rd Quarter             3         45           25
## 1194             444          3rd Quarter             3         47           30
## 1195             453          3rd Quarter             3         48   -214748340
## 1196             454          3rd Quarter             3         49   -214748340
## 1197             457          3rd Quarter             3         49           13
## 1198             465          4th Quarter             4         51           13
## 1199             466          4th Quarter             4         51           25
## 1200             470          4th Quarter             4         51           14
## 1201             473          4th Quarter             4         51           41
## 1202             476          4th Quarter             4         51            2
## 1203             479          4th Quarter             4         52   -214748340
## 1204             480          4th Quarter             4         54           25
## 1205             481          4th Quarter             4         54           25
## 1206             491          4th Quarter             4         54           26
## 1207             498          4th Quarter             4         54   -214748340
## 1208             502          4th Quarter             4         54           31
## 1209             504          4th Quarter             4         56           26
## 1210             505          4th Quarter             4         56           20
## 1211             507          4th Quarter             4         56           26
## 1212             516          4th Quarter             4         56           45
## 1213             518          4th Quarter             4         56           25
## 1214             525          4th Quarter             4         56           24
## 1215             533          4th Quarter             4         56   -214748340
## 1216             534          4th Quarter             4         56           14
## 1217             538          4th Quarter             4         56           25
## 1218             545          4th Quarter             4         56           16
## 1219             554          4th Quarter             4         56           18
## 1220             561          4th Quarter             4         56           24
## 1221             563          4th Quarter             4         56           24
## 1222             567          4th Quarter             4         56           45
## 1223             569          4th Quarter             4         58           26
## 1224             571          4th Quarter             4         58            6
## 1225             573          4th Quarter             4         61           12
## 1226             576          4th Quarter             4         61            2
## 1227             578          4th Quarter             4         61           15
## 1228             582          4th Quarter             4         62   -214748340
## 1229             583          4th Quarter             4         63   -214748340
## 1230             585          4th Quarter             4         63           39
## 1231             587          4th Quarter             4         63           26
## 1232             589          4th Quarter             4         63           27
## 1233             592          4th Quarter             4         63           28
## 1234             594          4th Quarter             4         65           25
## 1235             597          4th Quarter             4         65   -214748340
## 1236             600          4th Quarter             4         65   -214748340
## 1237             605          4th Quarter             4         65           25
## 1238             609          4th Quarter             4         65           34
## 1239             613          4th Quarter             4         65           37
## 1240               7          1st Quarter             1          0           44
## 1241               9          1st Quarter             1          0           33
## 1242              11          1st Quarter             1          0           15
## 1243              12          1st Quarter             1          0           15
## 1244              14          1st Quarter             1          0           24
## 1245              16          1st Quarter             1          0           25
## 1246              17          1st Quarter             1          2           24
## 1247              20          1st Quarter             1          2           32
## 1248              22          1st Quarter             1          4           25
## 1249              23          1st Quarter             1          4           25
## 1250              26          1st Quarter             1          7           39
## 1251              27          1st Quarter             1          7           26
## 1252              31          1st Quarter             1          7            2
## 1253              35          1st Quarter             1          7           22
## 1254              38          1st Quarter             1          7            9
## 1255              40          1st Quarter             1          7           37
## 1256              42          1st Quarter             1          7           32
## 1257              45          1st Quarter             1          7           27
## 1258              47          1st Quarter             1          9           25
## 1259              50          1st Quarter             1          9           38
## 1260              51          1st Quarter             1          9           28
## 1261              53          1st Quarter             1         11           25
## 1262              54          1st Quarter             1         11           25
## 1263              63          1st Quarter             1         11           34
## 1264              67          1st Quarter             1         12   -214748340
## 1265              68          1st Quarter             1         13   -214748340
## 1266              69          1st Quarter             1         13           36
## 1267              70          1st Quarter             1         13            9
## 1268              73          1st Quarter             1         13           26
## 1269              77          1st Quarter             1         13           26
## 1270              89          1st Quarter             1         13           40
## 1271              91          1st Quarter             1         13           36
## 1272              93          1st Quarter             1         13           44
## 1273              97          1st Quarter             1         15           39
## 1274             110          1st Quarter             1         15           46
## 1275             112          1st Quarter             1         17           24
## 1276             123          2nd Quarter             2         17            7
## 1277             125          2nd Quarter             2         17           14
## 1278             127          2nd Quarter             2         17           28
## 1279             129          2nd Quarter             2         17           43
## 1280             135          2nd Quarter             2         17           27
## 1281             139          2nd Quarter             2         20            5
## 1282             141          2nd Quarter             2         20           24
## 1283             143          2nd Quarter             2         23           21
## 1284             156          2nd Quarter             2         23           24
## 1285             158          2nd Quarter             2         26           21
## 1286             159          2nd Quarter             2         26            8
## 1287             161          2nd Quarter             2         26           26
## 1288             166          2nd Quarter             2         26   -214748340
## 1289             170          2nd Quarter             2         26   -214748340
## 1290             172          2nd Quarter             2         26           24
## 1291             177          2nd Quarter             2         26   -214748340
## 1292             178          2nd Quarter             2         26   -214748340
## 1293             179          2nd Quarter             2         26           39
## 1294             189          2nd Quarter             2         28           27
## 1295             190          2nd Quarter             2         28           25
## 1296             192          2nd Quarter             2         28           28
## 1297             200          2nd Quarter             2         29   -214748340
## 1298             201          2nd Quarter             2         30   -214748340
## 1299             206          2nd Quarter             2         30           23
## 1300             208          2nd Quarter             2         30           16
## 1301             212          2nd Quarter             2         30           26
## 1302             219          2nd Quarter             2         33           47
## 1303             221          2nd Quarter             2         33           24
## 1304             223          2nd Quarter             2         33           33
## 1305             226          2nd Quarter             2         33            6
## 1306             228          2nd Quarter             2         35           20
## 1307             230          2nd Quarter             2         35           24
## 1308             238          2nd Quarter             2         35   -214748340
## 1309             239          2nd Quarter             2         35   -214748340
## 1310             240          2nd Quarter             2         35           26
## 1311             242          2nd Quarter             2         37           24
## 1312             246          2nd Quarter             2         37   -214748340
## 1313             247          2nd Quarter             2         37   -214748340
## 1314             248          2nd Quarter             2         37           27
## 1315             256          3rd Quarter             3         37           23
## 1316             259          3rd Quarter             3         40           33
## 1317             263          3rd Quarter             3         40   -214748340
## 1318             264          3rd Quarter             3         40   -214748340
## 1319             265          3rd Quarter             3         40           28
## 1320             267          3rd Quarter             3         42           25
## 1321             268          3rd Quarter             3         42           24
## 1322             272          3rd Quarter             3         42   -214748340
## 1323             274          3rd Quarter             3         43   -214748340
## 1324             275          3rd Quarter             3         44   -214748340
## 1325             276          3rd Quarter             3         44           24
## 1326             279          3rd Quarter             3         46           26
## 1327             283          3rd Quarter             3         47   -214748340
## 1328             286          3rd Quarter             3         47   -214748340
## 1329             287          3rd Quarter             3         47   -214748340
## 1330             291          3rd Quarter             3         47           22
## 1331             295          3rd Quarter             3         47            9
## 1332             297          3rd Quarter             3         47           27
## 1333             323          3rd Quarter             3         47           27
## 1334             304          3rd Quarter             3         47   -214748340
## 1335             310          3rd Quarter             3         48   -214748340
## 1336             311          3rd Quarter             3         48           42
## 1337             316          3rd Quarter             3         49   -214748340
## 1338             319          3rd Quarter             3         50   -214748340
## 1339             326          3rd Quarter             3         50           16
## 1340             328          3rd Quarter             3         52           23
## 1341             331          3rd Quarter             3         52           37
## 1342             334          3rd Quarter             3         52           35
## 1343             336          3rd Quarter             3         52           25
## 1344             338          3rd Quarter             3         52            9
## 1345             342          3rd Quarter             3         52   -214748340
## 1346             347          3rd Quarter             3         52   -214748340
## 1347             348          3rd Quarter             3         52           41
## 1348             350          3rd Quarter             3         52           28
## 1349             354          3rd Quarter             3         53   -214748340
## 1350             355          3rd Quarter             3         54   -214748340
## 1351             356          3rd Quarter             3         54           13
## 1352             358          3rd Quarter             3         56           27
## 1353             360          3rd Quarter             3         56           48
## 1354             363          3rd Quarter             3         56           48
## 1355             369          3rd Quarter             3         56            8
## 1356             371          3rd Quarter             3         58           25
## 1357             374          3rd Quarter             3         58   -214748340
## 1358             377          3rd Quarter             3         58   -214748340
## 1359             380          3rd Quarter             3         58   -214748340
## 1360             382          3rd Quarter             3         59   -214748340
## 1361             383          3rd Quarter             3         59            5
## 1362             389          4th Quarter             4         59           14
## 1363             391          4th Quarter             4         59           25
## 1364             393          4th Quarter             4         59           25
## 1365             395          4th Quarter             4         59           46
## 1366             397          4th Quarter             4         61           11
## 1367             400          4th Quarter             4         61   -214748340
## 1368             403          4th Quarter             4         61   -214748340
## 1369             411          4th Quarter             4         61           47
## 1370             413          4th Quarter             4         61           23
## 1371             415          4th Quarter             4         64           47
## 1372             419          4th Quarter             4         64           25
## 1373             426          4th Quarter             4         64           41
## 1374             428          4th Quarter             4         64           11
## 1375             430          4th Quarter             4         66           22
## 1376             432          4th Quarter             4         66            6
## 1377             441          4th Quarter             4         66           26
## 1378             451          4th Quarter             4         66           27
## 1379             453          4th Quarter             4         66           24
## 1380             456          4th Quarter             4         66   -214748340
## 1381             457          4th Quarter             4         68           26
## 1382             459          4th Quarter             4         68           14
## 1383             463          4th Quarter             4         69   -214748340
## 1384             464          4th Quarter             4         69   -214748340
## 1385             466          4th Quarter             4         69            6
## 1386             468          4th Quarter             4         71           24
## 1387             470          4th Quarter             4         71           13
## 1388             472          4th Quarter             4         71           25
## 1389             477          4th Quarter             4         72   -214748340
## 1390             478          4th Quarter             4         73   -214748340
## 1391             481          4th Quarter             4         73           23
## 1392             485          4th Quarter             4         76           48
## 1393             487          4th Quarter             4         76            2
## 1394             491          4th Quarter             4         77   -214748340
## 1395             492          4th Quarter             4         78   -214748340
## 1396             501          4th Quarter             4         78   -214748340
## 1397             503          4th Quarter             4         79   -214748340
## 1398             504          4th Quarter             4         80   -214748340
## 1399             505          4th Quarter             4         80           29
## 1400             506          4th Quarter             4         80           27
## 1401             510          4th Quarter             4         80   -214748340
## 1402             511          4th Quarter             4         80   -214748340
## 1403             513          4th Quarter             4         82           13
## 1404             514          4th Quarter             4         82            3
## 1405             516          4th Quarter             4         82           24
## 1406             518          4th Quarter             4         84           25
## 1407             520          4th Quarter             4         84           31
## 1408             528          4th Quarter             4         84   -214748340
## 1409             530          4th Quarter             4         84   -214748340
## 1410             531          4th Quarter             4         84   -214748340
## 1411             538          4th Quarter             4         85   -214748340
## 1412             539          4th Quarter             4         86   -214748340
## 1413             540          4th Quarter             4         86           25
## 1414               7          1st Quarter             1          0           26
## 1415               8          1st Quarter             1          0           43
## 1416              10          1st Quarter             1          0           26
## 1417              12          1st Quarter             1          0           25
## 1418              17          1st Quarter             1          0           10
## 1419              21          1st Quarter             1          1   -214748340
## 1420              22          1st Quarter             1          2   -214748340
## 1421              26          1st Quarter             1          2           20
## 1422              28          1st Quarter             1          2           21
## 1423              30          1st Quarter             1          5           37
## 1424              35          1st Quarter             1          5           40
## 1425              37          1st Quarter             1          8           15
## 1426              41          1st Quarter             1         10           26
## 1427              45          1st Quarter             1         10           24
## 1428              53          1st Quarter             1         13           11
## 1429              55          1st Quarter             1         13           13
## 1430              57          1st Quarter             1         15           27
## 1431              60          1st Quarter             1         15           31
## 1432              65          1st Quarter             1         15           32
## 1433              67          1st Quarter             1         17           23
## 1434              76          1st Quarter             1         17           36
## 1435              80          1st Quarter             1         17           13
## 1436              85          1st Quarter             1         17           28
## 1437              89          1st Quarter             1         17           39
## 1438              91          1st Quarter             1         17           13
## 1439             100          1st Quarter             1         17           42
## 1440             102          1st Quarter             1         17           23
## 1441             104          1st Quarter             1         17           13
## 1442             106          1st Quarter             1         17            9
## 1443             108          1st Quarter             1         17           24
## 1444             113          1st Quarter             1         17   -214748340
## 1445             114          1st Quarter             1         17           37
## 1446             116          1st Quarter             1         17           25
## 1447             117          1st Quarter             1         19           23
## 1448             119          1st Quarter             1         19           26
## 1449             121          1st Quarter             1         19           41
## 1450             128          1st Quarter             1         19   -214748340
## 1451             129          1st Quarter             1         21   -214748340
## 1452             133          1st Quarter             1         21   -214748340
## 1453             136          1st Quarter             1         21   -214748340
## 1454             139          1st Quarter             1         21   -214748340
## 1455             141          1st Quarter             1         23           26
## 1456             143          1st Quarter             1         23           14
## 1457             156          2nd Quarter             2         23           24
## 1458             161          2nd Quarter             2         23           24
## 1459             165          2nd Quarter             2         23           23
## 1460             167          2nd Quarter             2         26           11
## 1461             169          2nd Quarter             2         26           28
## 1462             177          2nd Quarter             2         26           47
## 1463             181          2nd Quarter             2         26           23
## 1464             183          2nd Quarter             2         26           27
## 1465             186          2nd Quarter             2         26           24
## 1466             197          2nd Quarter             2         26   -214748340
## 1467             200          2nd Quarter             2         27   -214748340
## 1468             201          2nd Quarter             2         28   -214748340
## 1469             202          2nd Quarter             2         28           30
## 1470             204          2nd Quarter             2         28           22
## 1471             208          2nd Quarter             2         28           22
## 1472             210          2nd Quarter             2         28           26
## 1473             213          2nd Quarter             2         31            2
## 1474             220          2nd Quarter             2         31   -214748340
## 1475             221          2nd Quarter             2         31   -214748340
## 1476             222          2nd Quarter             2         31   -214748340
## 1477             223          2nd Quarter             2         33           15
## 1478             224          2nd Quarter             2         33           15
## 1479             226          2nd Quarter             2         33           24
## 1480             234          2nd Quarter             2         33           33
## 1481             236          2nd Quarter             2         33           36
## 1482             238          2nd Quarter             2         33           27
## 1483             239          2nd Quarter             2         33            3
## 1484             241          2nd Quarter             2         33            4
## 1485             243          2nd Quarter             2         33           29
## 1486             249          2nd Quarter             2         34   -214748340
## 1487             254          2nd Quarter             2         35   -214748340
## 1488             255          2nd Quarter             2         35           22
## 1489             260          2nd Quarter             2         35           10
## 1490             262          2nd Quarter             2         37           26
## 1491             264          2nd Quarter             2         37           15
## 1492             266          2nd Quarter             2         37            8
## 1493             273          2nd Quarter             2         37   -214748340
## 1494             275          2nd Quarter             2         37   -214748340
## 1495             276          2nd Quarter             2         39           26
## 1496             278          2nd Quarter             2         39            9
## 1497             280          2nd Quarter             2         39           24
## 1498             287          2nd Quarter             2         41           18
## 1499             288          2nd Quarter             2         41           27
## 1500             292          2nd Quarter             2         41   -214748340
## 1501             296          2nd Quarter             2         41           35
## 1502             298          2nd Quarter             2         41           26
## 1503             302          2nd Quarter             2         41   -214748340
## 1504             303          2nd Quarter             2         41   -214748340
## 1505             304          2nd Quarter             2         41           16
## 1506             306          2nd Quarter             2         41           31
## 1507             308          2nd Quarter             2         43           24
## 1508             313          2nd Quarter             2         43           29
## 1509             323          3rd Quarter             3         43           27
## 1510             325          3rd Quarter             3         43           26
## 1511             327          3rd Quarter             3         45           26
## 1512             329          3rd Quarter             3         45           17
## 1513             331          3rd Quarter             3         47           26
## 1514             332          3rd Quarter             3         47           36
## 1515             334          3rd Quarter             3         47            9
## 1516             336          3rd Quarter             3         47           35
## 1517             338          3rd Quarter             3         47           26
## 1518             343          3rd Quarter             3         47           14
## 1519             347          3rd Quarter             3         47           27
## 1520             349          3rd Quarter             3         47           41
## 1521             351          3rd Quarter             3         47           26
## 1522             358          3rd Quarter             3         47           45
## 1523             362          3rd Quarter             3         47           26
## 1524             365          3rd Quarter             3         50            2
## 1525             367          3rd Quarter             3         50           10
## 1526             376          3rd Quarter             3         51   -214748340
## 1527             377          3rd Quarter             3         52   -214748340
## 1528             378          3rd Quarter             3         52           26
## 1529             382          3rd Quarter             3         52   -214748340
## 1530             383          3rd Quarter             3         52   -214748340
## 1531             384          3rd Quarter             3         54           24
## 1532             388          3rd Quarter             3         54   -214748340
## 1533             391          3rd Quarter             3         54   -214748340
## 1534             392          3rd Quarter             3         57           16
## 1535             394          3rd Quarter             3         57           25
## 1536             395          3rd Quarter             3         57           39
## 1537             397          3rd Quarter             3         57           40
## 1538             399          3rd Quarter             3         59           26
## 1539             402          3rd Quarter             3         59   -214748340
## 1540             404          3rd Quarter             3         59           24
## 1541             406          3rd Quarter             3         62            7
## 1542             415          3rd Quarter             3         62           18
## 1543             417          3rd Quarter             3         62           23
## 1544             419          3rd Quarter             3         62           22
## 1545             421          3rd Quarter             3         62           30
## 1546             423          3rd Quarter             3         62           29
## 1547             425          3rd Quarter             3         62           27
## 1548             427          3rd Quarter             3         62           36
## 1549             436          3rd Quarter             3         62           18
## 1550             441          3rd Quarter             3         62           17
## 1551             445          3rd Quarter             3         62            8
## 1552             449          4th Quarter             4         62           26
## 1553             451          4th Quarter             4         62           40
## 1554             455          4th Quarter             4         62   -214748340
## 1555             456          4th Quarter             4         62   -214748340
## 1556             457          4th Quarter             4         64           21
## 1557             459          4th Quarter             4         64           24
## 1558             461          4th Quarter             4         64           24
## 1559             463          4th Quarter             4         64           40
## 1560             465          4th Quarter             4         64           21
## 1561             469          4th Quarter             4         66           24
## 1562             482          4th Quarter             4         66           14
## 1563             484          4th Quarter             4         69           20
## 1564             486          4th Quarter             4         69           28
## 1565             491          4th Quarter             4         69           22
## 1566             493          4th Quarter             4         69           24
## 1567             494          4th Quarter             4         72           47
## 1568             502          4th Quarter             4         72           25
## 1569             504          4th Quarter             4         75            6
## 1570             506          4th Quarter             4         75           18
## 1571             509          4th Quarter             4         78           47
## 1572             515          4th Quarter             4         78           11
## 1573             517          4th Quarter             4         78           24
## 1574             521          4th Quarter             4         80           23
## 1575             527          4th Quarter             4         81   -214748340
## 1576             528          4th Quarter             4         82   -214748340
## 1577             533          4th Quarter             4         82           24
## 1578             535          4th Quarter             4         82           13
## 1579             537          4th Quarter             4         82           37
## 1580             545          4th Quarter             4         82            3
## 1581             549          4th Quarter             4         82           19
## 1582             553          4th Quarter             4         83   -214748340
## 1583             554          4th Quarter             4         84   -214748340
## 1584             555          4th Quarter             4         84           40
## 1585             559          4th Quarter             4         84   -214748340
## 1586             560          4th Quarter             4         84   -214748340
## 1587             562          4th Quarter             4         84           22
## 1588             566          4th Quarter             4         84           35
## 1589             568          4th Quarter             4         86           23
## 1590             570          4th Quarter             4         86           34
## 1591               7          1st Quarter             1          0           40
## 1592               9          1st Quarter             1          0           10
## 1593              11          1st Quarter             1          0           18
## 1594              13          1st Quarter             1          0           21
## 1595              17          1st Quarter             1          0           14
## 1596              19          1st Quarter             1          0           26
## 1597              21          1st Quarter             1          0           48
## 1598              22          1st Quarter             1          0            2
## 1599              24          1st Quarter             1          0           29
## 1600              27          1st Quarter             1          0           15
## 1601              31          1st Quarter             1          2           29
## 1602              33          1st Quarter             1          2           28
## 1603              35          1st Quarter             1          4           28
## 1604              39          1st Quarter             1          4           30
## 1605              41          1st Quarter             1          6           25
## 1606              43          1st Quarter             1          6           47
## 1607              45          1st Quarter             1          8           27
## 1608              46          1st Quarter             1          8           24
## 1609              49          1st Quarter             1          8   -214748340
## 1610              51          1st Quarter             1         10           28
## 1611              53          1st Quarter             1         10           30
## 1612              55          1st Quarter             1         10           30
## 1613              57          1st Quarter             1         10           13
## 1614              65          1st Quarter             1         10           45
## 1615              67          1st Quarter             1         10           34
## 1616              69          1st Quarter             1         10            4
## 1617              71          1st Quarter             1         10           28
## 1618              83          1st Quarter             1         10           26
## 1619              89          1st Quarter             1         10           27
## 1620              91          1st Quarter             1         12           25
## 1621              93          1st Quarter             1         12           47
## 1622             105          1st Quarter             1         13   -214748340
## 1623             106          1st Quarter             1         14   -214748340
## 1624             114          1st Quarter             1         14           30
## 1625             120          1st Quarter             1         14   -214748340
## 1626             121          1st Quarter             1         14   -214748340
## 1627             122          1st Quarter             1         14           27
## 1628             124          1st Quarter             1         14           24
## 1629             229          1st Quarter             1         14           25
## 1630             126          1st Quarter             1         14           24
## 1631             128          1st Quarter             1         16           28
## 1632             130          1st Quarter             1         16           44
## 1633             132          1st Quarter             1         16           27
## 1634             140          1st Quarter             1         16           27
## 1635             142          1st Quarter             1         16           27
## 1636             146          1st Quarter             1         17   -214748340
## 1637             147          1st Quarter             1         18   -214748340
## 1638             151          1st Quarter             1         18           25
## 1639             184          2nd Quarter             2         18           26
## 1640             165          2nd Quarter             2         18           24
## 1641             169          2nd Quarter             2         18   -214748340
## 1642             175          2nd Quarter             2         18   -214748340
## 1643             178          2nd Quarter             2         18            9
## 1644             190          2nd Quarter             2         18           46
## 1645             192          2nd Quarter             2         18            9
## 1646             194          2nd Quarter             2         18           17
## 1647             196          2nd Quarter             2         18           23
## 1648             202          2nd Quarter             2         18   -214748340
## 1649             207          2nd Quarter             2         18   -214748340
## 1650             274          2nd Quarter             2         18           24
## 1651             211          2nd Quarter             2         18           25
## 1652             214          2nd Quarter             2         18           20
## 1653             216          2nd Quarter             2         18           19
## 1654             218          2nd Quarter             2         20           25
## 1655             219          2nd Quarter             2         20           16
## 1656             223          2nd Quarter             2         22           12
## 1657             233          2nd Quarter             2         22            4
## 1658             235          2nd Quarter             2         22           23
## 1659             237          2nd Quarter             2         25           39
## 1660             239          2nd Quarter             2         25            6
## 1661             241          2nd Quarter             2         25           24
## 1662             243          2nd Quarter             2         25           27
## 1663             249          2nd Quarter             2         26   -214748340
## 1664             254          2nd Quarter             2         26   -214748340
## 1665             256          2nd Quarter             2         26           10
## 1666             258          2nd Quarter             2         26           23
## 1667             260          2nd Quarter             2         26           13
## 1668             262          2nd Quarter             2         26           25
## 1669             264          2nd Quarter             2         26           23
## 1670             267          2nd Quarter             2         27   -214748340
## 1671             270          2nd Quarter             2         28   -214748340
## 1672             277          2nd Quarter             2         28           24
## 1673             279          2nd Quarter             2         30           27
## 1674             283          2nd Quarter             2         30   -214748340
## 1675             284          2nd Quarter             2         30   -214748340
## 1676             291          2nd Quarter             2         31   -214748340
## 1677             294          2nd Quarter             2         32   -214748340
## 1678             297          2nd Quarter             2         32           21
## 1679             301          2nd Quarter             2         32   -214748340
## 1680             304          2nd Quarter             2         32   -214748340
## 1681             305          2nd Quarter             2         35           36
## 1682             309          2nd Quarter             2         35   -214748340
## 1683             310          2nd Quarter             2         35   -214748340
## 1684             311          2nd Quarter             2         35           19
## 1685             313          2nd Quarter             2         35           21
## 1686             315          2nd Quarter             2         35            7
## 1687             322          2nd Quarter             2         35            2
## 1688             325          2nd Quarter             2         37           25
## 1689             335          3rd Quarter             3         39           38
## 1690             338          3rd Quarter             3         39           17
## 1691             342          3rd Quarter             3         39           21
## 1692             343          3rd Quarter             3         39            8
## 1693             345          3rd Quarter             3         39           17
## 1694             347          3rd Quarter             3         41           20
## 1695             349          3rd Quarter             3         41           27
## 1696             351          3rd Quarter             3         41            9
## 1697             354          3rd Quarter             3         41           11
## 1698             358          3rd Quarter             3         41   -214748340
## 1699             359          3rd Quarter             3         41   -214748340
## 1700             360          3rd Quarter             3         44            8
## 1701             365          3rd Quarter             3         46           23
## 1702             369          3rd Quarter             3         46           23
## 1703             373          3rd Quarter             3         47   -214748340
## 1704             374          3rd Quarter             3         47   -214748340
## 1705             376          3rd Quarter             3         47           21
## 1706             380          3rd Quarter             3         47   -214748340
## 1707             387          3rd Quarter             3         47   -214748340
## 1708             388          3rd Quarter             3         49           24
## 1709             393          3rd Quarter             3         49   -214748340
## 1710             395          3rd Quarter             3         49   -214748340
## 1711             396          3rd Quarter             3         49           10
## 1712             399          3rd Quarter             3         49           20
## 1713             401          3rd Quarter             3         49           23
## 1714             403          3rd Quarter             3         49           27
## 1715             405          3rd Quarter             3         49           27
## 1716             407          3rd Quarter             3         49           26
## 1717             409          3rd Quarter             3         49           23
## 1718             413          3rd Quarter             3         52           49
## 1719             415          3rd Quarter             3         52           22
## 1720             427          3rd Quarter             3         53   -214748340
## 1721             439          3rd Quarter             3         55           28
## 1722             441          3rd Quarter             3         55            7
## 1723             443          3rd Quarter             3         55           42
## 1724             445          3rd Quarter             3         55           46
## 1725             447          3rd Quarter             3         55           28
## 1726             451          3rd Quarter             3         55   -214748340
## 1727             452          3rd Quarter             3         55           23
## 1728             454          3rd Quarter             3         55           27
## 1729             456          3rd Quarter             3         55           13
## 1730             467          3rd Quarter             3         56   -214748340
## 1731             468          3rd Quarter             3         57   -214748340
## 1732             469          3rd Quarter             3         57           31
## 1733             473          3rd Quarter             3         57            3
## 1734             485          4th Quarter             4         57           12
## 1735             487          4th Quarter             4         57            1
## 1736             489          4th Quarter             4         57           27
## 1737             492          4th Quarter             4         57           14
## 1738             495          4th Quarter             4         57            4
## 1739             503          4th Quarter             4         57   -214748340
## 1740             504          4th Quarter             4         57           10
## 1741             506          4th Quarter             4         57           30
## 1742             509          4th Quarter             4         60           10
## 1743             511          4th Quarter             4         60           22
## 1744             513          4th Quarter             4         60           23
## 1745             519          4th Quarter             4         61   -214748340
## 1746             524          4th Quarter             4         62   -214748340
## 1747             525          4th Quarter             4         62           30
## 1748             527          4th Quarter             4         62           47
## 1749             529          4th Quarter             4         62           31
## 1750             531          4th Quarter             4         62           28
## 1751             533          4th Quarter             4         62           44
## 1752             535          4th Quarter             4         62           42
## 1753             538          4th Quarter             4         63   -214748340
## 1754             543          4th Quarter             4         64   -214748340
## 1755             546          4th Quarter             4         64   -214748340
## 1756             547          4th Quarter             4         64   -214748340
## 1757             548          4th Quarter             4         66           28
## 1758             553          4th Quarter             4         66            9
## 1759             555          4th Quarter             4         66           43
## 1760             557          4th Quarter             4         66           17
## 1761             559          4th Quarter             4         66           23
## 1762             560          4th Quarter             4         66           32
## 1763             563          4th Quarter             4         68           25
## 1764             573          4th Quarter             4         68           12
## 1765             575          4th Quarter             4         68           24
## 1766             577          4th Quarter             4         68           47
## 1767             579          4th Quarter             4         68           29
## 1768             590          4th Quarter             4         69   -214748340
## 1769             591          4th Quarter             4         70   -214748340
## 1770             594          4th Quarter             4         70   -214748340
## 1771             601          4th Quarter             4         70   -214748340
## 1772             602          4th Quarter             4         70           23
## 1773             604          4th Quarter             4         70           28
## 1774             608          4th Quarter             4         70           26
## 1775             612          4th Quarter             4         70           36
## 1776             614          4th Quarter             4         70           50
## 1777             616          4th Quarter             4         70           26
## 1778               7          1st Quarter             1          0           20
## 1779               9          1st Quarter             1          0           34
## 1780              11          1st Quarter             1          0           25
## 1781              13          1st Quarter             1          2           30
## 1782              14          1st Quarter             1          2           29
## 1783              16          1st Quarter             1          2           34
## 1784              18          1st Quarter             1          2            2
## 1785              20          1st Quarter             1          2           32
## 1786              25          1st Quarter             1          2   -214748340
## 1787              26          1st Quarter             1          2   -214748340
## 1788              29          1st Quarter             1          2           39
## 1789              31          1st Quarter             1          2           26
## 1790              33          1st Quarter             1          4           21
## 1791              35          1st Quarter             1          4           28
## 1792              39          1st Quarter             1          4           30
## 1793              43          1st Quarter             1          4   -214748340
## 1794              46          1st Quarter             1          4   -214748340
## 1795              47          1st Quarter             1          4           25
## 1796              50          1st Quarter             1          4           30
## 1797              51          1st Quarter             1          6           26
## 1798              52          1st Quarter             1          6           17
## 1799              54          1st Quarter             1          9           48
## 1800              65          1st Quarter             1          9   -214748340
## 1801              66          1st Quarter             1          9   -214748340
## 1802              67          1st Quarter             1         12            2
## 1803              71          1st Quarter             1         14           39
## 1804              75          1st Quarter             1         14   -214748340
## 1805              78          1st Quarter             1         14   -214748340
## 1806              79          1st Quarter             1         14           21
## 1807              81          1st Quarter             1         14           28
## 1808              88          1st Quarter             1         14           40
## 1809              90          1st Quarter             1         14           45
## 1810              93          1st Quarter             1         14           18
## 1811              97          1st Quarter             1         14   -214748340
## 1812             100          1st Quarter             1         14            5
## 1813             103          1st Quarter             1         14   -214748340
## 1814             109          1st Quarter             1         14   -214748340
## 1815             111          1st Quarter             1         14            7
## 1816             114          1st Quarter             1         14           23
## 1817             117          1st Quarter             1         14           33
## 1818             119          1st Quarter             1         14           18
## 1819             122          1st Quarter             1         14           29
## 1820             125          1st Quarter             1         14           28
## 1821             128          1st Quarter             1         14           12
## 1822             131          1st Quarter             1         14           27
## 1823             141          2nd Quarter             2         14           25
## 1824             143          2nd Quarter             2         14           25
## 1825             147          2nd Quarter             2         16           28
## 1826             148          2nd Quarter             2         16           30
## 1827             150          2nd Quarter             2         16           16
## 1828             152          2nd Quarter             2         16           28
## 1829             153          2nd Quarter             2         18           14
## 1830             155          2nd Quarter             2         18           27
## 1831             157          2nd Quarter             2         18           22
## 1832             161          2nd Quarter             2         18           28
## 1833             163          2nd Quarter             2         18           33
## 1834             165          2nd Quarter             2         18           18
## 1835             167          2nd Quarter             2         18            6
## 1836             173          2nd Quarter             2         18           20
## 1837             175          2nd Quarter             2         18           13
## 1838             177          2nd Quarter             2         18           27
## 1839             194          2nd Quarter             2         18           43
## 1840             196          2nd Quarter             2         21           17
## 1841             198          2nd Quarter             2         21           41
## 1842             200          2nd Quarter             2         21           24
## 1843             203          2nd Quarter             2         21           25
## 1844             210          2nd Quarter             2         21            3
## 1845             212          2nd Quarter             2         21           23
## 1846             214          2nd Quarter             2         21           24
## 1847             220          2nd Quarter             2         23           23
## 1848             224          2nd Quarter             2         23   -214748340
## 1849             225          2nd Quarter             2         23   -214748340
## 1850             227          2nd Quarter             2         23           25
## 1851             234          2nd Quarter             2         23           26
## 1852             236          2nd Quarter             2         23           11
## 1853             241          2nd Quarter             2         23           30
## 1854             243          2nd Quarter             2         23           19
## 1855             247          2nd Quarter             2         23           35
## 1856             249          2nd Quarter             2         25           25
## 1857             259          2nd Quarter             2         25           12
## 1858             261          2nd Quarter             2         25           17
## 1859             263          2nd Quarter             2         27           21
## 1860             265          2nd Quarter             2         27           28
## 1861             268          2nd Quarter             2         29           24
## 1862             269          2nd Quarter             2         29           27
## 1863             270          2nd Quarter             2         31           26
## 1864             272          2nd Quarter             2         31           20
## 1865             276          2nd Quarter             2         31           41
## 1866             282          3rd Quarter             3         33           18
## 1867             284          3rd Quarter             3         35            9
## 1868             291          3rd Quarter             3         36   -214748340
## 1869             292          3rd Quarter             3         37   -214748340
## 1870             293          3rd Quarter             3         37           27
## 1871             295          3rd Quarter             3         40           37
## 1872             296          3rd Quarter             3         39           27
## 1873             300          3rd Quarter             3         40   -214748340
## 1874             301          3rd Quarter             3         41   -214748340
## 1875             304          3rd Quarter             3         41   -214748340
## 1876             305          3rd Quarter             3         41   -214748340
## 1877             309          3rd Quarter             3         41           20
## 1878             311          3rd Quarter             3         44           12
## 1879             313          3rd Quarter             3         44           40
## 1880             315          3rd Quarter             3         44           28
## 1881             317          3rd Quarter             3         44            9
## 1882             319          3rd Quarter             3         44            2
## 1883             321          3rd Quarter             3         44            2
## 1884             323          3rd Quarter             3         44           27
## 1885             324          3rd Quarter             3         46           27
## 1886             328          3rd Quarter             3         48           11
## 1887             329          3rd Quarter             3         48           35
## 1888             331          3rd Quarter             3         48           22
## 1889             343          3rd Quarter             3         49           16
## 1890             348          3rd Quarter             3         49           11
## 1891             352          3rd Quarter             3         50   -214748340
## 1892             353          3rd Quarter             3         51   -214748340
## 1893             354          3rd Quarter             3         51           28
## 1894             356          3rd Quarter             3         53           15
## 1895             357          3rd Quarter             3         53           27
## 1896             359          3rd Quarter             3         53           25
## 1897             361          3rd Quarter             3         53           27
## 1898             363          3rd Quarter             3         53           48
## 1899             365          3rd Quarter             3         53           30
## 1900             368          3rd Quarter             3         54   -214748340
## 1901             371          3rd Quarter             3         55   -214748340
## 1902             372          3rd Quarter             3         55           18
## 1903             374          3rd Quarter             3         57           11
## 1904             375          3rd Quarter             3         57           19
## 1905             385          3rd Quarter             3         57           34
## 1906             386          3rd Quarter             3         59           23
## 1907             387          3rd Quarter             3         59           29
## 1908             389          3rd Quarter             3         59           24
## 1909             390          3rd Quarter             3         59           15
## 1910             397          3rd Quarter             3         59           42
## 1911             399          3rd Quarter             3         62           40
## 1912             409          4th Quarter             4         62   -214748340
## 1913             410          4th Quarter             4         62   -214748340
## 1914             412          4th Quarter             4         62           18
## 1915             414          4th Quarter             4         62           20
## 1916             423          4th Quarter             4         62           27
## 1917             425          4th Quarter             4         62           38
## 1918             427          4th Quarter             4         62           23
## 1919             429          4th Quarter             4         62            6
## 1920             431          4th Quarter             4         62           28
## 1921             435          4th Quarter             4         62   -214748340
## 1922             436          4th Quarter             4         64           24
## 1923             439          4th Quarter             4         64           12
## 1924             442          4th Quarter             4         64           13
## 1925             444          4th Quarter             4         64           22
## 1926             447          4th Quarter             4         66           23
## 1927             449          4th Quarter             4         66           25
## 1928             451          4th Quarter             4         66            6
## 1929             453          4th Quarter             4         66           27
## 1930             460          4th Quarter             4         68           31
## 1931             462          4th Quarter             4         68           16
## 1932             463          4th Quarter             4         70           32
## 1933             465          4th Quarter             4         70           44
## 1934             467          4th Quarter             4         73           21
## 1935             472          4th Quarter             4         75           25
## 1936             476          4th Quarter             4         75   -214748340
## 1937             481          4th Quarter             4         75   -214748340
## 1938             482          4th Quarter             4         75           20
## 1939             484          4th Quarter             4         75           29
## 1940             485          4th Quarter             4         75           22
## 1941             489          4th Quarter             4         75           36
## 1942             495          4th Quarter             4         75           27
## 1943             497          4th Quarter             4         77           26
## 1944             498          4th Quarter             4         77           27
## 1945             502          4th Quarter             4         77           23
## 1946             507          4th Quarter             4         77   -214748340
## 1947             509          4th Quarter             4         78   -214748340
## 1948             510          4th Quarter             4         78           47
## 1949             512          4th Quarter             4         78           21
## 1950             534          4th Quarter             4         78           30
## 1951             536          4th Quarter             4         78            8
## 1952             540          4th Quarter             4         80           16
## 1953               7          1st Quarter             1          0           27
## 1954              10          1st Quarter             1          0           25
## 1955              15          1st Quarter             1          0   -214748340
## 1956              17          1st Quarter             1          0   -214748340
## 1957              20          1st Quarter             1          0           25
## 1958              25          1st Quarter             1          0           30
## 1959              27          1st Quarter             1          0           25
## 1960              30          1st Quarter             1          0           25
## 1961              33          1st Quarter             1          0           16
## 1962              37          1st Quarter             1          2           20
## 1963              39          1st Quarter             1          2           38
## 1964              41          1st Quarter             1          2           23
## 1965              44          1st Quarter             1          2           25
## 1966              46          1st Quarter             1          2           18
## 1967              52          1st Quarter             1          4           26
## 1968              54          1st Quarter             1          4           29
## 1969              58          1st Quarter             1          4           25
## 1970              61          1st Quarter             1          4           25
## 1971              63          1st Quarter             1          4           16
## 1972              65          1st Quarter             1          4           25
## 1973              67          1st Quarter             1          4           41
## 1974              69          1st Quarter             1          4           25
## 1975              70          1st Quarter             1          4           25
## 1976              80          1st Quarter             1          6           25
## 1977              82          1st Quarter             1          6           29
## 1978              91          1st Quarter             1          8           26
## 1979              92          1st Quarter             1          8           16
## 1980              94          1st Quarter             1          8           41
## 1981              96          1st Quarter             1          8           25
## 1982              98          1st Quarter             1          8            2
## 1983             100          1st Quarter             1          8           48
## 1984             106          1st Quarter             1          8   -214748340
## 1985             114          1st Quarter             1          9   -214748340
## 1986             115          1st Quarter             1          9           24
## 1987             119          1st Quarter             1          9   -214748340
## 1988             121          1st Quarter             1          9   -214748340
## 1989             125          1st Quarter             1          9           25
## 1990             127          1st Quarter             1          9           25
## 1991             129          1st Quarter             1          9           27
## 1992             131          1st Quarter             1          9           46
## 1993             133          1st Quarter             1          9           25
## 1994             134          1st Quarter             1          9           25
## 1995             142          1st Quarter             1          9            6
## 1996             144          1st Quarter             1         11           20
## 1997             146          1st Quarter             1         11           25
## 1998             150          1st Quarter             1         11           17
## 1999             157          1st Quarter             1         12   -214748340
## 2000             158          1st Quarter             1         12   -214748340
## 2001             160          1st Quarter             1         12           39
## 2002             170          2nd Quarter             2         12           26
## 2003             175          2nd Quarter             2         12           23
## 2004             177          2nd Quarter             2         15           38
## 2005             185          2nd Quarter             2         15           23
## 2006             191          2nd Quarter             2         15   -214748340
## 2007             194          2nd Quarter             2         15   -214748340
## 2008             195          2nd Quarter             2         15           35
## 2009             201          2nd Quarter             2         15           26
## 2010             203          2nd Quarter             2         15           25
## 2011             559          2nd Quarter             2         15           25
## 2012             207          2nd Quarter             2         15   -214748340
## 2013             210          2nd Quarter             2         15   -214748340
## 2014             212          2nd Quarter             2         15            3
## 2015             214          2nd Quarter             2         15           25
## 2016             218          2nd Quarter             2         15   -214748340
## 2017             221          2nd Quarter             2         15   -214748340
## 2018             222          2nd Quarter             2         15           24
## 2019             224          2nd Quarter             2         15           25
## 2020             232          2nd Quarter             2         15   -214748340
## 2021             233          2nd Quarter             2         15           24
## 2022             238          2nd Quarter             2         15   -214748340
## 2023             240          2nd Quarter             2         15   -214748340
## 2024             244          2nd Quarter             2         15   -214748340
## 2025             247          2nd Quarter             2         15   -214748340
## 2026             249          2nd Quarter             2         15           25
## 2027             251          2nd Quarter             2         17           25
## 2028             252          2nd Quarter             2         17           23
## 2029             256          2nd Quarter             2         17           16
## 2030             258          2nd Quarter             2         17           26
## 2031             261          2nd Quarter             2         19           33
## 2032             262          2nd Quarter             2         19           25
## 2033             265          2nd Quarter             2         19           24
## 2034             267          2nd Quarter             2         19           25
## 2035             269          2nd Quarter             2         19           33
## 2036             273          2nd Quarter             2         19   -214748340
## 2037             281          2nd Quarter             2         20   -214748340
## 2038             282          2nd Quarter             2         20           25
## 2039             289          2nd Quarter             2         20   -214748340
## 2040             291          2nd Quarter             2         20   -214748340
## 2041             293          2nd Quarter             2         20           29
## 2042             295          2nd Quarter             2         20           30
## 2043             298          2nd Quarter             2         20           23
## 2044             304          2nd Quarter             2         22           26
## 2045             306          2nd Quarter             2         22           25
## 2046             309          2nd Quarter             2         24           15
## 2047             312          2nd Quarter             2         24           25
## 2048             314          2nd Quarter             2         26           25
## 2049             320          2nd Quarter             2         26            2
## 2050             322          2nd Quarter             2         26           33
## 2051             326          2nd Quarter             2         26           30
## 2052             330          2nd Quarter             2         26   -214748340
## 2053             335          2nd Quarter             2         26   -214748340
## 2054             336          2nd Quarter             2         28           10
## 2055             351          3rd Quarter             3         26           15
## 2056             353          3rd Quarter             3         28           39
## 2057             357          3rd Quarter             3         30           25
## 2058             358          3rd Quarter             3         30           25
## 2059             359          3rd Quarter             3         32           27
## 2060             364          3rd Quarter             3         34           26
## 2061             367          3rd Quarter             3         34           24
## 2062             369          3rd Quarter             3         34           42
## 2063             371          3rd Quarter             3         34           41
## 2064             373          3rd Quarter             3         34           25
## 2065             379          3rd Quarter             3         34           22
## 2066             385          3rd Quarter             3         34           27
## 2067             393          3rd Quarter             3         34   -214748340
## 2068             394          3rd Quarter             3         34   -214748340
## 2069             399          3rd Quarter             3         34           25
## 2070             403          3rd Quarter             3         34   -214748340
## 2071             405          3rd Quarter             3         34   -214748340
## 2072             408          3rd Quarter             3         34           25
## 2073             412          3rd Quarter             3         36           30
## 2074             417          3rd Quarter             3         36   -214748340
## 2075             421          3rd Quarter             3         36   -214748340
## 2076             422          3rd Quarter             3         36   -214748340
## 2077             424          3rd Quarter             3         36           28
## 2078             426          3rd Quarter             3         38           12
## 2079             427          3rd Quarter             3         38           18
## 2080             429          3rd Quarter             3         40           28
## 2081             430          3rd Quarter             3         40           25
## 2082             431          3rd Quarter             3         40           19
## 2083             435          3rd Quarter             3         40   -214748340
## 2084             440          3rd Quarter             3         40   -214748340
## 2085             441          3rd Quarter             3         42           26
## 2086             443          3rd Quarter             3         42           24
## 2087             448          3rd Quarter             3         43   -214748340
## 2088             449          3rd Quarter             3         44   -214748340
## 2089             453          3rd Quarter             3         44           16
## 2090             457          3rd Quarter             3         44   -214748340
## 2091             458          3rd Quarter             3         44   -214748340
## 2092             460          3rd Quarter             3         44   -214748340
## 2093             464          3rd Quarter             3         44   -214748340
## 2094             466          3rd Quarter             3         45   -214748340
## 2095             469          3rd Quarter             3         47           32
## 2096             471          3rd Quarter             3         47           25
## 2097             473          3rd Quarter             3         50            2
## 2098             484          3rd Quarter             3         51   -214748340
## 2099             485          3rd Quarter             3         52   -214748340
## 2100             486          3rd Quarter             3         52           45
## 2101             488          3rd Quarter             3         52           25
## 2102             490          3rd Quarter             3         54           26
## 2103             492          3rd Quarter             3         54           11
## 2104             500          4th Quarter             4         54            9
## 2105             504          4th Quarter             4         54           30
## 2106             506          4th Quarter             4         54            3
## 2107             508          4th Quarter             4         54           22
## 2108             510          4th Quarter             4         54           25
## 2109             512          4th Quarter             4         54           21
## 2110             514          4th Quarter             4         54           32
## 2111             518          4th Quarter             4         54   -214748340
## 2112             522          4th Quarter             4         54   -214748340
## 2113             523          4th Quarter             4         57           44
## 2114             525          4th Quarter             4         57           26
## 2115             528          4th Quarter             4         57           19
## 2116             530          4th Quarter             4         57           26
## 2117             531          4th Quarter             4         59           10
## 2118             540          4th Quarter             4         61           26
## 2119             544          4th Quarter             4         62   -214748340
## 2120             547          4th Quarter             4         62           35
## 2121             552          4th Quarter             4         62           14
## 2122             554          4th Quarter             4         62           25
## 2123             563          4th Quarter             4         62   -214748340
## 2124             564          4th Quarter             4         65           43
## 2125             569          4th Quarter             4         65           22
## 2126             572          4th Quarter             4         68           14
## 2127             576          4th Quarter             4         68           25
## 2128             580          4th Quarter             4         68   -214748340
## 2129             584          4th Quarter             4         69   -214748340
## 2130             585          4th Quarter             4         69           11
## 2131             588          4th Quarter             4         69           39
## 2132             590          4th Quarter             4         69           23
## 2133             592          4th Quarter             4         69           39
## 2134             597          4th Quarter             4         69   -214748340
## 2135             599          4th Quarter             4         69   -214748340
## 2136             602          4th Quarter             4         69           27
## 2137             606          4th Quarter             4         69           40
## 2138             609          4th Quarter             4         69           26
## 2139             616          4th Quarter             4         70   -214748340
## 2140             617          4th Quarter             4         71   -214748340
## 2141             618          4th Quarter             4         71           25
## 2142             622          4th Quarter             4         71   -214748340
## 2143             628          4th Quarter             4         71           26
## 2144             630          4th Quarter             4         73            9
## 2145             632          4th Quarter             4         73           25
## 2146             636          4th Quarter             4         73           26
## 2147             639          4th Quarter             4         73           25
## 2148             643          4th Quarter             4         73           13
## 2149             646          4th Quarter             4         73           25
## 2150             648          4th Quarter             4         73           25
## 2151             652          4th Quarter             4         73   -214748340
## 2152             653          4th Quarter             4         73   -214748340
## 2153             656          4th Quarter             4         73           12
## 2154             658          4th Quarter             4         75           25
## 2155             664          4th Quarter             4         75   -214748340
## 2156             667          4th Quarter             4         75   -214748340
## 2157             668          4th Quarter             4         77           24
## 2158             671          4th Quarter             4         77   -214748340
## 2159             672          4th Quarter             4         77   -214748340
## 2160               7          1st Quarter             1          0           28
## 2161               9          1st Quarter             1          0           27
## 2162              11          1st Quarter             1          0           16
## 2163              17          1st Quarter             1          2           27
## 2164              19          1st Quarter             1          2           41
## 2165              21          1st Quarter             1          2            3
## 2166              23          1st Quarter             1          2           34
## 2167              24          1st Quarter             1          2           19
## 2168              26          1st Quarter             1          2           18
## 2169              28          1st Quarter             1          5           48
## 2170              32          1st Quarter             1          5   -214748340
## 2171              33          1st Quarter             1          5   -214748340
## 2172              36          1st Quarter             1          5           24
## 2173              37          1st Quarter             1          5           11
## 2174              39          1st Quarter             1          5           38
## 2175              41          1st Quarter             1          7           26
## 2176              47          1st Quarter             1          7           25
## 2177              49          1st Quarter             1          9           25
## 2178              51          1st Quarter             1          9           46
## 2179              53          1st Quarter             1          9            7
## 2180              55          1st Quarter             1          9            3
## 2181              59          1st Quarter             1          9           24
## 2182              61          1st Quarter             1         11           27
## 2183              63          1st Quarter             1         11           21
## 2184              65          1st Quarter             1         11           25
## 2185              67          1st Quarter             1         14            2
## 2186              69          1st Quarter             1         14           27
## 2187              71          1st Quarter             1         17           32
## 2188              73          1st Quarter             1         17           23
## 2189              75          1st Quarter             1         19           27
## 2190              88          1st Quarter             1         19           28
## 2191              92          1st Quarter             1         22            6
## 2192              94          1st Quarter             1         22           19
## 2193              97          1st Quarter             1         22           24
## 2194              98          1st Quarter             1         24           26
## 2195             100          1st Quarter             1         24           16
## 2196             107          1st Quarter             1         26           24
## 2197             108          1st Quarter             1         26           21
## 2198             116          2nd Quarter             2         26           22
## 2199             117          2nd Quarter             2         26            4
## 2200             119          2nd Quarter             2         26           24
## 2201             123          2nd Quarter             2         26           23
## 2202             125          2nd Quarter             2         28           32
## 2203             135          2nd Quarter             2         28           18
## 2204             137          2nd Quarter             2         28           25
## 2205             140          2nd Quarter             2         30           26
## 2206             146          2nd Quarter             2         31   -214748340
## 2207             149          2nd Quarter             2         31   -214748340
## 2208             150          2nd Quarter             2         31   -214748340
## 2209             154          2nd Quarter             2         31           15
## 2210             156          2nd Quarter             2         34            2
## 2211             160          2nd Quarter             2         34            9
## 2212             163          2nd Quarter             2         37            2
## 2213             165          2nd Quarter             2         37            4
## 2214             174          2nd Quarter             2         39           27
## 2215             180          2nd Quarter             2         39           26
## 2216             182          2nd Quarter             2         39            8
## 2217             184          2nd Quarter             2         41           25
## 2218             191          2nd Quarter             2         43           26
## 2219             194          2nd Quarter             2         43           31
## 2220             196          2nd Quarter             2         45           27
## 2221             203          2nd Quarter             2         45   -214748340
## 2222             205          2nd Quarter             2         48           46
## 2223             207          2nd Quarter             2         48           15
## 2224             211          2nd Quarter             2         48   -214748340
## 2225             212          2nd Quarter             2         48   -214748340
## 2226             214          2nd Quarter             2         48           23
## 2227             216          2nd Quarter             2         48           30
## 2228             219          2nd Quarter             2         48           20
## 2229             221          2nd Quarter             2         48           40
## 2230             225          2nd Quarter             2         48   -214748340
## 2231             228          2nd Quarter             2         48   -214748340
## 2232             229          2nd Quarter             2         48           43
## 2233             231          2nd Quarter             2         48           24
## 2234             234          2nd Quarter             2         48           24
## 2235             236          2nd Quarter             2         48           24
## 2236             239          2nd Quarter             2         48           34
## 2237             241          2nd Quarter             2         50           26
## 2238             249          3rd Quarter             3         50           11
## 2239             251          3rd Quarter             3         50           27
## 2240             255          3rd Quarter             3         50           37
## 2241             256          3rd Quarter             3         50           10
## 2242             259          3rd Quarter             3         50           37
## 2243             261          3rd Quarter             3         50            2
## 2244             266          3rd Quarter             3         52           27
## 2245             268          3rd Quarter             3         52           29
## 2246             271          3rd Quarter             3         52           42
## 2247             277          3rd Quarter             3         54           27
## 2248             278          3rd Quarter             3         54           27
## 2249             282          3rd Quarter             3         56           27
## 2250             285          3rd Quarter             3         56           14
## 2251             293          3rd Quarter             3         56           12
## 2252             295          3rd Quarter             3         59           35
## 2253             298          3rd Quarter             3         59           44
## 2254             300          3rd Quarter             3         59           25
## 2255             302          3rd Quarter             3         59           24
## 2256             306          3rd Quarter             3         59            3
## 2257             310          3rd Quarter             3         59           47
## 2258             316          3rd Quarter             3         61           26
## 2259             319          3rd Quarter             3         62   -214748340
## 2260             322          3rd Quarter             3         65           47
## 2261             326          3rd Quarter             3         65           23
## 2262             328          3rd Quarter             3         65           24
## 2263             331          3rd Quarter             3         65           15
## 2264             333          3rd Quarter             3         67           11
## 2265             335          3rd Quarter             3         67           26
## 2266             338          3rd Quarter             3         67           48
## 2267             345          3rd Quarter             3         67           28
## 2268             354          3rd Quarter             3         67           31
## 2269             358          3rd Quarter             3         67   -214748340
## 2270             364          3rd Quarter             3         67   -214748340
## 2271             366          3rd Quarter             3         67            8
## 2272             382          3rd Quarter             3         67           21
## 2273             368          3rd Quarter             3         67           25
## 2274             375          3rd Quarter             3         67           23
## 2275             373          3rd Quarter             3         67   -214748340
## 2276             374          3rd Quarter             3         67   -214748340
## 2277             387          4th Quarter             4         68   -214748340
## 2278             388          4th Quarter             4         69   -214748340
## 2279             389          4th Quarter             4         69           13
## 2280             391          4th Quarter             4         71           26
## 2281             396          4th Quarter             4         73           23
## 2282             398          4th Quarter             4         73           30
## 2283             400          4th Quarter             4         73           18
## 2284             404          4th Quarter             4         73           22
## 2285             406          4th Quarter             4         73           30
## 2286             410          4th Quarter             4         75           22
## 2287             413          4th Quarter             4         75           25
## 2288             416          4th Quarter             4         75           47
## 2289             424          4th Quarter             4         75           30
## 2290             428          4th Quarter             4         77           26
## 2291             430          4th Quarter             4         77           32
## 2292             432          4th Quarter             4         77           28
## 2293             441          4th Quarter             4         77   -214748340
## 2294             442          4th Quarter             4         77   -214748340
## 2295             443          4th Quarter             4         77           10
## 2296             445          4th Quarter             4         77           30
## 2297             446          4th Quarter             4         80           40
## 2298             447          4th Quarter             4         80           24
## 2299             450          4th Quarter             4         82           23
## 2300             451          4th Quarter             4         82           24
## 2301             454          4th Quarter             4         84           24
## 2302             456          4th Quarter             4         84           27
## 2303             462          4th Quarter             4         84            3
## 2304             464          4th Quarter             4         84           22
## 2305             466          4th Quarter             4         84           47
## 2306             470          4th Quarter             4         84           12
## 2307             472          4th Quarter             4         86           27
## 2308             473          4th Quarter             4         86            6
## 2309             475          4th Quarter             4         86           37
## 2310             481          4th Quarter             4         86   -214748340
## 2311             482          4th Quarter             4         86   -214748340
## 2312             484          4th Quarter             4         88           23
## 2313             485          4th Quarter             4         88            6
## 2314             489          4th Quarter             4         88   -214748340
## 2315             490          4th Quarter             4         88   -214748340
## 2316               7          1st Quarter             1          0           44
## 2317               9          1st Quarter             1          2           24
## 2318              13          1st Quarter             1          2   -214748340
## 2319              15          1st Quarter             1          2           40
## 2320              23          1st Quarter             1          2            2
## 2321              25          1st Quarter             1          4           10
## 2322              28          1st Quarter             1          7           34
## 2323              32          1st Quarter             1          7           26
## 2324              36          1st Quarter             1          7            7
## 2325              44          1st Quarter             1          7   -214748340
## 2326              46          1st Quarter             1          8   -214748340
## 2327              50          1st Quarter             1          8           38
## 2328              52          1st Quarter             1          8           45
## 2329              54          1st Quarter             1         10           23
## 2330              58          1st Quarter             1         10           41
## 2331              60          1st Quarter             1         12           24
## 2332              61          1st Quarter             1         12           26
## 2333              65          1st Quarter             1         12            7
## 2334              67          1st Quarter             1         14           39
## 2335              68          1st Quarter             1         14           43
## 2336              82          1st Quarter             1         16           25
## 2337              83          1st Quarter             1         16           26
## 2338              85          1st Quarter             1         16           27
## 2339              88          1st Quarter             1         18           24
## 2340              92          1st Quarter             1         18           23
## 2341              96          1st Quarter             1         19   -214748340
## 2342              99          1st Quarter             1         20   -214748340
## 2343             100          1st Quarter             1         20           42
## 2344             105          1st Quarter             1         22           25
## 2345             106          1st Quarter             1         22           23
## 2346             108          1st Quarter             1         24           25
## 2347             112          1st Quarter             1         26           38
## 2348             119          1st Quarter             1         26           10
## 2349             121          1st Quarter             1         26           29
## 2350             128          1st Quarter             1         26           40
## 2351             137          2nd Quarter             2         27   -214748340
## 2352             138          2nd Quarter             2         27   -214748340
## 2353             143          2nd Quarter             2         27           26
## 2354             145          2nd Quarter             2         27           26
## 2355             147          2nd Quarter             2         27           40
## 2356             149          2nd Quarter             2         27           23
## 2357             151          2nd Quarter             2         27           23
## 2358             159          2nd Quarter             2         29           25
## 2359             161          2nd Quarter             2         29           27
## 2360             169          2nd Quarter             2         29           24
## 2361             170          2nd Quarter             2         29           13
## 2362             177          2nd Quarter             2         29   -214748340
## 2363             180          2nd Quarter             2         29   -214748340
## 2364             181          2nd Quarter             2         31           40
## 2365             183          2nd Quarter             2         31            2
## 2366             185          2nd Quarter             2         31           26
## 2367             194          2nd Quarter             2         33           24
## 2368             195          2nd Quarter             2         33           30
## 2369             196          2nd Quarter             2         35           26
## 2370             198          2nd Quarter             2         35           26
## 2371             206          2nd Quarter             2         35            1
## 2372             208          2nd Quarter             2         35           39
## 2373             212          2nd Quarter             2         35           27
## 2374             213          2nd Quarter             2         35           34
## 2375             215          2nd Quarter             2         35           17
## 2376             217          2nd Quarter             2         38           10
## 2377             220          2nd Quarter             2         38           25
## 2378             235          2nd Quarter             2         39   -214748340
## 2379             236          2nd Quarter             2         40   -214748340
## 2380             237          2nd Quarter             2         40           37
## 2381             241          2nd Quarter             2         40           16
## 2382             245          2nd Quarter             2         43           14
## 2383             247          2nd Quarter             2         43           44
## 2384             249          2nd Quarter             2         43           23
## 2385             252          2nd Quarter             2         43           44
## 2386             256          2nd Quarter             2         44   -214748340
## 2387             259          2nd Quarter             2         44   -214748340
## 2388             261          2nd Quarter             2         44           20
## 2389             266          2nd Quarter             2         44           26
## 2390             268          2nd Quarter             2         44           27
## 2391             272          2nd Quarter             2         45   -214748340
## 2392             273          2nd Quarter             2         46   -214748340
## 2393             274          2nd Quarter             2         46           47
## 2394             276          2nd Quarter             2         48           24
## 2395             277          2nd Quarter             2         48           26
## 2396             279          2nd Quarter             2         48            8
## 2397             292          3rd Quarter             3         48           41
## 2398             294          3rd Quarter             3         48            1
## 2399             296          3rd Quarter             3         48            8
## 2400             299          3rd Quarter             3         49   -214748340
## 2401             300          3rd Quarter             3         49   -214748340
## 2402             304          3rd Quarter             3         49           22
## 2403             306          3rd Quarter             3         49           27
## 2404             308          3rd Quarter             3         49           27
## 2405             310          3rd Quarter             3         49            2
## 2406             312          3rd Quarter             3         49           40
## 2407             318          3rd Quarter             3         49           27
## 2408             324          3rd Quarter             3         51           39
## 2409             328          3rd Quarter             3         51           42
## 2410             332          3rd Quarter             3         51           24
## 2411             337          3rd Quarter             3         51           24
## 2412             339          3rd Quarter             3         51           25
## 2413             341          3rd Quarter             3         51           24
## 2414             343          3rd Quarter             3         51           22
## 2415             345          3rd Quarter             3         53           26
## 2416             346          3rd Quarter             3         53           14
## 2417             356          3rd Quarter             3         53           26
## 2418             358          3rd Quarter             3         53           26
## 2419             361          3rd Quarter             3         53           10
## 2420             363          3rd Quarter             3         53           36
## 2421             365          3rd Quarter             3         56           34
## 2422             367          3rd Quarter             3         56           17
## 2423             369          3rd Quarter             3         56           18
## 2424             380          3rd Quarter             3         58           24
## 2425             384          3rd Quarter             3         58   -214748340
## 2426             385          3rd Quarter             3         58   -214748340
## 2427             388          3rd Quarter             3         58           24
## 2428             390          3rd Quarter             3         58           26
## 2429             393          3rd Quarter             3         60           27
## 2430             394          3rd Quarter             3         60           26
## 2431             397          3rd Quarter             3         60           26
## 2432             399          3rd Quarter             3         63            4
## 2433             406          3rd Quarter             3         63            5
## 2434             414          3rd Quarter             3         63   -214748340
## 2435             416          3rd Quarter             3         63   -214748340
## 2436             419          3rd Quarter             3         63           22
## 2437             427          4th Quarter             4         63           12
## 2438             429          4th Quarter             4         65           26
## 2439             431          4th Quarter             4         65            8
## 2440             433          4th Quarter             4         67           28
## 2441             441          4th Quarter             4         67            8
## 2442             443          4th Quarter             4         67           28
## 2443             446          4th Quarter             4         67           24
## 2444             448          4th Quarter             4         69           26
## 2445             450          4th Quarter             4         69           41
## 2446             452          4th Quarter             4         71           24
## 2447             456          4th Quarter             4         71   -214748340
## 2448             463          4th Quarter             4         71   -214748340
## 2449             464          4th Quarter             4         71           25
## 2450             466          4th Quarter             4         71           22
## 2451             468          4th Quarter             4         71           30
## 2452             473          4th Quarter             4         71           32
## 2453             474          4th Quarter             4         71           27
## 2454             485          4th Quarter             4         71   -214748340
## 2455             487          4th Quarter             4         71   -214748340
## 2456             489          4th Quarter             4         73           25
## 2457             491          4th Quarter             4         73           25
## 2458             493          4th Quarter             4         75           26
## 2459             500          4th Quarter             4         75           24
## 2460             506          4th Quarter             4         75   -214748340
## 2461             507          4th Quarter             4         75   -214748340
## 2462             514          4th Quarter             4         75           24
## 2463             517          4th Quarter             4         75   -214748340
## 2464             523          4th Quarter             4         75   -214748340
## 2465             527          4th Quarter             4         75   -214748340
## 2466             529          4th Quarter             4         75   -214748340
## 2467             530          4th Quarter             4         75           25
## 2468             532          4th Quarter             4         75            4
## 2469             534          4th Quarter             4         75           38
## 2470             536          4th Quarter             4         75           24
## 2471             539          4th Quarter             4         75           14
## 2472             541          4th Quarter             4         75           26
## 2473             542          4th Quarter             4         75           27
## 2474             546          4th Quarter             4         75   -214748340
## 2475             549          4th Quarter             4         75   -214748340
## 2476             552          4th Quarter             4         76   -214748340
## 2477             553          4th Quarter             4         77   -214748340
## 2478             557          4th Quarter             4         77   -214748340
## 2479             558          4th Quarter             4         77   -214748340
## 2480             562          4th Quarter             4         77   -214748340
## 2481             564          4th Quarter             4         78   -214748340
## 2482             567          4th Quarter             4         78   -214748340
## 2483             568          4th Quarter             4         78   -214748340
## 2484             570          4th Quarter             4         78           14
## 2485             572          4th Quarter             4         78           25
## 2486             574          4th Quarter             4         78           34
## 2487             575          4th Quarter             4         78           26
## 2488               7          1st Quarter             1          0            2
## 2489               9          1st Quarter             1          0            2
## 2490              11          1st Quarter             1          0           24
## 2491              13          1st Quarter             1          0           33
## 2492              15          1st Quarter             1          0           37
## 2493              18          1st Quarter             1          0           35
## 2494              20          1st Quarter             1          0           12
## 2495              23          1st Quarter             1          0           23
## 2496              26          1st Quarter             1          0           25
## 2497              29          1st Quarter             1          0           36
## 2498              31          1st Quarter             1          0           35
## 2499              33          1st Quarter             1          0           49
## 2500              35          1st Quarter             1          0           38
## 2501              37          1st Quarter             1          0           24
## 2502              41          1st Quarter             1          0           10
## 2503              42          1st Quarter             1          2           26
## 2504              44          1st Quarter             1          2           25
## 2505              45          1st Quarter             1          4           24
## 2506              51          1st Quarter             1          5   -214748340
## 2507              52          1st Quarter             1          5           29
## 2508              54          1st Quarter             1          7           17
## 2509              55          1st Quarter             1          7           11
## 2510              57          1st Quarter             1          9           25
## 2511              58          1st Quarter             1          9           40
## 2512              64          1st Quarter             1          9           26
## 2513              66          1st Quarter             1          9           40
## 2514              68          1st Quarter             1          9           28
## 2515              80          1st Quarter             1          9           13
## 2516              85          1st Quarter             1          9           25
## 2517              88          1st Quarter             1         11           42
## 2518              90          1st Quarter             1         11           26
## 2519              92          1st Quarter             1         11            1
## 2520              94          1st Quarter             1         11           25
## 2521              96          1st Quarter             1         13           11
## 2522              97          1st Quarter             1         13           25
## 2523             107          1st Quarter             1         13           28
## 2524             109          1st Quarter             1         13           38
## 2525             113          1st Quarter             1         13   -214748340
## 2526             119          1st Quarter             1         13   -214748340
## 2527             120          1st Quarter             1         15            9
## 2528             122          1st Quarter             1         15           40
## 2529             125          1st Quarter             1         15           48
## 2530             131          2nd Quarter             2         18           41
## 2531             133          2nd Quarter             2         18           26
## 2532             138          2nd Quarter             2         21            2
## 2533             140          2nd Quarter             2         21           38
## 2534             142          2nd Quarter             2         21           34
## 2535             148          2nd Quarter             2         21           25
## 2536             149          2nd Quarter             2         21           42
## 2537             151          2nd Quarter             2         21           25
## 2538             164          2nd Quarter             2         21   -214748340
## 2539             165          2nd Quarter             2         21   -214748340
## 2540             166          2nd Quarter             2         23            8
## 2541             168          2nd Quarter             2         23            2
## 2542             170          2nd Quarter             2         25           25
## 2543             182          2nd Quarter             2         25           25
## 2544             184          2nd Quarter             2         27           38
## 2545             188          2nd Quarter             2         27   -214748340
## 2546             195          2nd Quarter             2         27   -214748340
## 2547             197          2nd Quarter             2         27           26
## 2548             199          2nd Quarter             2         27           10
## 2549             201          2nd Quarter             2         29           25
## 2550             202          2nd Quarter             2         29           27
## 2551             206          2nd Quarter             2         29   -214748340
## 2552             212          2nd Quarter             2         30   -214748340
## 2553             213          2nd Quarter             2         30           24
## 2554             215          2nd Quarter             2         30           21
## 2555             220          2nd Quarter             2         30           26
## 2556             222          2nd Quarter             2         32           24
## 2557             224          2nd Quarter             2         32           26
## 2558             236          2nd Quarter             2         32   -214748340
## 2559             238          2nd Quarter             2         32   -214748340
## 2560             241          2nd Quarter             2         32           48
## 2561             243          2nd Quarter             2         32           39
## 2562             247          2nd Quarter             2         32           24
## 2563             249          2nd Quarter             2         32           26
## 2564             258          2nd Quarter             2         32           25
## 2565             261          2nd Quarter             2         34           25
## 2566             266          2nd Quarter             2         34            3
## 2567             270          2nd Quarter             2         34            8
## 2568             274          2nd Quarter             2         34   -214748340
## 2569             281          2nd Quarter             2         34   -214748340
## 2570             292          3rd Quarter             3         34           25
## 2571             294          3rd Quarter             3         34           41
## 2572             298          3rd Quarter             3         36           29
## 2573             300          3rd Quarter             3         36           28
## 2574             302          3rd Quarter             3         36           25
## 2575             305          3rd Quarter             3         38           34
## 2576             307          3rd Quarter             3         38           13
## 2577             309          3rd Quarter             3         38           25
## 2578             313          3rd Quarter             3         40           24
## 2579             315          3rd Quarter             3         40           24
## 2580             318          3rd Quarter             3         40           25
## 2581             326          3rd Quarter             3         40           25
## 2582             334          3rd Quarter             3         42           40
## 2583             335          3rd Quarter             3         42           18
## 2584             337          3rd Quarter             3         42           42
## 2585             339          3rd Quarter             3         45            6
## 2586             343          3rd Quarter             3         45            6
## 2587             345          3rd Quarter             3         47           25
## 2588             346          3rd Quarter             3         47            1
## 2589             349          3rd Quarter             3         47           25
## 2590             351          3rd Quarter             3         47           47
## 2591             353          3rd Quarter             3         49           26
## 2592             360          3rd Quarter             3         49           25
## 2593             362          3rd Quarter             3         51           42
## 2594             369          3rd Quarter             3         51           22
## 2595             371          3rd Quarter             3         51           27
## 2596             373          3rd Quarter             3         51           27
## 2597             375          3rd Quarter             3         51           26
## 2598             378          3rd Quarter             3         51           28
## 2599             380          3rd Quarter             3         51           36
## 2600             382          3rd Quarter             3         51           22
## 2601             384          3rd Quarter             3         51            6
## 2602             397          3rd Quarter             3         53           43
## 2603             399          3rd Quarter             3         53           37
## 2604             401          3rd Quarter             3         55           32
## 2605             402          3rd Quarter             3         55           22
## 2606             407          3rd Quarter             3         56   -214748340
## 2607             408          3rd Quarter             3         57   -214748340
## 2608             412          3rd Quarter             3         57   -214748340
## 2609             415          3rd Quarter             3         57   -214748340
## 2610             419          3rd Quarter             3         58   -214748340
## 2611             420          3rd Quarter             3         58   -214748340
## 2612             422          3rd Quarter             3         58           25
## 2613             430          4th Quarter             4         58           25
## 2614             431          4th Quarter             4         61           49
## 2615             433          4th Quarter             4         61           24
## 2616             442          4th Quarter             4         61           42
## 2617             444          4th Quarter             4         61            2
## 2618             446          4th Quarter             4         61            9
## 2619             451          4th Quarter             4         61           24
## 2620             453          4th Quarter             4         61           29
## 2621             458          4th Quarter             4         61           27
## 2622             460          4th Quarter             4         64           16
## 2623             461          4th Quarter             4         64           29
## 2624             463          4th Quarter             4         64           21
## 2625             465          4th Quarter             4         66           25
## 2626             469          4th Quarter             4         66   -214748340
## 2627             478          4th Quarter             4         66   -214748340
## 2628             479          4th Quarter             4         66           43
## 2629             490          4th Quarter             4         66           24
## 2630             492          4th Quarter             4         66           27
## 2631             496          4th Quarter             4         66           25
## 2632             498          4th Quarter             4         66            1
## 2633             502          4th Quarter             4         67   -214748340
## 2634             505          4th Quarter             4         68   -214748340
## 2635             506          4th Quarter             4         68           24
## 2636             508          4th Quarter             4         68           46
## 2637             510          4th Quarter             4         68           17
## 2638             512          4th Quarter             4         68           37
## 2639             514          4th Quarter             4         68           26
## 2640             516          4th Quarter             4         68           24
## 2641             519          4th Quarter             4         68           24
## 2642             523          4th Quarter             4         70           25
## 2643             525          4th Quarter             4         70           14
## 2644             529          4th Quarter             4         71   -214748340
## 2645             530          4th Quarter             4         72   -214748340
## 2646             531          4th Quarter             4         72            6
## 2647             532          4th Quarter             4         74           11
## 2648             534          4th Quarter             4         74           25
## 2649             538          4th Quarter             4         75   -214748340
## 2650             539          4th Quarter             4         76   -214748340
## 2651             540          4th Quarter             4         76           25
## 2652             545          4th Quarter             4         79            2
## 2653             552          4th Quarter             4         79           24
## 2654             554          4th Quarter             4         79           23
## 2655             556          4th Quarter             4         79            1
## 2656             559          4th Quarter             4         79           39
## 2657             569          4th Quarter             4         79   -214748340
## 2658             573          4th Quarter             4         79   -214748340
## 2659               7          1st Quarter             1          0           22
## 2660              10          1st Quarter             1          3           43
## 2661              12          1st Quarter             1          3           18
## 2662              14          1st Quarter             1          3           32
## 2663              16          1st Quarter             1          3           29
## 2664              18          1st Quarter             1          6           26
## 2665              23          1st Quarter             1          8           25
## 2666              25          1st Quarter             1          8           27
## 2667              27          1st Quarter             1          8           25
## 2668              29          1st Quarter             1          8           27
## 2669              31          1st Quarter             1          8           35
## 2670              33          1st Quarter             1          8           28
## 2671              34          1st Quarter             1         11            4
## 2672              36          1st Quarter             1         11           48
## 2673              39          1st Quarter             1         11           21
## 2674              41          1st Quarter             1         13           28
## 2675              42          1st Quarter             1         13           28
## 2676              46          1st Quarter             1         13           30
## 2677              50          1st Quarter             1         13            4
## 2678              52          1st Quarter             1         13           10
## 2679              56          1st Quarter             1         13           48
## 2680              58          1st Quarter             1         13           36
## 2681              63          1st Quarter             1         13           45
## 2682              76          1st Quarter             1         14   -214748340
## 2683              78          1st Quarter             1         14            1
## 2684              80          1st Quarter             1         14           22
## 2685              82          1st Quarter             1         14           30
## 2686              93          1st Quarter             1         17           14
## 2687              94          1st Quarter             1         17           42
## 2688              97          1st Quarter             1         20           13
## 2689              99          1st Quarter             1         20           15
## 2690             103          1st Quarter             1         21   -214748340
## 2691             104          1st Quarter             1         22   -214748340
## 2692             106          1st Quarter             1         22           35
## 2693             117          1st Quarter             1         25           42
## 2694             127          1st Quarter             1         25           32
## 2695             130          1st Quarter             1         27           28
## 2696             132          1st Quarter             1         27           18
## 2697             134          1st Quarter             1         29           18
## 2698             138          1st Quarter             1         29   -214748340
## 2699             141          1st Quarter             1         29   -214748340
## 2700             153          2nd Quarter             2         29           24
## 2701             155          2nd Quarter             2         29           44
## 2702             157          2nd Quarter             2         29           47
## 2703             159          2nd Quarter             2         31           14
## 2704             163          2nd Quarter             2         31           24
## 2705             165          2nd Quarter             2         31            2
## 2706             168          2nd Quarter             2         31           44
## 2707             169          2nd Quarter             2         33           25
## 2708             170          2nd Quarter             2         33           11
## 2709             172          2nd Quarter             2         35           30
## 2710             174          2nd Quarter             2         35           22
## 2711             182          2nd Quarter             2         35           22
## 2712             183          2nd Quarter             2         35           29
## 2713             186          2nd Quarter             2         35            2
## 2714             196          2nd Quarter             2         35            7
## 2715             198          2nd Quarter             2         35           35
## 2716             200          2nd Quarter             2         38            2
## 2717             202          2nd Quarter             2         38           48
## 2718             204          2nd Quarter             2         38            6
## 2719             206          2nd Quarter             2         38           26
## 2720             213          2nd Quarter             2         40           28
## 2721             215          2nd Quarter             2         40           19
## 2722             217          2nd Quarter             2         40           29
## 2723             223          2nd Quarter             2         40            6
## 2724             227          2nd Quarter             2         41   -214748340
## 2725             232          2nd Quarter             2         42   -214748340
## 2726             236          2nd Quarter             2         45           40
## 2727             238          2nd Quarter             2         45           28
## 2728             241          2nd Quarter             2         45           28
## 2729             245          2nd Quarter             2         46   -214748340
## 2730             246          2nd Quarter             2         47   -214748340
## 2731             247          2nd Quarter             2         47           26
## 2732             249          2nd Quarter             2         47           17
## 2733             250          2nd Quarter             2         47            2
## 2734             252          2nd Quarter             2         50           46
## 2735             256          2nd Quarter             2         50           41
## 2736             258          2nd Quarter             2         52           25
## 2737             259          2nd Quarter             2         52           32
## 2738             261          2nd Quarter             2         52            2
## 2739             263          2nd Quarter             2         52           23
## 2740             265          2nd Quarter             2         52           35
## 2741             278          3rd Quarter             3         52           17
## 2742             281          3rd Quarter             3         54           22
## 2743             282          3rd Quarter             3         54           26
## 2744             285          3rd Quarter             3         56           22
## 2745             288          3rd Quarter             3         56            6
## 2746             293          3rd Quarter             3         56   -214748340
## 2747             294          3rd Quarter             3         56   -214748340
## 2748             297          3rd Quarter             3         56   -214748340
## 2749             298          3rd Quarter             3         59           31
## 2750             303          3rd Quarter             3         62           42
## 2751             308          3rd Quarter             3         62           24
## 2752             310          3rd Quarter             3         64           24
## 2753             311          3rd Quarter             3         64           41
## 2754             315          3rd Quarter             3         64           47
## 2755             317          3rd Quarter             3         64           27
## 2756             319          3rd Quarter             3         64           19
## 2757             321          3rd Quarter             3         64           10
## 2758             333          3rd Quarter             3         64           20
## 2759             335          3rd Quarter             3         67            4
## 2760             337          3rd Quarter             3         67           10
## 2761             339          3rd Quarter             3         67           30
## 2762             346          3rd Quarter             3         67           29
## 2763             348          3rd Quarter             3         67           15
## 2764             350          3rd Quarter             3         70            1
## 2765             352          3rd Quarter             3         70           19
## 2766             354          3rd Quarter             3         70           29
## 2767             356          3rd Quarter             3         70           39
## 2768             358          3rd Quarter             3         70           15
## 2769             360          3rd Quarter             3         73            9
## 2770             371          3rd Quarter             3         73           24
## 2771             373          3rd Quarter             3         73           26
## 2772             376          3rd Quarter             3         73           47
## 2773             379          3rd Quarter             3         73           45
## 2774             384          3rd Quarter             3         74   -214748340
## 2775             385          3rd Quarter             3         75   -214748340
## 2776             390          3rd Quarter             3         76   -214748340
## 2777             391          3rd Quarter             3         76   -214748340
## 2778             395          3rd Quarter             3         76           30
## 2779             397          3rd Quarter             3         76           27
## 2780             399          3rd Quarter             3         76           45
## 2781             401          3rd Quarter             3         76           20
## 2782             405          3rd Quarter             3         76           25
## 2783             408          3rd Quarter             3         76           23
## 2784             409          3rd Quarter             3         78           26
## 2785             413          3rd Quarter             3         78   -214748340
## 2786             424          4th Quarter             4         79   -214748340
## 2787             425          4th Quarter             4         80   -214748340
## 2788             427          4th Quarter             4         82           23
## 2789             428          4th Quarter             4         82           41
## 2790             437          4th Quarter             4         83   -214748340
## 2791             443          4th Quarter             4         85           25
## 2792             445          4th Quarter             4         85           11
## 2793             447          4th Quarter             4         85           20
## 2794             450          4th Quarter             4         88           48
## 2795             452          4th Quarter             4         88           23
## 2796             454          4th Quarter             4         88           25
## 2797             456          4th Quarter             4         88           39
## 2798             460          4th Quarter             4         90           26
## 2799             464          4th Quarter             4         90           22
## 2800             466          4th Quarter             4         90           15
## 2801             468          4th Quarter             4         92           32
## 2802             477          4th Quarter             4         92            3
## 2803             479          4th Quarter             4         92           10
## 2804             481          4th Quarter             4         92           32
## 2805             485          4th Quarter             4         92           49
## 2806             487          4th Quarter             4         95           18
## 2807             494          4th Quarter             4         95           27
## 2808             498          4th Quarter             4         95           38
## 2809             500          4th Quarter             4         95           37
## 2810             510          4th Quarter             4         96   -214748340
## 2811             511          4th Quarter             4         97   -214748340
## 2812             512          4th Quarter             4         97           20
## 2813             516          4th Quarter             4         97           32
## 2814             518          4th Quarter             4         99           25
## 2815             519          4th Quarter             4         99           24
## 2816             522          4th Quarter             4        101           20
## 2817             523          4th Quarter             4        101           20
## 2818             525          4th Quarter             4        101           37
## 2819             529          4th Quarter             4        101   -214748340
## 2820             531          4th Quarter             4        101   -214748340
## 2821             532          4th Quarter             4        101           19
## 2822               7          1st Quarter             1          0           37
## 2823               9          1st Quarter             1          0           25
## 2824              11          1st Quarter             1          0            4
## 2825              13          1st Quarter             1          0           22
## 2826              15          1st Quarter             1          0           27
## 2827              17          1st Quarter             1          0           13
## 2828              23          1st Quarter             1          0            9
## 2829              26          1st Quarter             1          0           26
## 2830              29          1st Quarter             1          0           13
## 2831              32          1st Quarter             1          2           29
## 2832              34          1st Quarter             1          2           21
## 2833              36          1st Quarter             1          4           28
## 2834              38          1st Quarter             1          4            4
## 2835              40          1st Quarter             1          7           37
## 2836              42          1st Quarter             1          7           29
## 2837              44          1st Quarter             1          7           26
## 2838              46          1st Quarter             1          7           22
## 2839              48          1st Quarter             1          7           26
## 2840              50          1st Quarter             1          7           48
## 2841              52          1st Quarter             1         10            4
## 2842              63          1st Quarter             1         10            6
## 2843              65          1st Quarter             1         10           21
## 2844              67          1st Quarter             1         10           27
## 2845              68          1st Quarter             1         10           24
## 2846              72          1st Quarter             1         11   -214748340
## 2847              79          1st Quarter             1         12   -214748340
## 2848              80          1st Quarter             1         12           48
## 2849              83          1st Quarter             1         12           21
## 2850              85          1st Quarter             1         12           22
## 2851              87          1st Quarter             1         12           22
## 2852              91          1st Quarter             1         14           29
## 2853              92          1st Quarter             1         14           39
## 2854              98          1st Quarter             1         17           26
## 2855             100          1st Quarter             1         17           21
## 2856             102          1st Quarter             1         17           13
## 2857             104          1st Quarter             1         17           19
## 2858             106          1st Quarter             1         17           49
## 2859             120          2nd Quarter             2         17            1
## 2860             122          2nd Quarter             2         17           48
## 2861             124          2nd Quarter             2         17            2
## 2862             126          2nd Quarter             2         17           34
## 2863             132          2nd Quarter             2         17           22
## 2864             133          2nd Quarter             2         19           30
## 2865             141          2nd Quarter             2         20   -214748340
## 2866             142          2nd Quarter             2         20           32
## 2867             144          2nd Quarter             2         20           29
## 2868             146          2nd Quarter             2         20           18
## 2869             148          2nd Quarter             2         22           21
## 2870             149          2nd Quarter             2         22           28
## 2871             153          2nd Quarter             2         23   -214748340
## 2872             154          2nd Quarter             2         23   -214748340
## 2873             156          2nd Quarter             2         23           25
## 2874             157          2nd Quarter             2         25           32
## 2875             158          2nd Quarter             2         25            1
## 2876             160          2nd Quarter             2         25           22
## 2877             162          2nd Quarter             2         25           21
## 2878             166          2nd Quarter             2         25           28
## 2879             176          2nd Quarter             2         25           33
## 2880             180          2nd Quarter             2         25           37
## 2881             181          2nd Quarter             2         25           29
## 2882             183          2nd Quarter             2         25           14
## 2883             185          2nd Quarter             2         25           22
## 2884             186          2nd Quarter             2         25           34
## 2885             188          2nd Quarter             2         25           25
## 2886             195          2nd Quarter             2         26   -214748340
## 2887             196          2nd Quarter             2         26   -214748340
## 2888             198          2nd Quarter             2         26           16
## 2889             202          2nd Quarter             2         26            6
## 2890             209          2nd Quarter             2         26   -214748340
## 2891             210          2nd Quarter             2         26   -214748340
## 2892             217          2nd Quarter             2         26            2
## 2893             219          2nd Quarter             2         26           23
## 2894             224          2nd Quarter             2         26   -214748340
## 2895             227          2nd Quarter             2         26   -214748340
## 2896             228          2nd Quarter             2         28           27
## 2897             231          2nd Quarter             2         30           23
## 2898             233          2nd Quarter             2         30           29
## 2899             235          2nd Quarter             2         30           25
## 2900             237          2nd Quarter             2         30           22
## 2901             239          2nd Quarter             2         30           21
## 2902             247          3rd Quarter             3         32           24
## 2903             248          3rd Quarter             3         32           14
## 2904             255          3rd Quarter             3         32           12
## 2905             257          3rd Quarter             3         35            4
## 2906             259          3rd Quarter             3         35           25
## 2907             260          3rd Quarter             3         38           10
## 2908             262          3rd Quarter             3         38           47
## 2909             264          3rd Quarter             3         38           13
## 2910             267          3rd Quarter             3         38           49
## 2911             269          3rd Quarter             3         40           21
## 2912             270          3rd Quarter             3         40           23
## 2913             287          3rd Quarter             3         40           24
## 2914             272          3rd Quarter             3         40           25
## 2915             274          3rd Quarter             3         40           14
## 2916             277          3rd Quarter             3         40           44
## 2917             281          3rd Quarter             3         41   -214748340
## 2918             286          3rd Quarter             3         42   -214748340
## 2919             290          3rd Quarter             3         42            8
## 2920             292          3rd Quarter             3         42           19
## 2921             298          3rd Quarter             3         43   -214748340
## 2922             299          3rd Quarter             3         44   -214748340
## 2923             302          3rd Quarter             3         44   -214748340
## 2924             303          3rd Quarter             3         44           32
## 2925             305          3rd Quarter             3         44           29
## 2926             311          3rd Quarter             3         44           15
## 2927             313          3rd Quarter             3         44           46
## 2928             318          3rd Quarter             3         44           29
## 2929             324          3rd Quarter             3         44   -214748340
## 2930             326          3rd Quarter             3         45   -214748340
## 2931             327          3rd Quarter             3         45           34
## 2932             333          3rd Quarter             3         45           26
## 2933             336          3rd Quarter             3         45           14
## 2934             339          3rd Quarter             3         45            9
## 2935             341          3rd Quarter             3         45           26
## 2936             343          3rd Quarter             3         45           24
## 2937             345          3rd Quarter             3         45           22
## 2938             347          3rd Quarter             3         45           21
## 2939             360          3rd Quarter             3         45           12
## 2940             365          3rd Quarter             3         47           25
## 2941             367          3rd Quarter             3         47           13
## 2942             370          3rd Quarter             3         47            4
## 2943             377          4th Quarter             4         47           28
## 2944             378          4th Quarter             4         47           15
## 2945             380          4th Quarter             4         47           32
## 2946             382          4th Quarter             4         47           21
## 2947             384          4th Quarter             4         47           28
## 2948             391          4th Quarter             4         49           32
## 2949             393          4th Quarter             4         49           20
## 2950             395          4th Quarter             4         49           25
## 2951             407          4th Quarter             4         49           40
## 2952             409          4th Quarter             4         49           31
## 2953             412          4th Quarter             4         49           20
## 2954             414          4th Quarter             4         49           20
## 2955             415          4th Quarter             4         49            6
## 2956             421          4th Quarter             4         49   -214748340
## 2957             422          4th Quarter             4         49           34
## 2958             424          4th Quarter             4         51           20
## 2959             427          4th Quarter             4         51   -214748340
## 2960             434          4th Quarter             4         51           14
## 2961             437          4th Quarter             4         53           26
## 2962             439          4th Quarter             4         53           29
## 2963             441          4th Quarter             4         53           41
## 2964             442          4th Quarter             4         55           25
## 2965             444          4th Quarter             4         55           22
## 2966             450          4th Quarter             4         55           22
## 2967             452          4th Quarter             4         55            7
## 2968             460          4th Quarter             4         57           26
## 2969             461          4th Quarter             4         57           40
## 2970             463          4th Quarter             4         57           21
## 2971             465          4th Quarter             4         57           25
## 2972             467          4th Quarter             4         57           23
## 2973             469          4th Quarter             4         59           27
## 2974             471          4th Quarter             4         59           29
## 2975             472          4th Quarter             4         59           44
## 2976             487          4th Quarter             4         61           24
## 2977             488          4th Quarter             4         61           23
## 2978             492          4th Quarter             4         63           22
## 2979             494          4th Quarter             4         63           12
## 2980             498          4th Quarter             4         63           23
## 2981             500          4th Quarter             4         63           30
## 2982             502          4th Quarter             4         63           31
## 2983             503          4th Quarter             4         65           27
## 2984             506          4th Quarter             4         65   -214748340
## 2985             508          4th Quarter             4         65   -214748340
## 2986             510          4th Quarter             4         65           35
## 2987             513          4th Quarter             4         67           23
## 2988               7          1st Quarter             1          0           23
## 2989               8          1st Quarter             1          0           27
## 2990              10          1st Quarter             1          2           24
## 2991              14          1st Quarter             1          2           34
## 2992              16          1st Quarter             1          4           39
## 2993              17          1st Quarter             1          4           15
## 2994              18          1st Quarter             1          4           39
## 2995              20          1st Quarter             1          4           35
## 2996              23          1st Quarter             1          4            9
## 2997              25          1st Quarter             1          4            4
## 2998              27          1st Quarter             1          4           31
## 2999              29          1st Quarter             1          6           22
## 3000              31          1st Quarter             1          6           38
## 3001              33          1st Quarter             1          8           31
## 3002              39          1st Quarter             1          8           30
## 3003              40          1st Quarter             1          8           14
## 3004              44          1st Quarter             1          8   -214748340
## 3005              45          1st Quarter             1          8   -214748340
## 3006              46          1st Quarter             1          8           23
## 3007              48          1st Quarter             1          8           27
## 3008              50          1st Quarter             1         10           33
## 3009              51          1st Quarter             1         10           10
## 3010              53          1st Quarter             1         10           29
## 3011              63          1st Quarter             1         12           25
## 3012              65          1st Quarter             1         12           28
## 3013              67          1st Quarter             1         12           40
## 3014              69          1st Quarter             1         14           27
## 3015              71          1st Quarter             1         14           22
## 3016              74          1st Quarter             1         16           22
## 3017              76          1st Quarter             1         16           18
## 3018              80          1st Quarter             1         16   -214748340
## 3019              86          1st Quarter             1         17   -214748340
## 3020              87          1st Quarter             1         17           25
## 3021              90          1st Quarter             1         19           17
## 3022              91          1st Quarter             1         19           15
## 3023              93          1st Quarter             1         21           33
## 3024              95          1st Quarter             1         21           34
## 3025              97          1st Quarter             1         23            8
## 3026              98          1st Quarter             1         23           32
## 3027             102          1st Quarter             1         24   -214748340
## 3028             105          1st Quarter             1         25   -214748340
## 3029             108          1st Quarter             1         25   -214748340
## 3030             114          1st Quarter             1         25   -214748340
##      coordinate_y scoring_play clock_display_value team_id type_id
## 1               2        FALSE                9:37       5     110
## 2              13        FALSE                9:16       9     131
## 3              20         TRUE                8:47       9      92
## 4               2        FALSE                8:23       5     130
## 5              25        FALSE                8:18       5      92
## 6              22         TRUE                8:05       9      92
## 7               8        FALSE                7:51       5      92
## 8               3         TRUE                7:31       5      95
## 9              13         TRUE                7:12       9      92
## 10             17         TRUE                6:58       5     131
## 11     -214748365         TRUE                6:36       9      98
## 12     -214748365         TRUE                6:36       9      99
## 13             16        FALSE                6:26       5      92
## 14              4         TRUE                6:22       5     114
## 15             19        FALSE                6:08       9     132
## 16              9         TRUE                6:02       5     131
## 17              2         TRUE                5:42       5     110
## 18             21        FALSE                5:28       9     131
## 19              3         TRUE                5:18       5      95
## 20             16         TRUE                5:04       9      92
## 21              7        FALSE                4:38       5      92
## 22              3         TRUE                4:30       9      95
## 23              3        FALSE                4:12       5     120
## 24             20        FALSE                4:00       9      92
## 25             18        FALSE                3:51       5      92
## 26             23         TRUE                3:41       9      92
## 27             19        FALSE                3:26       5      92
## 28     -214748365         TRUE                3:19       9      98
## 29     -214748365         TRUE                3:19       9      99
## 30              8        FALSE                3:06       5      92
## 31              3        FALSE                3:04       5      95
## 32              2        FALSE                3:03       5     125
## 33             23        FALSE                2:56       5      92
## 34             18         TRUE                2:49       9      92
## 35             22        FALSE                2:33       5      92
## 36              3         TRUE                2:27       5      95
## 37             18        FALSE                2:17       9      92
## 38              3        FALSE                2:03       5     110
## 39     -214748365         TRUE                2:03       5      98
## 40     -214748365         TRUE                2:03       5      99
## 41             22         TRUE                1:42       5      92
## 42             25         TRUE                1:30       9      92
## 43              3        FALSE                1:14       5     110
## 44             23        FALSE                1:07       9      92
## 45              5         TRUE                53.8       5      95
## 46             23        FALSE                39.8       9      92
## 47             19        FALSE                30.4       5      92
## 48             22         TRUE                9:27       5      92
## 49             16        FALSE                8:57       5      92
## 50             23        FALSE                8:38       9      92
## 51              3         TRUE                8:27       5     110
## 52     -214748365         TRUE                8:27       5      97
## 53              4        FALSE                8:02       5      95
## 54              3         TRUE                7:58       5      95
## 55     -214748365         TRUE                7:46       9      98
## 56     -214748365         TRUE                7:46       9      99
## 57              4        FALSE                7:22       5      93
## 58              4         TRUE                7:07       9     110
## 59             20        FALSE                6:55       5     132
## 60             16        FALSE                6:46       9     131
## 61              3        FALSE                6:39       5     110
## 62             22         TRUE                6:30       9      92
## 63             13         TRUE                6:17       5     131
## 64             25        FALSE                6:06       9      92
## 65              5        FALSE                5:52       5      92
## 66              9        FALSE                5:33       9     130
## 67              5        FALSE                5:29       9     114
## 68             15         TRUE                5:19       5      92
## 69             10        FALSE                5:03       9     130
## 70              4        FALSE                4:52       5      92
## 71              8         TRUE                4:35       9      92
## 72             13        FALSE                3:59       9     131
## 73             15         TRUE                3:50       5      92
## 74              9        FALSE                3:38       9      92
## 75             18        FALSE                3:31       5     131
## 76              3         TRUE                3:22       9     141
## 77              3         TRUE                3:02       5      95
## 78              4         TRUE                2:45       9     141
## 79              4         TRUE                2:29       5     124
## 80             23        FALSE                2:14       9      92
## 81     -214748365         TRUE                2:03       5      98
## 82     -214748365         TRUE                2:03       5      99
## 83              8         TRUE                1:50       9      92
## 84             21        FALSE                1:35       5      92
## 85              3         TRUE                1:30       5      95
## 86     -214748365         TRUE                1:02       5      98
## 87     -214748365        FALSE                1:02       5      99
## 88              8        FALSE                50.1       9      92
## 89             15         TRUE                42.2       9      92
## 90              2         TRUE                31.2       5      95
## 91     -214748365         TRUE                19.0       9      98
## 92     -214748365         TRUE                19.0       9      99
## 93              5        FALSE                 1.5       5      92
## 94             21        FALSE                9:44       9      92
## 95             22         TRUE                9:37       9     133
## 96             22        FALSE                9:18       5      92
## 97              2         TRUE                9:11       9      95
## 98              7        FALSE                8:55       5     144
## 99              3        FALSE                8:52       5      95
## 100             4         TRUE                8:49       5      95
## 101             5        FALSE                8:41       9      92
## 102             4        FALSE                8:26       9     145
## 103             4        FALSE                8:02       5     114
## 104             5         TRUE                7:52       9     110
## 105             3         TRUE                7:29       5      95
## 106             3         TRUE                7:14       9     141
## 107            25        FALSE                6:58       5     132
## 108             7        FALSE                6:52       5      95
## 109             4         TRUE                6:50       5      95
## 110             7        FALSE                6:39       9     144
## 111            14        FALSE                6:19       5     131
## 112            10         TRUE                6:00       9      92
## 113            13         TRUE                5:42       5      92
## 114             3         TRUE                5:26       9     128
## 115    -214748365         TRUE                5:26       9      97
## 116             8         TRUE                5:11       5     145
## 117             2        FALSE                4:48       9     110
## 118             4         TRUE                4:43       5     141
## 119    -214748365         TRUE                4:43       5      97
## 120             3        FALSE                4:28       9     110
## 121            19        FALSE                4:06       9      92
## 122            17        FALSE                3:53       5     131
## 123             3         TRUE                3:48       5     110
## 124            10        FALSE                3:34       9      92
## 125             3        FALSE                3:25       5     110
## 126             3        FALSE                3:20       5      95
## 127            22        FALSE                3:03       9      92
## 128             4         TRUE                2:30       9     131
## 129            23        FALSE                2:20       5      92
## 130             7        FALSE                2:14       9      92
## 131             6        FALSE                1:45       5     114
## 132             3         TRUE                1:36       9      95
## 133             3         TRUE                1:17       5     128
## 134            16        FALSE                1:02       5      92
## 135            14         TRUE                44.4       9      92
## 136            11        FALSE                30.0       5      92
## 137            21        FALSE                 2.3       5      92
## 138            15         TRUE                9:15       9      92
## 139             8        FALSE                8:49       5     144
## 140             8        FALSE                8:24       5      92
## 141             4         TRUE                8:14       9     137
## 142             7        FALSE                7:42       9     130
## 143             3         TRUE                7:33       5      95
## 144    -214748365        FALSE                7:17       9      98
## 145    -214748365         TRUE                7:17       9      99
## 146            18         TRUE                7:03       5     132
## 147            24        FALSE                6:29       9      92
## 148            10         TRUE                6:11       9     131
## 149            23        FALSE                5:48       5     132
## 150            19        FALSE                5:31       9      92
## 151             0        FALSE                5:17       9      92
## 152             3        FALSE                5:06       9      95
## 153             3        FALSE                4:50       5      95
## 154             3         TRUE                4:48       5     125
## 155             4         TRUE                4:26       5     110
## 156    -214748365         TRUE                4:26       5      97
## 157            16         TRUE                4:10       5     131
## 158             3         TRUE                3:58       9     110
## 159    -214748365         TRUE                3:58       9      97
## 160             7        FALSE                3:38       5      95
## 161             3        FALSE                3:36       5      95
## 162            12         TRUE                3:20       9      92
## 163             8        FALSE                3:09       5     130
## 164             4         TRUE                3:05       5      95
## 165            21        FALSE                2:53       9      92
## 166    -214748365        FALSE                2:42       5      98
## 167    -214748365         TRUE                2:42       5      99
## 168    -214748365        FALSE                2:33       9      98
## 169    -214748365         TRUE                2:33       9      99
## 170             8         TRUE                2:22       5      95
## 171             3        FALSE                1:58       5     110
## 172             3         TRUE                1:56       5      95
## 173            14        FALSE                1:45       9      92
## 174            20         TRUE                1:32       5      92
## 175    -214748365        FALSE                1:27       9      98
## 176    -214748365         TRUE                1:27       9      99
## 177            22        FALSE                1:13       5      92
## 178             3        FALSE                58.5       9      95
## 179            21         TRUE                47.0       5      92
## 180            21         TRUE                39.7       9      92
## 181    -214748365        FALSE                30.9       5      98
## 182    -214748365         TRUE                30.9       5      99
## 183    -214748365         TRUE                21.8       9      98
## 184    -214748365         TRUE                21.8       9      99
## 185            22         TRUE                 0.4       9      92
## 186             6        FALSE                9:29      18     114
## 187            22        FALSE                9:18      20      92
## 188             2         TRUE                9:06      18     114
## 189            21        FALSE                8:44      20     131
## 190            21        FALSE                8:38      18     131
## 191            10        FALSE                8:28      20     131
## 192             0         TRUE                8:23      20     125
## 193    -214748365         TRUE                8:03      18      98
## 194    -214748365         TRUE                8:03      18      99
## 195             0         TRUE                7:28      18      95
## 196    -214748365         TRUE                7:11      20      98
## 197    -214748365         TRUE                7:11      20      99
## 198            11         TRUE                6:35      20      92
## 199             0         TRUE                6:02      18      95
## 200    -214748365         TRUE                5:46      20      98
## 201    -214748365         TRUE                5:46      20      99
## 202            23         TRUE                5:31      18      92
## 203    -214748365         TRUE                5:14      20      98
## 204    -214748365         TRUE                5:14      20      99
## 205             4        FALSE                4:57      18      92
## 206             0         TRUE                4:52      18     141
## 207            20        FALSE                4:39      20      92
## 208             5         TRUE                4:34      18     109
## 209    -214748365        FALSE                4:34      18      97
## 210             0        FALSE                3:58      18      95
## 211    -214748365         TRUE                3:52      20      98
## 212    -214748365         TRUE                3:52      20      99
## 213    -214748365        FALSE                3:37      18      98
## 214    -214748365        FALSE                3:37      18      99
## 215             2         TRUE                3:22      20     131
## 216    -214748365         TRUE                3:09      18      98
## 217    -214748365         TRUE                3:09      18      99
## 218             3        FALSE                2:55      20     131
## 219            11         TRUE                2:17      18     114
## 220            22        FALSE                2:03      20      92
## 221             1         TRUE                1:50      18      95
## 222             2        FALSE                1:08      20     110
## 223             6        FALSE                50.9      18     132
## 224    -214748365        FALSE                50.7      18      98
## 225    -214748365         TRUE                50.7      18      99
## 226             1         TRUE                32.0      20      95
## 227            21        FALSE                18.8      18      92
## 228             0        FALSE                14.2      18     125
## 229             3        FALSE                12.6      18     125
## 230            15        FALSE                 2.2      20     131
## 231    -214748365         TRUE                9:49      18      98
## 232    -214748365         TRUE                9:49      18      99
## 233            19        FALSE                9:36      20     131
## 234             0        FALSE                9:22      18      92
## 235             1         TRUE                9:04      20     109
## 236             1        FALSE                8:44      20     109
## 237            22         TRUE                8:37      18     113
## 238    -214748365         TRUE                8:07      18     100
## 239    -214748365        FALSE                8:07      18     101
## 240    -214748365         TRUE                8:07      18     102
## 241             2        FALSE                7:53      20      92
## 242            14        FALSE                7:41      18     114
## 243             0         TRUE                7:37      18     125
## 244             0         TRUE                7:30      20     144
## 245             6        FALSE                7:13      18      92
## 246             1         TRUE                7:06      20     109
## 247            -1         TRUE                6:51      18     141
## 248             1        FALSE                6:32      20     141
## 249            14         TRUE                6:04      20      92
## 250            20         TRUE                5:50      18      92
## 251            15         TRUE                5:30      20     131
## 252             0        FALSE                5:14      18      95
## 253             3        FALSE                5:06      18     114
## 254            24        FALSE                4:59      20     113
## 255             0         TRUE                4:42      18     141
## 256            18        FALSE                4:25      20      92
## 257            17        FALSE                3:51      20     146
## 258            16        FALSE                3:31      18     144
## 259             1        FALSE                3:10      20      95
## 260             0         TRUE                3:04      20     125
## 261            23        FALSE                2:54      18     131
## 262            13        FALSE                2:35      20      92
## 263             0         TRUE                1:59      18     141
## 264            20        FALSE                1:45      20      92
## 265            11        FALSE                1:30      18     131
## 266            24        FALSE                1:20      20     131
## 267             0         TRUE                1:05      18      92
## 268            18        FALSE                30.9      20     146
## 269             1         TRUE                25.0      20     110
## 270    -214748365         TRUE                 1.2      20      98
## 271    -214748365         TRUE                 1.2      20      99
## 272            12        FALSE                9:31      20      92
## 273            13        FALSE                9:21      18      92
## 274             2        FALSE                9:04      20     110
## 275            20        FALSE                8:45      20      92
## 276             2        FALSE                8:40      20     125
## 277            20         TRUE                8:34      18     146
## 278             4         TRUE                8:20      20     110
## 279    -214748365        FALSE                7:58      18      98
## 280    -214748365         TRUE                7:58      18      99
## 281             0         TRUE                7:45      20     110
## 282             2        FALSE                7:30      18     110
## 283    -214748365        FALSE                7:10      20      98
## 284    -214748365         TRUE                7:10      20      99
## 285             0         TRUE                6:44      20     110
## 286             0        FALSE                6:21      20     110
## 287            13         TRUE                5:47      18      92
## 288            -2        FALSE                5:09      18      92
## 289            21        FALSE                4:59      18      92
## 290            10        FALSE                4:51      20     131
## 291            25         TRUE                4:28      18      92
## 292            23        FALSE                4:06      20      92
## 293            26        FALSE                3:44      18      92
## 294             1        FALSE                3:23      18      95
## 295             0         TRUE                3:20      18     125
## 296            17        FALSE                3:04      20     131
## 297            22        FALSE                2:52      18      92
## 298            23        FALSE                2:40      20     131
## 299             2        FALSE                2:23      18     114
## 300             2        FALSE                2:16      18      92
## 301             0         TRUE                2:10      18     125
## 302            16         TRUE                2:00      20      92
## 303             0         TRUE                1:43      20     109
## 304             1        FALSE                1:23      18     110
## 305             0         TRUE                1:17      18     125
## 306    -214748365         TRUE                51.2      18      98
## 307    -214748365         TRUE                51.2      18      99
## 308             2         TRUE                34.5      20      92
## 309    -214748365        FALSE                23.5      18      98
## 310    -214748365         TRUE                23.5      18      99
## 311            15         TRUE                 6.4      20     131
## 312            28        FALSE                 2.5      18     131
## 313            20        FALSE                9:44      20      92
## 314             4        FALSE                9:38      20      92
## 315            17        FALSE                9:17      20      92
## 316            24        FALSE                9:09      20      92
## 317            24         TRUE                8:54      18      92
## 318    -214748365         TRUE                8:43      20      98
## 319    -214748365         TRUE                8:43      20      99
## 320             5        FALSE                8:03      20     131
## 321             2         TRUE                7:46      18      92
## 322            18        FALSE                7:34      20      92
## 323             1        FALSE                7:27      18      95
## 324            11         TRUE                7:03      18      92
## 325             2        FALSE                6:58      20     110
## 326             9        FALSE                6:36      18      92
## 327             2        FALSE                6:16      20      92
## 328    -214748365        FALSE                5:57      18      98
## 329    -214748365         TRUE                5:57      18      99
## 330             4         TRUE                5:40      20     119
## 331            11         TRUE                5:25      18      92
## 332            23         TRUE                4:49      20      92
## 333             4        FALSE                4:32      18      92
## 334             0        FALSE                4:25      20     109
## 335            25        FALSE                3:56      18     131
## 336             1        FALSE                3:34      20     110
## 337             5        FALSE                3:30      20     125
## 338             1         TRUE                3:25      18     109
## 339             1        FALSE                2:55      20     132
## 340             0         TRUE                2:47      20     110
## 341    -214748365         TRUE                2:47      20      97
## 342            27        FALSE                2:23      18      92
## 343             8         TRUE                2:08      20     144
## 344            22         TRUE                1:49      18      92
## 345            -1         TRUE                1:33      20     141
## 346            12        FALSE                1:13      18     110
## 347    -214748365         TRUE                1:09      20      98
## 348    -214748365         TRUE                1:09      20      99
## 349    -214748365         TRUE                32.9      20      98
## 350    -214748365        FALSE                32.9      20      99
## 351             2        FALSE                14.6      18      95
## 352    -214748365         TRUE                 7.9      20      98
## 353    -214748365        FALSE                 7.9      20      99
## 354            15         TRUE                9:48       8      92
## 355             5         TRUE                9:16       8     109
## 356             3        FALSE                9:05      11      92
## 357             3        FALSE                8:48       8      95
## 358             2        FALSE                8:34      11      95
## 359             3        FALSE                8:25       8      95
## 360            17        FALSE                8:16      11     131
## 361            21        FALSE                7:52       8      92
## 362             5        FALSE                7:44      11     109
## 363            17        FALSE                7:28       8      92
## 364             0         TRUE                7:22      11     109
## 365            19         TRUE                6:59       8      92
## 366             3        FALSE                6:29       8      92
## 367    -214748365         TRUE                6:23      11      98
## 368    -214748365        FALSE                6:23      11      99
## 369            20        FALSE                6:14      11      92
## 370             3        FALSE                5:56       8      95
## 371             0         TRUE                5:46      11     141
## 372             3        FALSE                5:26       8     109
## 373             3         TRUE                5:19      11      95
## 374            18        FALSE                5:02       8      92
## 375             9        FALSE                4:52      11      92
## 376            22        FALSE                4:40       8      92
## 377             6        FALSE                4:24      11      92
## 378             1        FALSE                4:18      11     141
## 379             8        FALSE                4:10       8      92
## 380            17        FALSE                4:04       8      92
## 381             3         TRUE                3:52      11     141
## 382            19        FALSE                3:32      11      92
## 383            22         TRUE                3:25       8      92
## 384             2        FALSE                3:06      11     141
## 385            12        FALSE                2:48       8     131
## 386            -1         TRUE                2:40      11      95
## 387            22        FALSE                2:19      11      92
## 388            18        FALSE                2:05       8      92
## 389            16        FALSE                1:49      11      92
## 390    -214748365        FALSE                1:16       8      98
## 391    -214748365         TRUE                1:16       8      99
## 392    -214748365         TRUE                59.9      11      98
## 393    -214748365        FALSE                59.9      11      99
## 394            20        FALSE                56.1      11      92
## 395            13        FALSE                45.6       8     131
## 396            16         TRUE                25.9      11      92
## 397             3        FALSE                 1.7       8     109
## 398             4        FALSE                9:48      11     113
## 399            12         TRUE                9:42      11      92
## 400             1         TRUE                9:20      11      95
## 401             2        FALSE                9:05       8      95
## 402            -2         TRUE                8:53      11      92
## 403            13         TRUE                8:39       8     131
## 404             9        FALSE                8:20      11     132
## 405            25        FALSE                8:08       8      92
## 406            -3        FALSE                7:57      11      92
## 407             0        FALSE                7:49      11      92
## 408             2         TRUE                7:30       8      95
## 409             7        FALSE                7:17      11      92
## 410    -214748365         TRUE                7:12       8      98
## 411    -214748365         TRUE                7:12       8      99
## 412            27        FALSE                6:34       8      92
## 413             3         TRUE                6:19      11      95
## 414            17        FALSE                6:05       8     131
## 415             0         TRUE                5:57      11     109
## 416            12         TRUE                5:34       8     131
## 417            -2         TRUE                5:17      11      92
## 418             9        FALSE                4:54       8     109
## 419             4         TRUE                4:39      11     110
## 420             1         TRUE                4:25       8     110
## 421            22        FALSE                3:50       8      92
## 422            20        FALSE                3:24      11      92
## 423            21        FALSE                3:12       8      92
## 424             0        FALSE                2:54      11     110
## 425            15        FALSE                2:40       8      92
## 426             2         TRUE                2:34       8     110
## 427             8        FALSE                1:54       8      92
## 428             3        FALSE                1:34      11      92
## 429             0        FALSE                1:28       8      92
## 430             2         TRUE                1:23       8     125
## 431            -1         TRUE                1:07      11      95
## 432            19        FALSE                51.9       8      92
## 433            20        FALSE                43.5      11      92
## 434            15        FALSE                20.2       8     132
## 435             3        FALSE                 1.5      11      95
## 436             0         TRUE                 0.0      11      94
## 437             2         TRUE                9:40      11      95
## 438            21         TRUE                9:25       8      92
## 439             2        FALSE                9:08      11     110
## 440            21         TRUE                8:51       8      92
## 441    -214748365         TRUE                8:30      11      98
## 442    -214748365         TRUE                8:30      11      99
## 443            22        FALSE                8:22       8      92
## 444            20         TRUE                8:16       8      92
## 445             2         TRUE                8:01      11     110
## 446            18        FALSE                7:36      11      92
## 447    -214748365         TRUE                7:32       8      98
## 448    -214748365         TRUE                7:32       8      99
## 449            18        FALSE                7:07      11     131
## 450            15         TRUE                6:56       8      92
## 451             2        FALSE                6:22      11     141
## 452             0         TRUE                6:13       8     141
## 453            11        FALSE                5:53      11      92
## 454            13         TRUE                5:46       8     131
## 455             2         TRUE                5:27      11     130
## 456    -214748365         TRUE                5:04      11      98
## 457    -214748365        FALSE                5:04      11      99
## 458             8         TRUE                4:53      11     113
## 459             3         TRUE                4:34       8     110
## 460    -214748365         TRUE                4:34       8      97
## 461            24         TRUE                4:16      11     132
## 462            13        FALSE                3:59       8      92
## 463             1         TRUE                3:56       8     141
## 464    -214748365        FALSE                3:56       8      97
## 465            26         TRUE                3:38      11      92
## 466             2         TRUE                3:21       8     147
## 467             4        FALSE                2:54      11      92
## 468             8        FALSE                2:48      11      92
## 469    -214748365        FALSE                2:48      11      98
## 470    -214748365         TRUE                2:48      11      99
## 471            18         TRUE                2:34       8      92
## 472             1        FALSE                2:15      11      95
## 473            20        FALSE                2:03       8      92
## 474            10        FALSE                1:41      11     137
## 475    -214748365         TRUE                1:30       8      98
## 476    -214748365         TRUE                1:30       8      99
## 477             2         TRUE                1:22      11     111
## 478             3        FALSE                1:10       8      92
## 479    -214748365         TRUE                1:09      11      98
## 480    -214748365        FALSE                1:09      11      99
## 481             1         TRUE                46.9      11      95
## 482             2         TRUE                32.8       8     110
## 483            10        FALSE                16.1      11      92
## 484             2        FALSE                9:43       8      95
## 485             3        FALSE                9:34      11     110
## 486             6        FALSE                9:15       8      92
## 487            17         TRUE                9:09       8      92
## 488    -214748365         TRUE                8:51      11      98
## 489    -214748365         TRUE                8:51      11      99
## 490             3         TRUE                8:34      11     110
## 491             3         TRUE                8:15      11      95
## 492             4        FALSE                7:54       8     114
## 493             5        FALSE                7:49      11     110
## 494            23        FALSE                7:36       8      92
## 495             8        FALSE                7:24      11     110
## 496             0         TRUE                7:18      11      94
## 497            17        FALSE                7:00       8      92
## 498            10         TRUE                6:58       8      92
## 499             0        FALSE                6:40      11      92
## 500             7        FALSE                6:32       8     110
## 501             2        FALSE                6:26      11      95
## 502             0        FALSE                6:20       8     110
## 503             6         TRUE                6:18       8      92
## 504             4         TRUE                5:49      11     110
## 505             0        FALSE                5:34       8      95
## 506             7         TRUE                5:31       8      92
## 507    -214748365         TRUE                5:20       8      98
## 508    -214748365         TRUE                5:20       8      99
## 509             8        FALSE                5:06      11     113
## 510            12        FALSE                4:50      11     113
## 511            23        FALSE                4:31       8      92
## 512             1         TRUE                4:13      11     111
## 513            10         TRUE                3:52       8     113
## 514    -214748365         TRUE                3:39      11      98
## 515    -214748365        FALSE                3:39      11      99
## 516             1        FALSE                3:22       8      95
## 517            25        FALSE                3:05      11      92
## 518            11         TRUE                2:54       8     131
## 519             2        FALSE                2:38      11      92
## 520             2        FALSE                2:26       8     113
## 521             0         TRUE                2:21      11      95
## 522    -214748365        FALSE                2:21      11      97
## 523             0         TRUE                2:00       8      95
## 524            14        FALSE                1:38      11      92
## 525            21        FALSE                1:25      11      92
## 526    -214748365         TRUE                1:17       8      98
## 527    -214748365         TRUE                1:17       8      99
## 528             0         TRUE                56.8      11      95
## 529             0        FALSE                46.5       8     141
## 530            -2         TRUE                42.6       8     125
## 531    -214748365        FALSE                31.4      11      98
## 532    -214748365         TRUE                31.4      11      99
## 533            24         TRUE                 1.1      11      92
## 534             3         TRUE                9:45       6     141
## 535            19        FALSE                9:12       6      92
## 536            15        FALSE                9:00       3     131
## 537            23        FALSE                8:50       6      92
## 538            11         TRUE                8:23       6     131
## 539            17        FALSE                7:55       6     113
## 540            20         TRUE                7:46       3      92
## 541            21         TRUE                7:33       6      92
## 542             2         TRUE                7:13       3     114
## 543            19         TRUE                7:01       6      92
## 544            19        FALSE                6:49       3     131
## 545            24         TRUE                6:38       6      92
## 546             1        FALSE                5:59       6      92
## 547            11        FALSE                5:42       6     131
## 548            13         TRUE                5:31       6     121
## 549             2         TRUE                5:12       3     141
## 550    -214748365        FALSE                5:06       6      98
## 551    -214748365         TRUE                5:06       6      99
## 552             2         TRUE                4:48       6     113
## 553            21        FALSE                3:58       3      92
## 554             6         TRUE                3:42       3     120
## 555             2         TRUE                3:30       6     110
## 556            10         TRUE                3:19       3      92
## 557             3        FALSE                3:01       6      92
## 558            12        FALSE                2:55       6      92
## 559             4         TRUE                2:47       3      95
## 560    -214748365         TRUE                2:47       3      97
## 561            13        FALSE                2:33       6      92
## 562            17         TRUE                2:27       3      92
## 563            19        FALSE                2:19       6      92
## 564             7        FALSE                1:56       6      92
## 565             2         TRUE                1:53       6     125
## 566            22         TRUE                1:29       6      92
## 567             2         TRUE                39.1       3     110
## 568    -214748365         TRUE                27.7       6      98
## 569    -214748365         TRUE                27.7       6      99
## 570            29        FALSE                 2.5       6      92
## 571             3         TRUE                 1.7       6     125
## 572            52        FALSE                 0.0       3      92
## 573    -214748365         TRUE                9:49       3      97
## 574             1         TRUE                9:49       3     110
## 575    -214748365         TRUE                9:36       3      98
## 576    -214748365         TRUE                9:36       3      99
## 577            19        FALSE                9:21       6      92
## 578    -214748365         TRUE                9:07       3     100
## 579    -214748365         TRUE                9:07       3     101
## 580    -214748365         TRUE                9:07       3     102
## 581             3        FALSE                8:36       6      95
## 582             3         TRUE                8:34       6     125
## 583    -214748365         TRUE                8:29       3      98
## 584    -214748365         TRUE                8:29       3      99
## 585             2         TRUE                8:16       6     141
## 586             9        FALSE                7:42       6      92
## 587            21        FALSE                7:35       3      92
## 588             9        FALSE                7:19       6      92
## 589             3        FALSE                7:06       6      95
## 590             2        FALSE                6:54       6      95
## 591             7        FALSE                6:52       6      92
## 592            19         TRUE                6:42       3      92
## 593    -214748365         TRUE                6:27       6      98
## 594    -214748365         TRUE                6:27       6      99
## 595             4        FALSE                6:16       3      92
## 596             8         TRUE                6:03       3      92
## 597             0        FALSE                5:24       3      92
## 598             3        FALSE                5:07       6     141
## 599            14         TRUE                4:55       3     131
## 600             2         TRUE                4:44       6     110
## 601            25        FALSE                4:28       3      92
## 602            11        FALSE                4:06       6      92
## 603             9        FALSE                3:38       6      92
## 604             2         TRUE                3:27       3     141
## 605    -214748365        FALSE                3:20       6      98
## 606    -214748365         TRUE                3:20       6      99
## 607            11        FALSE                3:04       3      92
## 608            10        FALSE                2:40       6     114
## 609            11         TRUE                2:26       3     131
## 610            18        FALSE                2:08       6      92
## 611            21        FALSE                1:55       3      92
## 612            20         TRUE                1:48       6     146
## 613    -214748365         TRUE                1:38       3      98
## 614    -214748365        FALSE                1:38       3      99
## 615    -214748365        FALSE                1:22       6      98
## 616    -214748365        FALSE                1:22       6      99
## 617             1         TRUE                1:08       6     109
## 618            15         TRUE                53.8       3     132
## 619             1        FALSE                40.2       6     129
## 620            19        FALSE                 2.4       6      92
## 621             3        FALSE                9:31       6     131
## 622            16        FALSE                9:12       3     131
## 623             2        FALSE                9:05       3     110
## 624            16        FALSE                8:49       6      92
## 625            16         TRUE                8:38       3     146
## 626             4         TRUE                8:20       6     136
## 627             4        FALSE                8:07       3     128
## 628            12         TRUE                7:43       3     131
## 629            15        FALSE                7:33       6      92
## 630             3         TRUE                7:28       3     109
## 631    -214748365         TRUE                7:28       3      97
## 632             2        FALSE                7:11       6     110
## 633             2         TRUE                7:09       6     125
## 634    -214748365        FALSE                6:51       6      98
## 635    -214748365         TRUE                6:51       6      99
## 636             3         TRUE                6:36       3      92
## 637            26         TRUE                6:26       6      92
## 638            20         TRUE                6:13       3      92
## 639             4         TRUE                5:54       3     109
## 640            17        FALSE                5:40       6     131
## 641    -214748365         TRUE                5:08       3      98
## 642    -214748365         TRUE                5:08       3      99
## 643             2         TRUE                4:44       3     109
## 644            14        FALSE                4:35       6     131
## 645            -1        FALSE                4:11       6      92
## 646            19        FALSE                4:05       3      92
## 647    -214748365        FALSE                4:00       3      98
## 648    -214748365         TRUE                4:00       3      99
## 649            20         TRUE                3:42       6      92
## 650             3         TRUE                2:56       6     110
## 651            23        FALSE                2:33       3      92
## 652             7         TRUE                2:25       3      92
## 653             9         TRUE                2:08       6      92
## 654             8        FALSE                1:45       3      92
## 655            21         TRUE                1:19       6      92
## 656             9        FALSE                55.3       3      92
## 657             3        FALSE                46.8       3     110
## 658             1         TRUE                44.8       3     125
## 659             0        FALSE                24.5       6      93
## 660    -214748365         TRUE                16.8       3      98
## 661    -214748365         TRUE                16.8       3      99
## 662            18        FALSE                 2.1       6      92
## 663             4         TRUE                9:41       6     137
## 664            26        FALSE                9:29       3      92
## 665            16        FALSE                8:53       3      92
## 666             3        FALSE                8:42       3      92
## 667             3         TRUE                8:27       6     141
## 668             3        FALSE                8:14       3     110
## 669            17        FALSE                8:06       6      92
## 670            19         TRUE                7:58       3      92
## 671             2        FALSE                7:36       6     110
## 672             3         TRUE                7:28       3     110
## 673    -214748365        FALSE                7:28       3      97
## 674            13         TRUE                7:15       3     131
## 675            24        FALSE                7:04       6      92
## 676    -214748365        FALSE                6:51       3     103
## 677             2         TRUE                6:44       3     141
## 678            16        FALSE                6:34       6      92
## 679             3        FALSE                6:29       6      95
## 680             3        FALSE                6:19       3     110
## 681             2        FALSE                6:03       6      95
## 682             2         TRUE                5:44       3     141
## 683            21        FALSE                5:23       6      92
## 684             3        FALSE                5:03       3     110
## 685            20        FALSE                4:54       6      92
## 686            22        FALSE                4:41       3      92
## 687             1         TRUE                4:30       3      95
## 688             4        FALSE                4:11       6      95
## 689            15        FALSE                3:52       3      92
## 690             5         TRUE                3:32       6      92
## 691    -214748365         TRUE                3:07       3      98
## 692    -214748365         TRUE                3:07       3      99
## 693    -214748365        FALSE                2:54       6      98
## 694    -214748365         TRUE                2:54       6      99
## 695             3        FALSE                2:38       3     110
## 696             1        FALSE                2:30       3      92
## 697            13        FALSE                2:21       6      92
## 698            13         TRUE                2:06       3     131
## 699            19        FALSE                1:55       6      92
## 700             1         TRUE                1:53       6     112
## 701            12        FALSE                1:38       3      92
## 702            19        FALSE                1:29       6      92
## 703            24         TRUE                1:09       3     132
## 704            20        FALSE                58.9       6      92
## 705             2         TRUE                53.2       3     109
## 706            14        FALSE                40.4       6     131
## 707             4         TRUE                36.7       6     130
## 708             4        FALSE                21.2       3      95
## 709            16        FALSE                14.6       6     146
## 710             9         TRUE                 9.1       3      92
## 711            22        FALSE                 2.0       6      92
## 712            14         TRUE                9:42      16      92
## 713             3        FALSE                9:20      19      95
## 714             9        FALSE                9:02      16      92
## 715             0         TRUE                8:43      19     141
## 716            15         TRUE                8:26      16      92
## 717            24         TRUE                8:07      19      92
## 718             2         TRUE                8:01      19      95
## 719             1         TRUE                7:29      19      92
## 720             2         TRUE                7:20      19      95
## 721             3        FALSE                7:03      16     137
## 722            17        FALSE                6:53      19      92
## 723            23        FALSE                6:43      16      92
## 724            15        FALSE                6:30      19     131
## 725             1         TRUE                6:21      16      92
## 726             1         TRUE                5:51      16     128
## 727            -1        FALSE                5:26      16      92
## 728             1         TRUE                5:18      19     141
## 729             0        FALSE                4:59      16      92
## 730             5         TRUE                4:30      16     120
## 731            18        FALSE                4:10      19      92
## 732             2        FALSE                3:59      16     131
## 733             4        FALSE                3:48      19     132
## 734            11        FALSE                3:33      16      92
## 735             1         TRUE                3:12      16      95
## 736             1         TRUE                2:30      16     137
## 737             2         TRUE                2:17      19      92
## 738            26         TRUE                2:04      16      92
## 739            24         TRUE                1:44      19      92
## 740            24        FALSE                1:27      16      92
## 741             2        FALSE                1:05      19     130
## 742             1        FALSE                43.6      16     110
## 743             3         TRUE                38.3      19     142
## 744            21        FALSE                16.1      16      92
## 745             8        FALSE                 1.1      19     144
## 746            -1        FALSE                9:37      16      92
## 747    -214748365         TRUE                9:35      16      98
## 748    -214748365         TRUE                9:35      16      99
## 749             9        FALSE                9:19      19     131
## 750             3         TRUE                9:05      19     141
## 751             5        FALSE                8:55      16     134
## 752             2         TRUE                8:39      19     141
## 753    -214748365        FALSE                8:23      16      98
## 754    -214748365         TRUE                8:23      16      99
## 755            15         TRUE                8:03      19      92
## 756            26        FALSE                7:51      16      92
## 757             3        FALSE                7:42      19     130
## 758             3        FALSE                7:23      16     120
## 759             3        FALSE                7:21      16      95
## 760             4        FALSE                7:13      19     124
## 761             7        FALSE                7:07      16     119
## 762             1         TRUE                7:06      16     125
## 763    -214748365         TRUE                7:06      16      97
## 764    -214748365         TRUE                6:49      19      98
## 765    -214748365         TRUE                6:49      19      99
## 766    -214748365         TRUE                6:18      19      98
## 767    -214748365         TRUE                6:18      19      99
## 768             6        FALSE                5:54      16     144
## 769            10        FALSE                5:36      19      92
## 770            21        FALSE                5:21      16      92
## 771             3        FALSE                5:13      19     110
## 772    -214748365         TRUE                5:13      19      98
## 773    -214748365         TRUE                5:13      19      99
## 774             1        FALSE                4:51      16     110
## 775             3         TRUE                4:46      19     109
## 776            14        FALSE                4:35      16     131
## 777             3        FALSE                4:29      16      92
## 778             6        FALSE                4:17      19      95
## 779            25         TRUE                3:56      19      92
## 780    -214748365         TRUE                3:49      16      98
## 781    -214748365         TRUE                3:49      16      99
## 782    -214748365         TRUE                3:24      19      98
## 783    -214748365        FALSE                3:24      19      99
## 784            13        FALSE                3:00      16     121
## 785    -214748365         TRUE                2:52      19      98
## 786    -214748365         TRUE                2:52      19      99
## 787             2        FALSE                2:35      16      95
## 788             8        FALSE                2:22      19     130
## 789            26        FALSE                2:13      16      92
## 790            15        FALSE                2:01      19     131
## 791             8        FALSE                1:48      16     120
## 792             3        FALSE                1:32      19     120
## 793             8        FALSE                1:21      16     130
## 794    -214748365        FALSE                1:17      16      98
## 795    -214748365         TRUE                1:17      16      99
## 796            15        FALSE                56.9      19      92
## 797             9        FALSE                37.1      19     112
## 798             3        FALSE                27.8      16     110
## 799             2         TRUE                23.2      19     109
## 800    -214748365         TRUE                23.2      19      97
## 801    -214748365         TRUE                 2.8      16      98
## 802    -214748365         TRUE                 2.8      16      99
## 803            16        FALSE                 0.1      19      92
## 804             2         TRUE                9:40      16     114
## 805            13        FALSE                9:07      19      92
## 806            25        FALSE                9:04      19      92
## 807            25        FALSE                8:52      16      92
## 808             2         TRUE                8:49      16     125
## 809            21        FALSE                8:30      19      92
## 810            15        FALSE                8:06      16     131
## 811             3         TRUE                7:48      16     109
## 812    -214748365        FALSE                7:19      19      98
## 813    -214748365         TRUE                7:19      19      99
## 814            23        FALSE                7:06      16      92
## 815             6        FALSE                6:41      19     141
## 816             0        FALSE                6:38      19      92
## 817             1        FALSE                6:11      19      95
## 818            25        FALSE                6:00      16      92
## 819            28        FALSE                5:36      16      92
## 820            25        FALSE                5:27      16      92
## 821             3        FALSE                5:23      16      95
## 822    -214748365         TRUE                5:17      19      98
## 823    -214748365         TRUE                5:17      19      99
## 824            19        FALSE                5:02      16      92
## 825             3        FALSE                4:54      19     144
## 826    -214748365         TRUE                4:54      19      98
## 827    -214748365         TRUE                4:54      19      99
## 828             6        FALSE                4:34      16     119
## 829             3         TRUE                3:53      16      95
## 830            23        FALSE                3:23      19      92
## 831            17        FALSE                2:46      16     131
## 832             0        FALSE                2:12      16      92
## 833            10        FALSE                2:03      19     131
## 834             3         TRUE                1:53      16     112
## 835            -1         TRUE                1:29      19      92
## 836             5        FALSE                1:05      16     137
## 837            21         TRUE                57.0      19      92
## 838            20        FALSE                48.6      16     131
## 839            23        FALSE                38.1      19     131
## 840             7        FALSE                11.7      16     144
## 841            13        FALSE                 3.2      16      92
## 842             3         TRUE                9:46      19     114
## 843            21        FALSE                9:28      16      92
## 844             1         TRUE                9:09      19      95
## 845             3         TRUE                8:55      16     131
## 846            19        FALSE                8:32      19     131
## 847            22        FALSE                8:23      16     131
## 848             4        FALSE                7:56      16      95
## 849             3         TRUE                7:55      16      95
## 850            14        FALSE                7:36      19      92
## 851             0         TRUE                7:21      19     109
## 852             2         TRUE                6:59      16      95
## 853             8        FALSE                6:46      19     114
## 854             1        FALSE                6:27      16      92
## 855            16        FALSE                6:10      19     131
## 856            26        FALSE                6:00      16      92
## 857    -214748365         TRUE                5:40      19      98
## 858    -214748365         TRUE                5:40      19      99
## 859            15        FALSE                5:19      16      92
## 860            27        FALSE                4:56      19      92
## 861    -214748365         TRUE                4:46      16      98
## 862    -214748365         TRUE                4:46      16      99
## 863             1         TRUE                4:28      19     141
## 864    -214748365         TRUE                4:18      16      98
## 865    -214748365         TRUE                4:18      16      99
## 866             1         TRUE                3:19      19      95
## 867            21        FALSE                2:55      16      92
## 868            13        FALSE                2:38      19     137
## 869            11        FALSE                2:24      16     131
## 870    -214748365        FALSE                2:13      19      98
## 871    -214748365         TRUE                2:13      19      99
## 872            22         TRUE                2:03      16      92
## 873             8        FALSE                1:47      19      92
## 874    -214748365         TRUE                1:38      16      98
## 875    -214748365         TRUE                1:38      16      99
## 876             4        FALSE                1:27      19      95
## 877             5        FALSE                1:09      16     114
## 878             1        FALSE                46.9      19      92
## 879             1        FALSE                29.4      16      92
## 880             5        FALSE                20.2      16     119
## 881            16        FALSE                13.7      16     131
## 882    -214748365        FALSE                11.9      16      98
## 883    -214748365         TRUE                11.9      16      99
## 884             5        FALSE                9:44      17      92
## 885    -214748365         TRUE                9:36      17      98
## 886    -214748365         TRUE                9:36      17      99
## 887            21        FALSE                9:26      14      92
## 888            21        FALSE                9:07      17      92
## 889            19         TRUE                8:54      17      92
## 890             5        FALSE                8:31      14      95
## 891             7         TRUE                8:23      17      95
## 892             2         TRUE                8:12      14      92
## 893            10        FALSE                7:57      17      92
## 894            15        FALSE                7:49      14      92
## 895             2        FALSE                7:45      14      95
## 896             0         TRUE                7:38      14      95
## 897            12        FALSE                7:22      17      92
## 898            11        FALSE                7:10      14      92
## 899            10         TRUE                7:04      17      92
## 900    -214748365         TRUE                6:47      14      98
## 901    -214748365         TRUE                6:47      14      99
## 902            19         TRUE                6:35      17      92
## 903            25        FALSE                6:24      14      92
## 904            19        FALSE                6:12      17      92
## 905            10        FALSE                6:01      14      92
## 906            10         TRUE                5:51      17     122
## 907            12         TRUE                5:32      17      95
## 908             8        FALSE                5:18      14      93
## 909             1         TRUE                5:03      14      95
## 910            18         TRUE                4:46      17      92
## 911            19         TRUE                4:34      14     131
## 912             0        FALSE                4:14      17      92
## 913             3         TRUE                4:05      14      93
## 914             2         TRUE                3:37      17     122
## 915             1         TRUE                3:23      14     110
## 916            12        FALSE                3:04      17      92
## 917             2         TRUE                3:02      17      95
## 918    -214748365         TRUE                3:02      17      97
## 919             1         TRUE                2:50      14     110
## 920             1        FALSE                2:34      17     114
## 921            11         TRUE                2:11      14      92
## 922             2         TRUE                1:56      17     132
## 923             4         TRUE                1:39      14     136
## 924             7         TRUE                1:14      14     132
## 925             3        FALSE                58.3      17      92
## 926            19        FALSE                47.6      17      92
## 927             1         TRUE                27.6      14      95
## 928            12         TRUE                13.0      17      92
## 929            12         TRUE                 0.0      14     122
## 930            20        FALSE                9:24      17      92
## 931             1         TRUE                9:15      14      92
## 932             0        FALSE                8:54      17      93
## 933            11        FALSE                8:31      17      92
## 934             2         TRUE                8:26      17      95
## 935             2         TRUE                8:03      14      92
## 936    -214748365         TRUE                8:03      14      97
## 937            16        FALSE                7:44      17      92
## 938            20        FALSE                7:34      14      92
## 939             2        FALSE                7:21      17      95
## 940             4        FALSE                7:20      17      95
## 941    -214748365        FALSE                7:14      14      98
## 942    -214748365         TRUE                7:14      14      99
## 943             3        FALSE                6:59      17      95
## 944             5        FALSE                6:46      14      92
## 945             7        FALSE                6:43      14      92
## 946             1         TRUE                6:33      17      95
## 947            15         TRUE                6:12      14     132
## 948             1        FALSE                5:57      17      92
## 949            24         TRUE                5:48      14      92
## 950    -214748365         TRUE                5:35      17      98
## 951    -214748365         TRUE                5:35      17      99
## 952             3        FALSE                5:25      14      92
## 953             2        FALSE                5:01      17      92
## 954            24        FALSE                4:53      14      92
## 955             7        FALSE                4:42      17      92
## 956    -214748365        FALSE                4:29      14      98
## 957    -214748365         TRUE                4:29      14      99
## 958             2        FALSE                4:14      17     131
## 959            17        FALSE                3:51      17      92
## 960            20         TRUE                3:41      14      92
## 961            17        FALSE                3:22      17      92
## 962            20         TRUE                3:04      14      92
## 963             4         TRUE                2:45      17      92
## 964    -214748365        FALSE                2:45      17      97
## 965             0         TRUE                2:24      17      95
## 966            21        FALSE                2:15      14      92
## 967             7         TRUE                2:03      17     113
## 968             6        FALSE                1:47      14      92
## 969             8        FALSE                1:43      17      92
## 970            19        FALSE                1:30      14      92
## 971             2        FALSE                1:22      17     110
## 972             2         TRUE                1:07      17      95
## 973             3        FALSE                30.3      17      95
## 974            16         TRUE                24.2      14      92
## 975            16         TRUE                9:45      14      92
## 976             8        FALSE                9:26      17      92
## 977            22        FALSE                9:13      14      92
## 978             0        FALSE                8:57      17      92
## 979             2         TRUE                8:45      14     114
## 980             1         TRUE                8:26      14      95
## 981            20        FALSE                8:15      17      92
## 982            10         TRUE                8:01      14     132
## 983             3        FALSE                7:43      17      92
## 984            25        FALSE                7:32      14      92
## 985             8        FALSE                7:19      17      92
## 986             2        FALSE                7:02      14     122
## 987             9         TRUE                6:46      17      92
## 988             9         TRUE                6:26      14     123
## 989             6        FALSE                6:01      17      92
## 990             2         TRUE                5:41      17      92
## 991             4        FALSE                5:14      14      92
## 992            18         TRUE                5:08      17     131
## 993            23        FALSE                5:00      14      92
## 994    -214748365         TRUE                4:41      17      98
## 995    -214748365         TRUE                4:41      17      99
## 996            11         TRUE                4:15      14     132
## 997    -214748365         TRUE                3:56      14      98
## 998    -214748365         TRUE                3:56      14      99
## 999             1         TRUE                3:45      17     141
## 1000           21         TRUE                3:10      17      92
## 1001            1         TRUE                2:47      14     141
## 1002           25        FALSE                2:34      17      92
## 1003            3        FALSE                2:10      17     109
## 1004            2         TRUE                1:54      14      92
## 1005           19        FALSE                1:42      17      92
## 1006   -214748365         TRUE                1:34      14      98
## 1007   -214748365         TRUE                1:34      14      99
## 1008           19        FALSE                1:17      17      92
## 1009           19        FALSE                1:06      14      92
## 1010           20        FALSE                57.5      17      92
## 1011            2        FALSE                47.6      14     110
## 1012            1         TRUE                40.6      17      95
## 1013           25        FALSE                30.8      14      92
## 1014           19         TRUE                13.2      17      92
## 1015   -214748365        FALSE                 0.5      14      98
## 1016   -214748365        FALSE                 0.5      14      99
## 1017            1         TRUE                9:46      17      95
## 1018            2        FALSE                9:31      14      92
## 1019   -214748365         TRUE                9:09      17      98
## 1020   -214748365         TRUE                9:09      17      99
## 1021            1         TRUE                8:59      14      95
## 1022           22        FALSE                8:43      17      92
## 1023           12         TRUE                8:39      17      92
## 1024            4        FALSE                8:21      14      92
## 1025            1        FALSE                8:11      17      95
## 1026   -214748365         TRUE                8:05      14      98
## 1027   -214748365         TRUE                8:05      14      99
## 1028            1        FALSE                7:48      17      92
## 1029           17        FALSE                7:40      14      92
## 1030            2         TRUE                7:33      14     110
## 1031            1         TRUE                7:24      17      92
## 1032            1         TRUE                7:13      17     109
## 1033            7         TRUE                6:52      14      92
## 1034            0         TRUE                6:40      17     110
## 1035            1         TRUE                6:21      14      95
## 1036   -214748365         TRUE                6:09      17      98
## 1037   -214748365        FALSE                6:09      17      99
## 1038           25        FALSE                5:59      14      92
## 1039            8        FALSE                5:50      17     114
## 1040            6        FALSE                5:32      14     110
## 1041           28         TRUE                5:18      17      92
## 1042           19         TRUE                4:59      14      92
## 1043            1         TRUE                4:41      17      92
## 1044           13        FALSE                4:26      14      92
## 1045            1         TRUE                4:01      14     110
## 1046            1        FALSE                3:49      17      95
## 1047           11        FALSE                3:27      14      92
## 1048            6        FALSE                3:04      17      92
## 1049            1         TRUE                2:58      14      95
## 1050           11         TRUE                2:50      17     131
## 1051            0        FALSE                2:35      14      92
## 1052            0         TRUE                2:28      14      94
## 1053           11         TRUE                2:19      17     113
## 1054            1        FALSE                2:00      14      92
## 1055           26        FALSE                1:53      14      92
## 1056            3        FALSE                1:44      17     109
## 1057           -1         TRUE                1:27      14      92
## 1058            2         TRUE                1:17      17      95
## 1059            5        FALSE                59.9      14      92
## 1060            2         TRUE                52.5      17      95
## 1061            7        FALSE                32.1      14      92
## 1062            9        FALSE                26.1      17     113
## 1063           14         TRUE                 4.2      14      92
## 1064           24        FALSE                9:47       5      92
## 1065            5        FALSE                9:32       9     132
## 1066            2        FALSE                9:17       5      92
## 1067   -214748365         TRUE                9:05       9      98
## 1068   -214748365         TRUE                9:05       9      99
## 1069           15        FALSE                8:54       5      92
## 1070            1         TRUE                8:38       9     110
## 1071   -214748365         TRUE                8:38       9      97
## 1072            2        FALSE                8:30       5     128
## 1073            1         TRUE                8:29       5      92
## 1074           21        FALSE                8:12       9      92
## 1075            6         TRUE                8:02       5     133
## 1076           25        FALSE                7:50       9      92
## 1077            1         TRUE                7:30       5      92
## 1078           24         TRUE                7:21       9     131
## 1079   -214748365         TRUE                7:03       5      98
## 1080   -214748365         TRUE                7:03       5      99
## 1081            3         TRUE                6:50       9     141
## 1082            1         TRUE                6:34       5      95
## 1083            4         TRUE                6:26       9     110
## 1084   -214748365         TRUE                6:26       9      97
## 1085            2         TRUE                6:07       9     145
## 1086   -214748365        FALSE                5:52       5      98
## 1087   -214748365        FALSE                5:52       5      99
## 1088            0         TRUE                5:38       9      92
## 1089            2         TRUE                5:29       5     129
## 1090           24         TRUE                5:19       9     131
## 1091           19         TRUE                5:05       5      92
## 1092            4         TRUE                4:50       9      92
## 1093           21        FALSE                4:35       5     131
## 1094            1         TRUE                4:27       9     109
## 1095           20        FALSE                3:57       9      92
## 1096   -214748365        FALSE                3:38       5      98
## 1097   -214748365        FALSE                3:38       5      99
## 1098   -214748365        FALSE                3:36       5      98
## 1099   -214748365         TRUE                3:36       5      99
## 1100            1        FALSE                3:09       5     110
## 1101           13        FALSE                2:49       9     132
## 1102           24        FALSE                2:37       5      92
## 1103   -214748365         TRUE                2:24       9      98
## 1104   -214748365         TRUE                2:24       9      99
## 1105            3        FALSE                2:09       5      92
## 1106           19         TRUE                1:56       9     131
## 1107           16        FALSE                1:21       9     131
## 1108            6        FALSE                1:14       5      92
## 1109           20        FALSE                1:07       9     113
## 1110           18        FALSE                52.2       5     131
## 1111            2         TRUE                40.9       9      95
## 1112            2         TRUE                27.0       5     141
## 1113           -2        FALSE                 4.4       9     111
## 1114           28        FALSE                 0.0       5     146
## 1115            0         TRUE                9:43       9      95
## 1116           19        FALSE                9:17       5      92
## 1117            2        FALSE                9:02       9      95
## 1118            0        FALSE                8:59       9     125
## 1119            4         TRUE                8:47       5     131
## 1120           26         TRUE                8:32       9      92
## 1121            1        FALSE                8:23       5     109
## 1122            8        FALSE                8:13       5     131
## 1123           17         TRUE                8:01       9      92
## 1124           18        FALSE                7:46       5     131
## 1125           20        FALSE                7:32       9      92
## 1126           27        FALSE                7:20       5      92
## 1127            4        FALSE                6:56       9      92
## 1128            1         TRUE                6:35       5     109
## 1129            5        FALSE                6:24       9     114
## 1130            2        FALSE                6:02       5     110
## 1131           13         TRUE                5:53       5      92
## 1132           19         TRUE                5:28       5      92
## 1133   -214748365         TRUE                5:16       9      98
## 1134   -214748365        FALSE                5:16       9      99
## 1135           18         TRUE                4:57       5     131
## 1136           19        FALSE                4:44       9     130
## 1137            2         TRUE                4:33       5     126
## 1138           13        FALSE                4:17       9      92
## 1139           18        FALSE                4:14       9      92
## 1140   -214748365         TRUE                3:59       5     103
## 1141   -214748365         TRUE                3:52       5      98
## 1142   -214748365        FALSE                3:52       5      99
## 1143            0        FALSE                3:45       9     114
## 1144            1        FALSE                3:33       5      92
## 1145           19        FALSE                3:07       5      92
## 1146           24        FALSE                2:50       5     131
## 1147           17        FALSE                2:28       5     131
## 1148           19        FALSE                2:11       9      92
## 1149           21        FALSE                1:38       9      92
## 1150           17        FALSE                1:16       5     131
## 1151   -214748365         TRUE                1:15       9     103
## 1152           24        FALSE                1:03       5      92
## 1153            6        FALSE                1:00       5      92
## 1154            0         TRUE                29.5       5      95
## 1155   -214748365        FALSE                29.5       5      97
## 1156            2        FALSE                 2.8       5      92
## 1157            1        FALSE                9:44       9      95
## 1158            2        FALSE                9:38       5      92
## 1159   -214748365         TRUE                9:13       5      98
## 1160   -214748365         TRUE                9:13       5      99
## 1161           16        FALSE                8:56       5     146
## 1162            1        FALSE                8:36       9      92
## 1163           -1        FALSE                8:28       5     131
## 1164            4        FALSE                8:19       9     109
## 1165           20         TRUE                8:00       9      92
## 1166           12        FALSE                6:57       9     122
## 1167   -214748365        FALSE                6:51       9      98
## 1168   -214748365         TRUE                6:51       9      99
## 1169           18         TRUE                6:35       5      92
## 1170           12        FALSE                6:17       5      92
## 1171            0        FALSE                6:11       5      95
## 1172            0         TRUE                6:04       9     141
## 1173           12        FALSE                5:49       5      92
## 1174            0        FALSE                5:15       9     110
## 1175           17         TRUE                5:11       9      92
## 1176           12         TRUE                5:00       5     131
## 1177           -1         TRUE                4:45       5     129
## 1178           14        FALSE                4:12       5     131
## 1179            1        FALSE                4:04       5     110
## 1180            1        FALSE                3:45       9     128
## 1181           16        FALSE                3:38       5     131
## 1182           -1        FALSE                3:04       5      95
## 1183           25        FALSE                3:01       5      92
## 1184            0         TRUE                2:57       5     125
## 1185            5         TRUE                2:39       9     114
## 1186            0        FALSE                2:10       9     144
## 1187            2         TRUE                2:03       9     145
## 1188           18        FALSE                1:51       5      92
## 1189            2        FALSE                1:34       5     110
## 1190           21        FALSE                1:20       9     131
## 1191            1        FALSE                1:10       5     128
## 1192            1         TRUE                57.5       9      95
## 1193            0         TRUE                38.3       9     129
## 1194           17         TRUE                20.3       5     131
## 1195   -214748365         TRUE                 2.0       5      98
## 1196   -214748365         TRUE                 2.0       5      99
## 1197           -1        FALSE                 0.0       5      92
## 1198            3         TRUE                9:46       5     121
## 1199            1        FALSE                9:34       9     128
## 1200           23        FALSE                9:20       5     131
## 1201           20        FALSE                9:09       5     132
## 1202            6         TRUE                8:53       9      92
## 1203   -214748365         TRUE                8:34       5     103
## 1204            2         TRUE                8:29       5     110
## 1205            2         TRUE                8:17       9     141
## 1206            1         TRUE                8:00       9     110
## 1207   -214748365         TRUE                8:00       9      97
## 1208           17        FALSE                7:33       9     131
## 1209            0         TRUE                7:22       5     110
## 1210            6        FALSE                7:10       9     131
## 1211           10        FALSE                6:52       5     114
## 1212           18        FALSE                6:39       9      92
## 1213            0        FALSE                6:33       9     125
## 1214            0        FALSE                6:00       5      95
## 1215   -214748365         TRUE                5:51       9     103
## 1216           12        FALSE                5:48       9     131
## 1217            2        FALSE                5:32       5     128
## 1218           24        FALSE                4:52       5     131
## 1219            7         TRUE                4:14       9     131
## 1220           -1        FALSE                4:00       5     128
## 1221            6        FALSE                3:48       9     131
## 1222           16        FALSE                3:41       9      92
## 1223            0         TRUE                3:26       5     110
## 1224           18        FALSE                3:16       9      92
## 1225           22         TRUE                3:03       5      92
## 1226            2         TRUE                2:35       9      92
## 1227           27        FALSE                2:15       5      92
## 1228   -214748365         TRUE                2:11       5      98
## 1229   -214748365         TRUE                2:11       5      99
## 1230           22        FALSE                1:58       9      92
## 1231           19        FALSE                1:45       5      92
## 1232            0        FALSE                1:17       9     110
## 1233            6        FALSE                1:10       5     131
## 1234            0         TRUE                1:07       5     125
## 1235   -214748365         TRUE                1:00       9      98
## 1236   -214748365        FALSE                1:00       9      99
## 1237           -2        FALSE                54.3       5     110
## 1238           25        FALSE                26.9       9      92
## 1239           17        FALSE                20.1       5     131
## 1240           16        FALSE                9:50      11      92
## 1241           24        FALSE                9:32      18      92
## 1242           24         TRUE                9:24      11     113
## 1243            1        FALSE                9:06      18     137
## 1244            1        FALSE                8:52      11      95
## 1245            0         TRUE                8:50      11      94
## 1246            0         TRUE                8:26      18      95
## 1247           25        FALSE                8:02      11      92
## 1248           16         TRUE                7:49      18     132
## 1249            1        FALSE                7:28      11     110
## 1250           20         TRUE                7:12      18     131
## 1251            1        FALSE                6:57      11     128
## 1252            4         TRUE                6:38      11      92
## 1253            4        FALSE                6:08      18     137
## 1254           14         TRUE                5:57      11      92
## 1255            6        FALSE                5:47      18     146
## 1256           23        FALSE                5:19      11      92
## 1257            1        FALSE                5:13      18      95
## 1258            0         TRUE                5:11      18     125
## 1259            3         TRUE                4:50      11     137
## 1260            2        FALSE                4:35      18     110
## 1261            0         TRUE                4:33      18      94
## 1262            2        FALSE                4:23      11     110
## 1263           23         TRUE                4:05      11      92
## 1264   -214748365         TRUE                3:44      18      98
## 1265   -214748365         TRUE                3:44      18      99
## 1266            3         TRUE                3:21      11     114
## 1267            4        FALSE                2:56      18      92
## 1268            1         TRUE                2:47      11     141
## 1269            0         TRUE                2:24      11     141
## 1270           11        FALSE                1:48      11      92
## 1271           16        FALSE                1:39      18     131
## 1272           14        FALSE                1:24      11      92
## 1273            3         TRUE                55.7      18     137
## 1274           14        FALSE                16.9      11      92
## 1275            0         TRUE                 0.1      18     128
## 1276           14        FALSE                9:44      18      92
## 1277           22        FALSE                9:37      11     131
## 1278           24        FALSE                9:26      18      92
## 1279            4        FALSE                9:14      18      92
## 1280            0        FALSE                8:29      18     126
## 1281           12         TRUE                8:19      18      92
## 1282           12        FALSE                8:01      11     114
## 1283           23         TRUE                7:48      18     131
## 1284           12        FALSE                7:24      11     144
## 1285           24         TRUE                7:09      18     132
## 1286           18        FALSE                6:55      11      92
## 1287            0        FALSE                6:35      18     110
## 1288   -214748365         TRUE                6:28      11      98
## 1289   -214748365        FALSE                6:28      11      99
## 1290            2        FALSE                6:16      11      95
## 1291   -214748365         TRUE                6:13      11      98
## 1292   -214748365         TRUE                6:13      11      99
## 1293            7        FALSE                5:56      18     137
## 1294           20         TRUE                5:13      18      92
## 1295           17        FALSE                5:00      11     131
## 1296            1        FALSE                4:43      18     128
## 1297   -214748365         TRUE                4:19      18      98
## 1298   -214748365         TRUE                4:19      18      99
## 1299            5         TRUE                3:18      11     141
## 1300           22        FALSE                3:03      18      92
## 1301           -1        FALSE                2:50      18     109
## 1302           10         TRUE                2:40      18      92
## 1303            4        FALSE                2:18      11     120
## 1304            6        FALSE                2:03      18     121
## 1305           16         TRUE                1:40      11      92
## 1306           13         TRUE                1:16      18      92
## 1307           25        FALSE                1:04      11     131
## 1308   -214748365         TRUE                38.6      11      98
## 1309   -214748365         TRUE                38.6      11      99
## 1310            0        FALSE                24.0      18     128
## 1311           10         TRUE                20.3      18     131
## 1312   -214748365         TRUE                 9.7      11      98
## 1313   -214748365         TRUE                 9.7      11      99
## 1314            1        FALSE                 1.0      18     126
## 1315            9        FALSE                9:39      18      92
## 1316           24         TRUE                9:03      18      92
## 1317   -214748365         TRUE                8:42      11      98
## 1318   -214748365         TRUE                8:42      11      99
## 1319           25        FALSE                8:26      18      92
## 1320            0         TRUE                8:22      18     125
## 1321            1         TRUE                8:01      11     141
## 1322   -214748365        FALSE                7:46      18     100
## 1323   -214748365         TRUE                7:46      18     101
## 1324   -214748365         TRUE                7:46      18     102
## 1325           28        FALSE                7:23      11      92
## 1326            1         TRUE                7:07      18      95
## 1327   -214748365         TRUE                7:07      18      97
## 1328   -214748365         TRUE                6:59      11      98
## 1329   -214748365         TRUE                6:59      11      99
## 1330            3        FALSE                6:32      11     144
## 1331           18        FALSE                6:13      18      92
## 1332            1        FALSE                6:03      11     110
## 1333            2        FALSE                5:40      18     112
## 1334   -214748365        FALSE                5:38      18      98
## 1335   -214748365         TRUE                5:38      18      99
## 1336           18        FALSE                5:25      11      92
## 1337   -214748365         TRUE                5:08      18      98
## 1338   -214748365         TRUE                5:08      18      99
## 1339           22        FALSE                4:39      11      92
## 1340           12         TRUE                4:32      18     109
## 1341           15        FALSE                3:58      18     131
## 1342            1        FALSE                3:24      18     121
## 1343           -1         TRUE                3:19      11     109
## 1344            1        FALSE                3:05      18     137
## 1345   -214748365         TRUE                2:48      11      98
## 1346   -214748365         TRUE                2:48      11      99
## 1347            7        FALSE                2:29      18      92
## 1348            2         TRUE                2:20      11     112
## 1349   -214748365         TRUE                2:08      18      98
## 1350   -214748365         TRUE                2:08      18      99
## 1351           -1         TRUE                1:56      11     137
## 1352            0         TRUE                1:31      18     141
## 1353            6        FALSE                1:14      11      92
## 1354            2         TRUE                1:04      11      92
## 1355           19        FALSE                44.0      18      92
## 1356            0         TRUE                41.3      18     125
## 1357   -214748365         TRUE                28.6      11      98
## 1358   -214748365         TRUE                28.6      11      99
## 1359   -214748365        FALSE                 6.3      18      98
## 1360   -214748365         TRUE                 6.3      18      99
## 1361           14        FALSE                 1.0      11      92
## 1362            3         TRUE                9:47      11     114
## 1363            6        FALSE                9:25      18     144
## 1364           14         TRUE                9:08      11     114
## 1365           12        FALSE                8:52      18      92
## 1366           15         TRUE                8:41      18     131
## 1367   -214748365         TRUE                8:21      11      98
## 1368   -214748365        FALSE                8:21      11      99
## 1369            7         TRUE                7:46      11      92
## 1370            1        FALSE                7:37      18     110
## 1371           12         TRUE                7:32      18      92
## 1372            0         TRUE                7:07      11      92
## 1373           20        FALSE                6:43      18      92
## 1374           19         TRUE                6:23      11      92
## 1375            2         TRUE                6:03      18     141
## 1376           13         TRUE                5:54      11      92
## 1377            2        FALSE                5:16      18     109
## 1378            2        FALSE                4:45      18     110
## 1379            1         TRUE                4:35      11      95
## 1380   -214748365         TRUE                4:35      11      97
## 1381            2         TRUE                4:21      18     110
## 1382           14        FALSE                4:05      11     131
## 1383   -214748365         TRUE                3:59      18      98
## 1384   -214748365        FALSE                3:59      18      99
## 1385           13        FALSE                3:39      11      92
## 1386            1         TRUE                3:22      18     141
## 1387            3        FALSE                3:07      11     121
## 1388            9         TRUE                3:00      11      92
## 1389   -214748365         TRUE                2:47      18      98
## 1390   -214748365         TRUE                2:47      18      99
## 1391            1        FALSE                2:37      18     109
## 1392            4         TRUE                2:27      18      92
## 1393            5        FALSE                2:13      11      92
## 1394   -214748365         TRUE                1:50      18      98
## 1395   -214748365         TRUE                1:50      18      99
## 1396   -214748365        FALSE                1:44      18     103
## 1397   -214748365         TRUE                1:44      18      98
## 1398   -214748365         TRUE                1:44      18      99
## 1399            4         TRUE                1:38      11     109
## 1400            9        FALSE                1:17      18     137
## 1401   -214748365         TRUE                1:11      11      98
## 1402   -214748365         TRUE                1:11      11      99
## 1403           17         TRUE                52.4      18     131
## 1404            7        FALSE                45.4      11      92
## 1405            1        FALSE                22.0      18     110
## 1406            0         TRUE                20.1      18      94
## 1407           20        FALSE                11.9      11     132
## 1408   -214748365        FALSE                 8.6      11     100
## 1409   -214748365         TRUE                 8.6      11     101
## 1410   -214748365        FALSE                 8.6      11     102
## 1411   -214748365         TRUE                 4.7      18      98
## 1412   -214748365         TRUE                 4.7      18      99
## 1413           26        FALSE                 1.5      11     146
## 1414            4         TRUE                9:45       8     120
## 1415           19        FALSE                9:28       9      92
## 1416            3        FALSE                9:17       8     110
## 1417            3        FALSE                9:13       8     125
## 1418           12         TRUE                8:40       8     131
## 1419   -214748365         TRUE                8:34       9      98
## 1420   -214748365         TRUE                8:34       9      99
## 1421            6        FALSE                8:12       9     110
## 1422           24        FALSE                8:03       8     131
## 1423           23         TRUE                7:49       9      92
## 1424           19        FALSE                7:29       8      92
## 1425           23         TRUE                7:18       9      92
## 1426            3         TRUE                6:56       9     141
## 1427            4        FALSE                6:32       9     109
## 1428           29         TRUE                6:13       9     131
## 1429           23        FALSE                5:58       8     132
## 1430           17         TRUE                5:48       9     131
## 1431            8        FALSE                5:29       8     134
## 1432            9         TRUE                4:59       8     121
## 1433            4         TRUE                4:47       9     141
## 1434           22        FALSE                4:28       8      92
## 1435           21        FALSE                4:06       8     113
## 1436           25         TRUE                3:43       8      92
## 1437           11        FALSE                3:19       9     131
## 1438            5         TRUE                3:03       8     137
## 1439           18        FALSE                2:20       9      92
## 1440            2         TRUE                2:06       8     112
## 1441           22        FALSE                1:54       9      92
## 1442           20        FALSE                1:40       8      92
## 1443            3         TRUE                1:37       8     125
## 1444   -214748365         TRUE                1:37       8      97
## 1445           13        FALSE                1:22       9      92
## 1446            3         TRUE                1:14       8     119
## 1447           18         TRUE                57.8       9     131
## 1448            2         TRUE                44.2       8     112
## 1449           19        FALSE                34.3       9      92
## 1450   -214748365        FALSE                31.3       9     100
## 1451   -214748365         TRUE                31.3       9     101
## 1452   -214748365         TRUE                31.3       9     102
## 1453   -214748365         TRUE                17.6       8      98
## 1454   -214748365        FALSE                17.6       8      99
## 1455            3         TRUE                 2.8       9     141
## 1456           37        FALSE                 1.1       8      92
## 1457            2        FALSE                9:38       8     109
## 1458            3        FALSE                9:17       8     109
## 1459            7        FALSE                8:59       9     131
## 1460           22         TRUE                8:53       9      92
## 1461            4        FALSE                8:34       8     120
## 1462            2        FALSE                8:13       8      92
## 1463            2        FALSE                7:52       8     109
## 1464            7        FALSE                7:33       9     110
## 1465            3         TRUE                7:28       8     110
## 1466   -214748365         TRUE                7:28       8      97
## 1467   -214748365         TRUE                7:20       9      98
## 1468   -214748365         TRUE                7:20       9      99
## 1469           11        FALSE                7:09       8     131
## 1470            1         TRUE                7:03       8     125
## 1471           18        FALSE                6:35       9     132
## 1472            3        FALSE                6:26       8     114
## 1473            4         TRUE                6:02       9      92
## 1474   -214748365         TRUE                5:44       8     100
## 1475   -214748365         TRUE                5:44       8     101
## 1476   -214748365         TRUE                5:44       8     102
## 1477            9         TRUE                5:29       9     137
## 1478            9        FALSE                5:14       8     131
## 1479            3         TRUE                5:08       8     112
## 1480           23        FALSE                4:32       8      92
## 1481           22        FALSE                4:24       9     113
## 1482            3         TRUE                4:10       8     110
## 1483            3        FALSE                3:50       9      92
## 1484           10        FALSE                3:43       8     146
## 1485           25        FALSE                3:34       9     146
## 1486   -214748365         TRUE                3:32       9      98
## 1487   -214748365         TRUE                3:32       9      99
## 1488            4        FALSE                3:14       8     110
## 1489            9         TRUE                3:05       8     114
## 1490            3         TRUE                2:56       9     141
## 1491           14         TRUE                2:47       8     131
## 1492           21        FALSE                2:37       9      92
## 1493   -214748365        FALSE                2:20       8      98
## 1494   -214748365         TRUE                2:20       8      99
## 1495            4         TRUE                2:09       9     110
## 1496           18         TRUE                1:47       8      92
## 1497            3        FALSE                1:34       9     141
## 1498           10         TRUE                1:23       9     131
## 1499            7         TRUE                1:13       8     114
## 1500   -214748365        FALSE                1:13       8      97
## 1501           14        FALSE                57.1       8     146
## 1502            3        FALSE                44.8       9      95
## 1503   -214748365         TRUE                44.8       8      98
## 1504   -214748365         TRUE                44.8       8      99
## 1505            6        FALSE                32.7       9     137
## 1506            3        FALSE                25.6       8     134
## 1507            4         TRUE                19.1       9     109
## 1508           11        FALSE                 0.0       9     113
## 1509           11        FALSE                9:36       9     131
## 1510            4        FALSE                9:16       8     110
## 1511            2         TRUE                9:04       9     141
## 1512           18        FALSE                8:50       8      92
## 1513            3         TRUE                8:33       9     110
## 1514           22        FALSE                8:16       8      92
## 1515            6        FALSE                8:04       9     132
## 1516            8        FALSE                7:39       8      92
## 1517           11        FALSE                7:27       9     130
## 1518           22        FALSE                7:10       8      92
## 1519            3         TRUE                6:44       8     109
## 1520           21        FALSE                6:25       9      92
## 1521            5        FALSE                6:11       8     120
## 1522           12        FALSE                5:55       9      92
## 1523            9        FALSE                5:39       8     131
## 1524            4         TRUE                5:16       9      92
## 1525           23        FALSE                5:02       8      92
## 1526   -214748365         TRUE                4:49       9      98
## 1527   -214748365         TRUE                4:49       9      99
## 1528            3        FALSE                4:33       8     128
## 1529   -214748365         TRUE                4:29       8      98
## 1530   -214748365         TRUE                4:29       8      99
## 1531            3         TRUE                4:17       9     110
## 1532   -214748365         TRUE                4:04       8      98
## 1533   -214748365         TRUE                4:04       8      99
## 1534           24         TRUE                3:50       9      92
## 1535            4         TRUE                3:38       8     110
## 1536           10        FALSE                3:32       9     146
## 1537           20        FALSE                3:24       8      92
## 1538            5         TRUE                3:10       9     121
## 1539   -214748365        FALSE                3:10       9      97
## 1540            3         TRUE                2:55       8      95
## 1541           17         TRUE                2:42       9      92
## 1542            2        FALSE                2:09       9     110
## 1543            2        FALSE                2:05       9     141
## 1544            9        FALSE                1:54       8     131
## 1545           20        FALSE                1:38       9      92
## 1546           25        FALSE                1:27       9      92
## 1547            8        FALSE                1:12       8     144
## 1548           14        FALSE                1:08       8      92
## 1549           24        FALSE                36.2       8      92
## 1550           14        FALSE                23.2       8     131
## 1551           17        FALSE                 3.8       9      92
## 1552            9         TRUE                9:42       8     130
## 1553           20        FALSE                9:28       9      92
## 1554   -214748365         TRUE                9:19       8      98
## 1555   -214748365         TRUE                9:19       8      99
## 1556           12         TRUE                8:55       9     121
## 1557            4         TRUE                8:46       8     120
## 1558            3        FALSE                8:20       9     110
## 1559           20        FALSE                8:12       8     146
## 1560            7        FALSE                7:57       9     131
## 1561            2         TRUE                7:34       9     109
## 1562            9         TRUE                7:17       8     131
## 1563           24         TRUE                6:52       9      92
## 1564            3        FALSE                6:37       8     114
## 1565            8        FALSE                6:08       8      95
## 1566            3         TRUE                6:05       8     125
## 1567            3         TRUE                5:40       9      92
## 1568            4        FALSE                5:27       8     110
## 1569           15         TRUE                5:12       9      92
## 1570           24        FALSE                4:56       8      92
## 1571            7         TRUE                4:42       9      92
## 1572            3        FALSE                4:07       9     137
## 1573            3         TRUE                3:55       8     120
## 1574            2         TRUE                3:34       9     110
## 1575   -214748365         TRUE                3:06       9      98
## 1576   -214748365         TRUE                3:06       9      99
## 1577            4         TRUE                2:50       8     110
## 1578           21        FALSE                2:23       9      92
## 1579           22        FALSE                2:13       8      92
## 1580            9        FALSE                1:43       9      92
## 1581           16         TRUE                1:28       8      92
## 1582   -214748365         TRUE                1:20       9      98
## 1583   -214748365         TRUE                1:20       9      99
## 1584           21        FALSE                1:13       8      92
## 1585   -214748365         TRUE                1:08       8      98
## 1586   -214748365        FALSE                1:08       8      99
## 1587            2        FALSE                45.9       9     110
## 1588           23         TRUE                35.5       8      92
## 1589            2         TRUE                13.6       9     141
## 1590           23        FALSE                 1.3       8     132
## 1591           20         TRUE                9:44      11      92
## 1592           23        FALSE                9:26      16      92
## 1593            4        FALSE                9:10      11     114
## 1594           24        FALSE                9:06      11     131
## 1595            2        FALSE                8:49      16     131
## 1596            9        FALSE                8:45      16     131
## 1597           11         TRUE                8:38      11     131
## 1598           14        FALSE                8:20      16     131
## 1599            0         TRUE                8:18      11      95
## 1600           26        FALSE                8:03      16      92
## 1601            3         TRUE                7:46      16     109
## 1602           17        FALSE                7:28      11      92
## 1603            3         TRUE                7:15      16     110
## 1604           26        FALSE                6:59      16     131
## 1605           10         TRUE                6:49      16      93
## 1606            9        FALSE                6:34      11      92
## 1607            3         TRUE                6:19      16     110
## 1608           25         TRUE                6:08      11     131
## 1609   -214748365        FALSE                6:08      11      97
## 1610            2         TRUE                5:52      16     141
## 1611           16        FALSE                5:35      11      92
## 1612           26        FALSE                5:26      16      92
## 1613            1        FALSE                5:18      16      92
## 1614           14        FALSE                5:04      11      92
## 1615           23         TRUE                4:59      11      92
## 1616           15        FALSE                4:42      16      92
## 1617           24        FALSE                4:31      11      92
## 1618           22        FALSE                4:14      16      92
## 1619           11        FALSE                3:41      11     144
## 1620            5         TRUE                3:23      16      93
## 1621           12         TRUE                3:06      11      92
## 1622   -214748365         TRUE                2:50      16      98
## 1623   -214748365         TRUE                2:50      16      99
## 1624            5        FALSE                2:13      11     110
## 1625   -214748365         TRUE                2:09      11      98
## 1626   -214748365         TRUE                2:09      11      99
## 1627            2        FALSE                1:52      16     112
## 1628            3        FALSE                1:41      11      95
## 1629            4        FALSE                1:37      11     125
## 1630           25        FALSE                1:27      11      92
## 1631            3         TRUE                1:14      16      95
## 1632           21        FALSE                56.9      11      92
## 1633            1        FALSE                53.3      11      95
## 1634            2        FALSE                31.7      11      95
## 1635            0         TRUE                29.8      11      95
## 1636   -214748365         TRUE                24.7      16      98
## 1637   -214748365         TRUE                24.7      16      99
## 1638           28        FALSE                 0.8      16     146
## 1639            5         TRUE                9:38      11      95
## 1640           16        FALSE                9:09      16     114
## 1641   -214748365        FALSE                8:57      11      98
## 1642   -214748365         TRUE                8:57      11      99
## 1643           13        FALSE                8:36      16      92
## 1644           15        FALSE                8:05      16      92
## 1645           21        FALSE                7:55      11      92
## 1646           15        FALSE                7:42      16     132
## 1647            1        FALSE                7:27      11     114
## 1648   -214748365         TRUE                7:27      11      98
## 1649   -214748365        FALSE                7:27      11      99
## 1650            4        FALSE                7:11      16      95
## 1651            4         TRUE                6:59      11      92
## 1652           28        FALSE                6:47      16      92
## 1653            3        FALSE                6:38      16     110
## 1654            0         TRUE                6:34      16     125
## 1655            4        FALSE                6:18      11     114
## 1656            9         TRUE                6:10      16     131
## 1657           16        FALSE                5:43      16      92
## 1658            9        FALSE                5:24      11     120
## 1659           25         TRUE                5:09      16     131
## 1660           14        FALSE                4:55      11      92
## 1661           15         TRUE                4:50      11     131
## 1662           26        FALSE                4:38      16     131
## 1663   -214748365         TRUE                4:21      16      98
## 1664   -214748365        FALSE                4:21      16      99
## 1665            4        FALSE                4:06      16     137
## 1666            0         TRUE                3:49      11     141
## 1667            6        FALSE                3:34      16     148
## 1668            1        FALSE                3:27      11     109
## 1669            1         TRUE                3:22      11     125
## 1670   -214748365         TRUE                3:12      16      98
## 1671   -214748365         TRUE                3:12      16      99
## 1672           24         TRUE                2:53      11      92
## 1673            3         TRUE                2:31      16     141
## 1674   -214748365         TRUE                2:22      11      98
## 1675   -214748365        FALSE                2:22      11      99
## 1676   -214748365         TRUE                2:07      16      98
## 1677   -214748365         TRUE                2:07      16      99
## 1678            3        FALSE                1:51      16     120
## 1679   -214748365         TRUE                1:40      11      98
## 1680   -214748365         TRUE                1:40      11      99
## 1681           25         TRUE                1:26      16      92
## 1682   -214748365         TRUE                1:09      11      98
## 1683   -214748365         TRUE                1:09      11      99
## 1684           17        FALSE                1:00      16     131
## 1685            3        FALSE                55.4      16      95
## 1686           17        FALSE                45.2      11      92
## 1687           -2         TRUE                19.0      11      92
## 1688            5         TRUE                 0.3      16     110
## 1689            2         TRUE                9:48      16     131
## 1690            2        FALSE                9:18      11     120
## 1691            3         TRUE                9:09      11      95
## 1692           -1        FALSE                8:53      16     137
## 1693           26        FALSE                8:44      11      92
## 1694           -1         TRUE                8:24      16     141
## 1695            3         TRUE                7:57      11      95
## 1696           18        FALSE                7:45      16      92
## 1697           -1        FALSE                7:41      16     131
## 1698   -214748365         TRUE                7:33      11      98
## 1699   -214748365         TRUE                7:33      11      99
## 1700           16         TRUE                7:23      16      92
## 1701            1         TRUE                7:11      16     141
## 1702           13        FALSE                6:54      11     130
## 1703   -214748365         TRUE                6:35      16      98
## 1704   -214748365        FALSE                6:35      16      99
## 1705           16         TRUE                6:21      11     137
## 1706   -214748365         TRUE                5:49      11      98
## 1707   -214748365         TRUE                5:49      11      99
## 1708            2         TRUE                5:34      16     120
## 1709   -214748365        FALSE                5:19      11      98
## 1710   -214748365         TRUE                5:19      11      99
## 1711           20        FALSE                5:04      16     131
## 1712           24        FALSE                4:54      16      92
## 1713            2         TRUE                4:41      11      95
## 1714            6        FALSE                4:18      16     119
## 1715            4         TRUE                4:04      11     136
## 1716            4        FALSE                3:48      16     120
## 1717            0        FALSE                3:45      16      95
## 1718            4         TRUE                3:31      16      92
## 1719            3         TRUE                3:15      11     110
## 1720   -214748365         TRUE                2:54      16     103
## 1721            1         TRUE                2:15      16     141
## 1722           20         TRUE                2:00      11      92
## 1723           10        FALSE                1:44      16     131
## 1724           16        FALSE                1:31      11      92
## 1725            2         TRUE                1:26      11      95
## 1726   -214748365         TRUE                1:26      11      97
## 1727            1        FALSE                1:04      16     141
## 1728            3         TRUE                59.0      11     109
## 1729           22        FALSE                51.9      16      92
## 1730   -214748365         TRUE                15.9      16      98
## 1731   -214748365         TRUE                15.9      16      99
## 1732            2        FALSE                 1.9      11      95
## 1733            0        FALSE                 0.6      11      92
## 1734           24         TRUE                9:51      11      92
## 1735            1        FALSE                9:36      16      92
## 1736            1        FALSE                9:33      16      95
## 1737           22        FALSE                9:22      16      92
## 1738           15        FALSE                9:06      11      92
## 1739   -214748365         TRUE                8:38      11     103
## 1740           24        FALSE                8:34      11      92
## 1741           26         TRUE                8:27      11      92
## 1742           22         TRUE                8:09      16      92
## 1743            5        FALSE                7:42      11      93
## 1744           24        FALSE                7:19      16     131
## 1745   -214748365         TRUE                7:13      16      98
## 1746   -214748365         TRUE                7:13      16      99
## 1747            3        FALSE                6:58      11      95
## 1748           12        FALSE                6:37      16      92
## 1749            3        FALSE                6:33      16      92
## 1750            1        FALSE                6:30      16      95
## 1751           18        FALSE                6:25      16      92
## 1752           21         TRUE                6:01      11      92
## 1753   -214748365         TRUE                5:43      16      98
## 1754   -214748365         TRUE                5:43      16      99
## 1755   -214748365         TRUE                5:27      11      98
## 1756   -214748365         TRUE                5:27      11      99
## 1757            1         TRUE                5:04      16     110
## 1758           19        FALSE                4:21      16      92
## 1759           25        FALSE                4:07      11      92
## 1760           22        FALSE                3:49      16      92
## 1761            3         TRUE                3:31      11     110
## 1762            3        FALSE                3:15      16     110
## 1763            2         TRUE                3:10      16      95
## 1764            2        FALSE                2:49      16     114
## 1765            3         TRUE                2:34      11      95
## 1766           12        FALSE                2:26      16      92
## 1767            3         TRUE                2:16      11     111
## 1768   -214748365         TRUE                2:08      16      98
## 1769   -214748365         TRUE                2:08      16      99
## 1770   -214748365         TRUE                1:55      11      98
## 1771   -214748365         TRUE                1:55      11      99
## 1772           16        FALSE                1:36      16     131
## 1773            3         TRUE                1:25      11     110
## 1774            1        FALSE                1:02      11     127
## 1775           17        FALSE                47.4      16     131
## 1776            1        FALSE                37.6      11      92
## 1777           28        FALSE                23.1      11      92
## 1778            6         TRUE                9:45      17     114
## 1779           27        FALSE                9:30      14      92
## 1780           12         TRUE                9:18      17      92
## 1781           21         TRUE                9:08      14      92
## 1782            2         TRUE                8:45      17      95
## 1783           23        FALSE                8:28      14      92
## 1784            1        FALSE                8:23      14      92
## 1785           16         TRUE                8:14      17     131
## 1786   -214748365         TRUE                7:56      17      98
## 1787   -214748365         TRUE                7:56      17      99
## 1788           13        FALSE                7:34      14     132
## 1789            8        FALSE                7:21      17      92
## 1790            7         TRUE                7:09      14     114
## 1791            2        FALSE                6:54      17     109
## 1792            2        FALSE                6:35      17      92
## 1793   -214748365         TRUE                6:34      17      98
## 1794   -214748365         TRUE                6:34      17      99
## 1795            7        FALSE                6:11      14     113
## 1796           18         TRUE                6:03      17      92
## 1797           13         TRUE                5:46      14     131
## 1798            2        FALSE                5:26      17     132
## 1799            0         TRUE                5:19      14      92
## 1800   -214748365         TRUE                4:59      17      98
## 1801   -214748365         TRUE                4:59      17      99
## 1802            2         TRUE                4:42      14      92
## 1803            1         TRUE                4:07      14      92
## 1804   -214748365         TRUE                3:52      17      98
## 1805   -214748365         TRUE                3:52      17      99
## 1806            9        FALSE                3:40      14      92
## 1807            1        FALSE                3:24      17     114
## 1808           18        FALSE                3:14      14      92
## 1809           13        FALSE                2:59      17      92
## 1810            7         TRUE                2:32      17     114
## 1811   -214748365         TRUE                2:32      17      97
## 1812           14         TRUE                2:12      17     132
## 1813   -214748365        FALSE                1:57      14      98
## 1814   -214748365        FALSE                1:57      14      99
## 1815           15         TRUE                1:34      17      92
## 1816            4        FALSE                1:19      14      92
## 1817            1        FALSE                1:13      17      92
## 1818           24        FALSE                1:06      14      92
## 1819            2         TRUE                57.4      17      92
## 1820            2         TRUE                35.6      17      95
## 1821            3        FALSE                13.6      14      92
## 1822           24        FALSE                 2.9      17      92
## 1823            8        FALSE                9:45      14     113
## 1824           10        FALSE                9:29      17      92
## 1825            1         TRUE                9:00      14     110
## 1826           13        FALSE                8:44      17     114
## 1827           18        FALSE                8:32      14      92
## 1828           12         TRUE                8:25      17     131
## 1829           18         TRUE                8:14      14      92
## 1830            0         TRUE                7:59      17      95
## 1831           10        FALSE                7:47      14      92
## 1832            2         TRUE                7:35      17     109
## 1833           23        FALSE                7:25      14      92
## 1834           16        FALSE                7:12      14     132
## 1835           14        FALSE                7:00      17      92
## 1836            7        FALSE                6:31      17     114
## 1837           21        FALSE                6:23      14      92
## 1838            1         TRUE                6:17      17      95
## 1839           17        FALSE                5:55      17      92
## 1840           26         TRUE                5:46      14      92
## 1841           26        FALSE                5:22      17      92
## 1842            2        FALSE                5:14      14      95
## 1843            4        FALSE                4:53      14      95
## 1844           13        FALSE                4:29      14      92
## 1845            1        FALSE                4:25      14      92
## 1846            3        FALSE                4:25      14      92
## 1847            2         TRUE                4:19      14      95
## 1848   -214748365         TRUE                4:05      17      98
## 1849   -214748365        FALSE                4:05      17      99
## 1850            6        FALSE                3:49      14      92
## 1851           16        FALSE                3:29      17      92
## 1852           25        FALSE                3:20      14      92
## 1853           25        FALSE                3:13      14      92
## 1854            1        FALSE                3:01      17     120
## 1855           22         TRUE                2:48      17      92
## 1856            6         TRUE                2:32      14      92
## 1857           15        FALSE                2:13      17      92
## 1858            8        FALSE                1:58      17      92
## 1859            4         TRUE                1:39      14     114
## 1860            7        FALSE                1:23      17      92
## 1861            1         TRUE                1:10      14     110
## 1862            1         TRUE                54.7      17      92
## 1863            1         TRUE                44.9      14      95
## 1864            2        FALSE                23.8      17      92
## 1865            8        FALSE                 2.8      14     132
## 1866           16         TRUE                9:49      14      92
## 1867           10         TRUE                9:29      14     132
## 1868   -214748365         TRUE                9:02      14      98
## 1869   -214748365         TRUE                9:02      14      99
## 1870            1         TRUE                8:47      17      95
## 1871           22         TRUE                8:35      14      92
## 1872            2         TRUE                8:17      17     114
## 1873   -214748365         TRUE                8:08      14      98
## 1874   -214748365         TRUE                8:08      14      99
## 1875   -214748365         TRUE                8:01      17      98
## 1876   -214748365         TRUE                8:01      17      99
## 1877            2        FALSE                7:42      14     113
## 1878           21         TRUE                7:37      14      92
## 1879            1        FALSE                7:23      17     132
## 1880            1        FALSE                7:15      14      95
## 1881           22         TRUE                7:05      17      92
## 1882            2        FALSE                6:40      14      92
## 1883            4        FALSE                6:22      17      92
## 1884            1         TRUE                6:18      17     122
## 1885            2         TRUE                6:00      14     112
## 1886            3         TRUE                5:30      14     137
## 1887            7        FALSE                5:08      17      92
## 1888            1        FALSE                5:00      14      92
## 1889           24        FALSE                4:36      14      92
## 1890            8        FALSE                4:12      17      92
## 1891   -214748365         TRUE                4:05      14      98
## 1892   -214748365         TRUE                4:05      14      99
## 1893           15         TRUE                3:52      17      92
## 1894            7         TRUE                3:33      14     114
## 1895            1        FALSE                3:15      17      95
## 1896            4        FALSE                3:01      14      92
## 1897            2         TRUE                2:50      17     136
## 1898            8        FALSE                2:34      14      92
## 1899            3         TRUE                2:26      17     136
## 1900   -214748365         TRUE                2:12      14      98
## 1901   -214748365         TRUE                2:12      14      99
## 1902           25        FALSE                2:03      17      92
## 1903           13         TRUE                1:53      14      92
## 1904            6        FALSE                1:30      17      92
## 1905            9         TRUE                1:09      17     131
## 1906            1         TRUE                54.2      14     110
## 1907           25        FALSE                47.5      17      92
## 1908            2         TRUE                43.7      17      95
## 1909           22        FALSE                33.4      14      92
## 1910           11        FALSE                 5.9      17      92
## 1911           36         TRUE                 1.0      14      92
## 1912   -214748365         TRUE                9:48      17      98
## 1913   -214748365        FALSE                9:48      17      99
## 1914            5        FALSE                9:35      14      92
## 1915            9        FALSE                9:19      17      92
## 1916            1         TRUE                9:14      17      92
## 1917           20        FALSE                9:01      14      92
## 1918            1         TRUE                8:48      17     110
## 1919           14        FALSE                8:34      14      92
## 1920            2         TRUE                8:16      17     122
## 1921   -214748365         TRUE                8:16      17      97
## 1922            4         TRUE                7:53      14      92
## 1923           25         TRUE                7:30      17      92
## 1924           15        FALSE                7:14      14      92
## 1925            3        FALSE                7:00      17      92
## 1926            1         TRUE                6:54      14      95
## 1927            3         TRUE                6:33      17      93
## 1928           13        FALSE                6:10      14      92
## 1929            1         TRUE                5:52      17      95
## 1930           12         TRUE                5:38      14      92
## 1931           17         TRUE                5:11      17     132
## 1932            5         TRUE                4:59      14      95
## 1933            4         TRUE                4:42      17      92
## 1934           24         TRUE                4:31      14      92
## 1935            8         TRUE                3:59      14      93
## 1936   -214748365         TRUE                3:41      17      98
## 1937   -214748365         TRUE                3:41      17      99
## 1938           15        FALSE                3:28      14      92
## 1939            2         TRUE                3:11      17     134
## 1940           17        FALSE                3:04      14      92
## 1941           23        FALSE                2:48      17      92
## 1942            1        FALSE                2:32      14      95
## 1943            1         TRUE                2:28      14      95
## 1944           11         TRUE                2:12      17      92
## 1945            0        FALSE                1:54      14      95
## 1946   -214748365        FALSE                1:54      14      98
## 1947   -214748365         TRUE                1:54      14      99
## 1948            8         TRUE                1:30      17      92
## 1949            3        FALSE                1:18      14      92
## 1950           18         TRUE                1:01      17      92
## 1951           17        FALSE                52.8      14      92
## 1952           18         TRUE                20.5      14     132
## 1953            1        FALSE                9:36      20     141
## 1954            0        FALSE                9:30      20     125
## 1955   -214748365        FALSE                9:25      19      98
## 1956   -214748365         TRUE                9:25      19      99
## 1957            2         TRUE                9:07      19     109
## 1958            8        FALSE                8:47      19      92
## 1959            0         TRUE                8:41      19     125
## 1960            2         TRUE                8:29      19     109
## 1961           14        FALSE                8:08      19     137
## 1962           -1         TRUE                7:52      20     144
## 1963            0        FALSE                7:38      19      92
## 1964           24        FALSE                7:24      20      92
## 1965            1         TRUE                7:08      19     110
## 1966           19        FALSE                6:49      20     131
## 1967            0         TRUE                6:10      20      95
## 1968            3        FALSE                5:54      19     110
## 1969           13        FALSE                5:45      19     114
## 1970            0        FALSE                5:27      20     110
## 1971           23        FALSE                5:17      19      92
## 1972            8        FALSE                5:09      19     120
## 1973           17        FALSE                4:54      20      92
## 1974            1         TRUE                4:42      19     110
## 1975            1        FALSE                4:27      20     110
## 1976            2         TRUE                4:21      20     141
## 1977           10         TRUE                4:14      19     122
## 1978            0         TRUE                3:35      20     109
## 1979           24        FALSE                3:25      19      92
## 1980            5        FALSE                3:17      19     131
## 1981            0        FALSE                3:12      19     125
## 1982            1        FALSE                3:00      20      92
## 1983            1        FALSE                2:40      19     131
## 1984   -214748365        FALSE                2:35      20      98
## 1985   -214748365         TRUE                2:35      20      99
## 1986            1         TRUE                2:18      19     110
## 1987   -214748365        FALSE                2:13      20      98
## 1988   -214748365        FALSE                2:13      20      99
## 1989            0        FALSE                1:55      20     109
## 1990            0        FALSE                1:51      20      94
## 1991            1        FALSE                1:50      20     125
## 1992           10        FALSE                1:42      19     146
## 1993            0         TRUE                1:36      19     125
## 1994            0        FALSE                1:28      20     110
## 1995           13        FALSE                1:14      19      92
## 1996            0         TRUE                56.5      20     131
## 1997            1         TRUE                53.3      19     110
## 1998           11         TRUE                38.6      19     122
## 1999   -214748365         TRUE                23.3      20      98
## 2000   -214748365        FALSE                23.3      20      99
## 2001            6         TRUE                 0.0      19      92
## 2002            1         TRUE                9:48      19     110
## 2003            0        FALSE                9:00      20     110
## 2004           20         TRUE                8:56      20      92
## 2005           11        FALSE                8:36      19     131
## 2006   -214748365         TRUE                8:28      19      98
## 2007   -214748365         TRUE                8:28      19      99
## 2008           22        FALSE                8:06      20     131
## 2009            1        FALSE                7:48      19     110
## 2010            0        FALSE                7:47      19      94
## 2011            2        FALSE                7:46      19      94
## 2012   -214748365         TRUE                7:45      19      98
## 2013   -214748365         TRUE                7:45      19      99
## 2014            0         TRUE                7:17      19      92
## 2015            0        FALSE                7:04      20     110
## 2016   -214748365         TRUE                7:00      19      98
## 2017   -214748365         TRUE                7:00      19      99
## 2018            1        FALSE                6:42      20     110
## 2019            2         TRUE                6:37      19     109
## 2020   -214748365         TRUE                6:37      19      97
## 2021           -1        FALSE                6:23      20     126
## 2022   -214748365        FALSE                6:03      20      98
## 2023   -214748365        FALSE                6:03      20      99
## 2024   -214748365         TRUE                5:58      19      98
## 2025   -214748365        FALSE                5:58      19      99
## 2026            0        FALSE                5:47      20     110
## 2027            0         TRUE                5:42      20     125
## 2028           17        FALSE                5:32      19     131
## 2029           22        FALSE                5:17      20      92
## 2030            2        FALSE                4:52      19     110
## 2031           14         TRUE                4:47      20     146
## 2032            4        FALSE                4:28      19     110
## 2033            0        FALSE                4:18      20     126
## 2034            0        FALSE                4:15      20      94
## 2035            5        FALSE                3:56      19     114
## 2036   -214748365        FALSE                3:49      20      98
## 2037   -214748365         TRUE                3:49      20      99
## 2038            2         TRUE                3:38      19     141
## 2039   -214748365        FALSE                3:02      20      98
## 2040   -214748365        FALSE                3:02      20      99
## 2041           10        FALSE                2:42      19      92
## 2042           15        FALSE                2:35      20     146
## 2043           25        FALSE                2:26      19      92
## 2044            0         TRUE                2:12      20     109
## 2045            5         TRUE                1:59      19     110
## 2046            7         TRUE                1:39      20     131
## 2047            0        FALSE                1:19      20     109
## 2048            0         TRUE                1:15      20     125
## 2049            0        FALSE                1:00      19      92
## 2050            3         TRUE                57.2      19     114
## 2051           12        FALSE                21.5      19     144
## 2052   -214748365         TRUE                20.6      19      98
## 2053   -214748365         TRUE                20.6      19      99
## 2054           -1        FALSE                 0.9      20     131
## 2055           14        FALSE                9:48      19     131
## 2056           13         TRUE                9:38      20     131
## 2057            3         TRUE                9:01      20     110
## 2058           12         TRUE                8:49      19     131
## 2059            2         TRUE                8:38      20     110
## 2060            1         TRUE                8:18      20     141
## 2061            1         TRUE                8:05      19     141
## 2062           18        FALSE                7:52      20      92
## 2063           -1        FALSE                7:44      20     131
## 2064            0        FALSE                7:35      19     109
## 2065           12         TRUE                7:23      19     131
## 2066            8        FALSE                7:02      20     144
## 2067   -214748365         TRUE                6:45      19      98
## 2068   -214748365         TRUE                6:45      19      99
## 2069            2        FALSE                6:11      20     110
## 2070   -214748365        FALSE                6:05      19      98
## 2071   -214748365         TRUE                6:05      19      99
## 2072            0        FALSE                5:52      19     109
## 2073            1         TRUE                5:29      20     144
## 2074   -214748365        FALSE                5:29      20      97
## 2075   -214748365         TRUE                5:28      19      98
## 2076   -214748365        FALSE                5:28      19      99
## 2077            3        FALSE                5:14      20      95
## 2078           15         TRUE                5:07      20      92
## 2079           23        FALSE                4:50      19      92
## 2080            8         TRUE                4:40      20     110
## 2081            0         TRUE                4:19      19      95
## 2082           19        FALSE                4:07      20     131
## 2083   -214748365         TRUE                3:55      19      98
## 2084   -214748365         TRUE                3:55      19      99
## 2085           13         TRUE                3:35      20      92
## 2086            6        FALSE                3:15      19      93
## 2087   -214748365         TRUE                3:05      20      98
## 2088   -214748365         TRUE                3:05      20      99
## 2089           24        FALSE                2:38      20      92
## 2090   -214748365         TRUE                2:30      19      98
## 2091   -214748365         TRUE                2:30      19      99
## 2092   -214748365        FALSE                2:26      19     103
## 2093   -214748365        FALSE                2:13      20      98
## 2094   -214748365         TRUE                2:13      20      99
## 2095            1         TRUE                1:55      20     110
## 2096            0         TRUE                1:34      19      95
## 2097            1         TRUE                1:14      20      92
## 2098   -214748365         TRUE                51.4      20      98
## 2099   -214748365         TRUE                51.4      20      99
## 2100            0        FALSE                37.2      19      92
## 2101            0        FALSE                29.8      19     110
## 2102            1         TRUE                23.4      20     110
## 2103           19        FALSE                 2.4      19      92
## 2104           19        FALSE                9:49      20     132
## 2105            6        FALSE                9:29      20     144
## 2106            6        FALSE                9:20      20      92
## 2107           24        FALSE                9:06      19      92
## 2108            1        FALSE                8:53      20     110
## 2109            2        FALSE                8:39      19      95
## 2110            2        FALSE                8:30      20     144
## 2111   -214748365        FALSE                8:15      19      98
## 2112   -214748365         TRUE                8:15      19      99
## 2113           16         TRUE                8:02      20      92
## 2114            2        FALSE                7:45      19     126
## 2115           25        FALSE                7:31      20      92
## 2116            0         TRUE                7:23      19     109
## 2117           10         TRUE                7:14      20      92
## 2118            1         TRUE                6:38      20     109
## 2119   -214748365         TRUE                6:38      20      97
## 2120           18        FALSE                6:18      20     146
## 2121           16        FALSE                5:56      20     131
## 2122            0         TRUE                5:43      19     110
## 2123   -214748365         TRUE                5:43      19      97
## 2124           16         TRUE                5:18      20      92
## 2125           23        FALSE                4:43      19      92
## 2126           23         TRUE                4:25      20     122
## 2127            3        FALSE                3:53      20     110
## 2128   -214748365        FALSE                3:51      20      98
## 2129   -214748365         TRUE                3:51      20      99
## 2130           19        FALSE                3:36      19      92
## 2131           20        FALSE                3:19      20      92
## 2132            0         TRUE                3:00      19     110
## 2133           14        FALSE                2:45      20     131
## 2134   -214748365        FALSE                2:36      19      98
## 2135   -214748365         TRUE                2:36      19      99
## 2136            1        FALSE                2:26      19     109
## 2137            5        FALSE                2:26      19      95
## 2138            1        FALSE                2:26      20     109
## 2139   -214748365         TRUE                2:12      20      98
## 2140   -214748365         TRUE                2:12      20      99
## 2141            0         TRUE                1:55      19     141
## 2142   -214748365         TRUE                1:55      19      97
## 2143           11         TRUE                1:28      19     114
## 2144            8         TRUE                1:18      20     131
## 2145            0        FALSE                1:08      19      95
## 2146            6        FALSE                1:03      20      95
## 2147            0        FALSE                54.4      19     110
## 2148            7         TRUE                37.3      19     131
## 2149            1        FALSE                32.6      20     110
## 2150            0        FALSE                30.2      20      94
## 2151   -214748365         TRUE                30.2      19      98
## 2152   -214748365        FALSE                30.2      19      99
## 2153            6        FALSE                25.5      20     131
## 2154            0         TRUE                22.2      20     125
## 2155   -214748365         TRUE                21.1      19      98
## 2156   -214748365         TRUE                21.1      19      99
## 2157            7         TRUE                13.2      20     110
## 2158   -214748365         TRUE                 9.9      19      98
## 2159   -214748365         TRUE                 9.9      19      99
## 2160            1        FALSE                9:45      18     110
## 2161            2         TRUE                9:22       5     126
## 2162            2        FALSE                9:07      18     114
## 2163            2         TRUE                8:45      18     141
## 2164            5         TRUE                8:27       5      92
## 2165            6        FALSE                8:11      18      92
## 2166           10         TRUE                7:47       5     144
## 2167           20        FALSE                7:24      18      92
## 2168           23         TRUE                7:16       5     132
## 2169            7         TRUE                6:56      18      92
## 2170   -214748365         TRUE                6:38       5      98
## 2171   -214748365         TRUE                6:38       5      99
## 2172            1         TRUE                6:22       5     109
## 2173            2        FALSE                6:01      18     131
## 2174           16        FALSE                5:54       5     131
## 2175            7         TRUE                5:30      18      92
## 2176            1        FALSE                5:07       5     112
## 2177           -1         TRUE                5:01      18     141
## 2178           11        FALSE                4:53       5      92
## 2179           15        FALSE                4:34      18     131
## 2180            9         TRUE                4:18       5     122
## 2181            1        FALSE                3:59      18     112
## 2182            0         TRUE                3:55      18     142
## 2183            7        FALSE                3:41       5      92
## 2184            0        FALSE                3:33       5     125
## 2185            4         TRUE                3:20      18      92
## 2186            7         TRUE                3:05       5     131
## 2187           23         TRUE                2:49      18      92
## 2188           24        FALSE                2:32       5     131
## 2189           -1         TRUE                2:14      18     141
## 2190           14        FALSE                2:04       5     131
## 2191           15         TRUE                1:41      18      92
## 2192            0        FALSE                1:18       5     110
## 2193            4         TRUE                58.2       5     128
## 2194            0         TRUE                47.2      18     141
## 2195           20        FALSE                40.3       5     131
## 2196           -1         TRUE                 2.4      18     128
## 2197           67        FALSE                 0.3       5     146
## 2198            2         TRUE                9:40       5     110
## 2199           11        FALSE                9:18      18     132
## 2200           18        FALSE                9:08       5     132
## 2201            3        FALSE                8:52       5     109
## 2202            1         TRUE                8:31      18     141
## 2203            9        FALSE                8:02       5     132
## 2204            0        FALSE                7:54       5     125
## 2205            0         TRUE                7:46      18     141
## 2206   -214748365         TRUE                7:46      18      97
## 2207   -214748365         TRUE                7:32       5      98
## 2208   -214748365         TRUE                7:32       5      99
## 2209            8         TRUE                6:56       5     114
## 2210           -1         TRUE                6:37      18      92
## 2211           19        FALSE                6:12       5      92
## 2212            2         TRUE                5:56      18      92
## 2213           12        FALSE                5:31       5      92
## 2214            1         TRUE                5:19      18     141
## 2215            2        FALSE                4:48       5     141
## 2216           15        FALSE                4:40      18      92
## 2217           -1         TRUE                4:30      18     110
## 2218           -1         TRUE                4:07      18     109
## 2219           23        FALSE                3:44      18      92
## 2220            0         TRUE                3:43      18     125
## 2221   -214748365        FALSE                3:43      18      97
## 2222           11         TRUE                3:34      18      92
## 2223           10        FALSE                3:17       5     132
## 2224   -214748365         TRUE                3:15       5      98
## 2225   -214748365        FALSE                3:15       5      99
## 2226           21        FALSE                3:04      18     131
## 2227           24        FALSE                2:51       5      92
## 2228           13        FALSE                2:25      18     144
## 2229           11        FALSE                2:16       5     130
## 2230   -214748365         TRUE                2:08       5      98
## 2231   -214748365         TRUE                2:08       5      99
## 2232            9        FALSE                1:53      18     132
## 2233            1         TRUE                1:45       5     109
## 2234            1        FALSE                54.7       5      95
## 2235            5         TRUE                52.0       5      92
## 2236            5        FALSE                25.1       5     114
## 2237            1         TRUE                 0.4      18     110
## 2238            2        FALSE                9:39       5     132
## 2239            0        FALSE                9:32       5      95
## 2240           16         TRUE                9:11       5     146
## 2241           15        FALSE                8:55      18      92
## 2242           18        FALSE                8:25      18     131
## 2243            2        FALSE                8:14       5      92
## 2244            3         TRUE                8:00      18     141
## 2245           23        FALSE                7:45       5     131
## 2246           20        FALSE                7:22       5      92
## 2247            2         TRUE                7:13      18     109
## 2248           -1         TRUE                7:04       5     110
## 2249            3         TRUE                6:44      18     141
## 2250           16        FALSE                6:15       5     131
## 2251            4        FALSE                6:04       5     132
## 2252           23         TRUE                5:46      18      92
## 2253            7        FALSE                5:22       5     132
## 2254            0        FALSE                5:16       5      94
## 2255            1         TRUE                5:13       5     141
## 2256            8         TRUE                4:33       5      92
## 2257           11        FALSE                4:02      18     132
## 2258            1         TRUE                3:56      18     110
## 2259   -214748365         TRUE                3:56      18      97
## 2260            7         TRUE                3:30      18      92
## 2261            2         TRUE                3:10       5      93
## 2262            2        FALSE                2:48      18     110
## 2263           16        FALSE                2:32       5      92
## 2264            1         TRUE                2:22      18      92
## 2265            2        FALSE                2:12       5     110
## 2266            7        FALSE                1:49      18      92
## 2267            0         TRUE                1:25       5     141
## 2268            2         TRUE                46.1       5     128
## 2269   -214748365        FALSE                36.4      18      98
## 2270   -214748365        FALSE                36.4      18      99
## 2271           19        FALSE                31.9      18      92
## 2272            4        FALSE                29.1      18      95
## 2273            0        FALSE                26.9      18      94
## 2274            2        FALSE                20.4      18     141
## 2275   -214748365         TRUE                 9.7       5      98
## 2276   -214748365         TRUE                 9.7       5      99
## 2277   -214748365         TRUE                9:47      18      98
## 2278   -214748365         TRUE                9:47      18      99
## 2279            3        FALSE                9:29       5     132
## 2280            1         TRUE                9:23      18     109
## 2281            1         TRUE                8:49      18     141
## 2282            6        FALSE                8:21       5     121
## 2283            8        FALSE                8:04      18     114
## 2284           18        FALSE                7:47       5      92
## 2285           15        FALSE                7:29      18     131
## 2286            1         TRUE                7:17      18     141
## 2287            2        FALSE                6:52      18     110
## 2288            7        FALSE                6:38       5      92
## 2289           25        FALSE                6:10      18      92
## 2290            0         TRUE                5:57      18     109
## 2291           10        FALSE                5:42       5     144
## 2292            0         TRUE                5:35       5     141
## 2293   -214748365         TRUE                5:18       5      98
## 2294   -214748365         TRUE                5:18       5      99
## 2295            0        FALSE                4:58      18      92
## 2296           14         TRUE                4:45       5     131
## 2297           18         TRUE                4:32      18     131
## 2298           -1        FALSE                4:15       5      95
## 2299            3         TRUE                3:59      18     110
## 2300            1        FALSE                3:48       5     110
## 2301            1         TRUE                3:42      18     109
## 2302            1         TRUE                3:22       5      95
## 2303            3        FALSE                2:44       5      92
## 2304            5        FALSE                2:27      18     110
## 2305            9        FALSE                2:20      18      92
## 2306           -2         TRUE                2:00       5      92
## 2307            1         TRUE                1:42      18     110
## 2308           12         TRUE                1:28       5      92
## 2309           23        FALSE                1:07      18      92
## 2310   -214748365         TRUE                48.4       5      98
## 2311   -214748365         TRUE                48.4       5      99
## 2312            1         TRUE                26.3      18     110
## 2313           12        FALSE                21.5       5      92
## 2314   -214748365         TRUE                12.8       5      98
## 2315   -214748365         TRUE                12.8       5      99
## 2316           13        FALSE                9:46      14      92
## 2317            1         TRUE                9:34       8      95
## 2318   -214748365        FALSE                9:34       8      97
## 2319           10        FALSE                9:14      14     131
## 2320            2         TRUE                8:46      14      92
## 2321            3         TRUE                8:22       8     137
## 2322           23         TRUE                7:59       8      92
## 2323            4        FALSE                7:27       8     110
## 2324           16        FALSE                7:18      14      92
## 2325   -214748365        FALSE                6:57       8      98
## 2326   -214748365         TRUE                6:57       8      99
## 2327           21        FALSE                6:24       8      92
## 2328           13        FALSE                6:13      14      92
## 2329            2         TRUE                6:00       8      95
## 2330            9         TRUE                5:36      14      92
## 2331            1         TRUE                5:13       8     110
## 2332            3        FALSE                5:03      14     130
## 2333           15         TRUE                4:45      14      92
## 2334            4         TRUE                4:30       8      92
## 2335           18         TRUE                4:16      14      92
## 2336            7         TRUE                3:27       8     131
## 2337            9        FALSE                3:09      14      92
## 2338            1        FALSE                2:59       8      95
## 2339            1         TRUE                2:54       8     125
## 2340            3        FALSE                2:39      14     110
## 2341   -214748365         TRUE                2:29       8      98
## 2342   -214748365         TRUE                2:29       8      99
## 2343           16         TRUE                2:16      14      92
## 2344            5         TRUE                1:48       8     129
## 2345           15         TRUE                1:34      14     131
## 2346            1         TRUE                1:15       8      95
## 2347            4         TRUE                47.7       8      92
## 2348           17        FALSE                35.7      14     131
## 2349            9        FALSE                22.5       8      92
## 2350           19        FALSE                 0.0       8      92
## 2351   -214748365         TRUE                9:48       8      98
## 2352   -214748365        FALSE                9:48       8      99
## 2353            0        FALSE                9:40      14     128
## 2354            3        FALSE                9:33      14     120
## 2355           20        FALSE                9:27      14      92
## 2356            1        FALSE                9:09       8      95
## 2357            1        FALSE                9:06       8      95
## 2358            4         TRUE                8:56       8     110
## 2359           10        FALSE                8:38      14     114
## 2360            0         TRUE                8:19      14     112
## 2361            5        FALSE                8:07       8      92
## 2362   -214748365         TRUE                7:54      14      98
## 2363   -214748365         TRUE                7:54      14      99
## 2364            2         TRUE                7:32       8      92
## 2365            0        FALSE                7:15      14      92
## 2366            1        FALSE                7:04       8     112
## 2367            3         TRUE                6:41       8     130
## 2368            9         TRUE                6:23      14      92
## 2369            1         TRUE                6:11       8     141
## 2370            7        FALSE                5:56      14     130
## 2371            4        FALSE                5:37       8      92
## 2372           15        FALSE                5:28      14     131
## 2373           -1         TRUE                5:02      14     110
## 2374           22        FALSE                4:34       8      92
## 2375           22        FALSE                4:19      14     132
## 2376           22         TRUE                4:05       8      92
## 2377            4        FALSE                3:36       8     110
## 2378   -214748365         TRUE                3:34       8      98
## 2379   -214748365         TRUE                3:34       8      99
## 2380           10        FALSE                3:22      14     121
## 2381           18        FALSE                3:05      14      92
## 2382           22         TRUE                2:46       8      92
## 2383            2         TRUE                2:23      14      92
## 2384            1        FALSE                1:59       8     141
## 2385            2        FALSE                1:48      14      92
## 2386   -214748365         TRUE                1:40       8      98
## 2387   -214748365        FALSE                1:40       8      99
## 2388           13        FALSE                1:34       8      92
## 2389            8        FALSE                1:22       8     114
## 2390            6         TRUE                1:04      14     128
## 2391   -214748365         TRUE                50.7       8      98
## 2392   -214748365         TRUE                50.7       8      99
## 2393           10         TRUE                34.7      14      92
## 2394            6         TRUE                18.8       8     137
## 2395            0         TRUE                10.2      14     141
## 2396           19        FALSE                 0.0       8      92
## 2397            7        FALSE                9:37       8      92
## 2398            1        FALSE                9:14      14      92
## 2399            3         TRUE                9:09      14      92
## 2400   -214748365         TRUE                8:56       8      98
## 2401   -214748365        FALSE                8:56       8      99
## 2402           25         TRUE                8:45      14      92
## 2403           -1        FALSE                8:33       8      95
## 2404            0        FALSE                8:30       8      95
## 2405            1        FALSE                8:17      14      92
## 2406           21        FALSE                8:07       8      92
## 2407           26        FALSE                7:46       8      92
## 2408            9         TRUE                7:14       8     131
## 2409           18         TRUE                6:22      14      92
## 2410            1         TRUE                6:00      14      95
## 2411           -1        FALSE                5:43       8      95
## 2412           -1        FALSE                5:41       8      95
## 2413            2        FALSE                5:31      14      95
## 2414            1        FALSE                5:28      14     125
## 2415            6         TRUE                5:21       8     130
## 2416           24        FALSE                5:06      14      92
## 2417           12        FALSE                4:41       8      92
## 2418            1        FALSE                4:32      14     110
## 2419           21         TRUE                4:26      14      92
## 2420           22        FALSE                4:14       8      92
## 2421           25         TRUE                4:10       8      92
## 2422           24        FALSE                3:54      14      92
## 2423            2        FALSE                3:40       8     137
## 2424            0         TRUE                3:21       8      95
## 2425   -214748365         TRUE                3:14      14      98
## 2426   -214748365        FALSE                3:14      14      99
## 2427           22         TRUE                2:40      14      92
## 2428           15        FALSE                2:22       8     131
## 2429            0         TRUE                1:48       8      95
## 2430            0         TRUE                1:34      14     110
## 2431            0         TRUE                1:13      14      95
## 2432           10         TRUE                50.8       8      92
## 2433           12        FALSE                30.7       8      92
## 2434   -214748365        FALSE                18.5      14      98
## 2435   -214748365        FALSE                18.5      14      99
## 2436            3        FALSE                 0.0      14     128
## 2437           23        FALSE                9:44      14      92
## 2438           -1         TRUE                9:34       8     110
## 2439            2        FALSE                9:20      14      92
## 2440            0         TRUE                9:13       8     110
## 2441           20         TRUE                8:28      14      92
## 2442            3        FALSE                8:05       8     110
## 2443            1         TRUE                7:58      14     141
## 2444            2         TRUE                7:45       8     120
## 2445           18        FALSE                7:36      14      92
## 2446            0         TRUE                7:19       8     141
## 2447   -214748365         TRUE                7:04      14      98
## 2448   -214748365         TRUE                7:04      14      99
## 2449            7        FALSE                6:48       8      92
## 2450           27         TRUE                6:36      14      92
## 2451            6        FALSE                6:11       8      92
## 2452           15         TRUE                5:59      14     131
## 2453           -1        FALSE                5:37       8     141
## 2454   -214748365         TRUE                5:32      14      98
## 2455   -214748365         TRUE                5:32      14      99
## 2456            0         TRUE                5:18       8      95
## 2457            3        FALSE                4:59      14     110
## 2458           -1         TRUE                4:44       8      95
## 2459            1         TRUE                4:33      14     141
## 2460   -214748365         TRUE                4:14      14      98
## 2461   -214748365         TRUE                4:14      14      99
## 2462            0         TRUE                3:50      14     110
## 2463   -214748365        FALSE                3:36       8      98
## 2464   -214748365        FALSE                3:36       8      99
## 2465   -214748365         TRUE                3:22      14      98
## 2466   -214748365         TRUE                3:22      14      99
## 2467            0        FALSE                3:07       8     128
## 2468           14         TRUE                3:01      14      92
## 2469           20        FALSE                2:44       8      92
## 2470            0         TRUE                2:32      14      95
## 2471           21        FALSE                2:14       8      92
## 2472            1         TRUE                1:54      14      95
## 2473            0        FALSE                1:42       8     141
## 2474   -214748365         TRUE                1:35      14      98
## 2475   -214748365         TRUE                1:35      14      99
## 2476   -214748365         TRUE                1:20       8      98
## 2477   -214748365         TRUE                1:20       8      99
## 2478   -214748365         TRUE                1:06      14      98
## 2479   -214748365         TRUE                1:06      14      99
## 2480   -214748365        FALSE                1:01       8      98
## 2481   -214748365         TRUE                1:01       8      99
## 2482   -214748365         TRUE                1:00      14      98
## 2483   -214748365        FALSE                1:00      14      99
## 2484            9        FALSE                45.8      14     114
## 2485            0        FALSE                37.9       8      95
## 2486           22         TRUE                20.6      14      92
## 2487           24        FALSE                 7.9       8     132
## 2488           -1        FALSE                9:39      20      92
## 2489            4        FALSE                9:21       5      92
## 2490            1        FALSE                9:07      20     145
## 2491           17        FALSE                8:56       5      92
## 2492           23        FALSE                8:45      20     131
## 2493           17        FALSE                8:23      20     131
## 2494            3         TRUE                8:12      20     132
## 2495           -1        FALSE                7:45      20     109
## 2496            2        FALSE                7:35       5     110
## 2497           18        FALSE                7:22      20     131
## 2498           25        FALSE                7:15       5     146
## 2499            0         TRUE                6:56      20      92
## 2500           24        FALSE                6:34       5      92
## 2501            0        FALSE                6:28       5      95
## 2502            9         TRUE                6:13      20     131
## 2503            0         TRUE                5:53       5      95
## 2504            2         TRUE                5:44      20     128
## 2505            1         TRUE                5:37       5     128
## 2506   -214748365         TRUE                5:37       5      97
## 2507            4        FALSE                5:24      20     130
## 2508           17         TRUE                5:14       5     131
## 2509           -2         TRUE                5:00      20     131
## 2510            3         TRUE                4:37       5     128
## 2511           21        FALSE                4:16      20     131
## 2512            1        FALSE                3:58       5      95
## 2513           12        FALSE                3:42      20     131
## 2514            0        FALSE                3:38      20     110
## 2515           -2        FALSE                3:28      20     131
## 2516            0        FALSE                3:05       5     128
## 2517            9         TRUE                2:57       5      92
## 2518            1         TRUE                2:45      20      95
## 2519            0        FALSE                2:31       5      92
## 2520            1        FALSE                2:11      20     114
## 2521           10         TRUE                2:03       5     146
## 2522            1        FALSE                1:37      20     112
## 2523            0         TRUE                1:17      20      92
## 2524           23        FALSE                56.2       5     131
## 2525   -214748365        FALSE                45.9      20      98
## 2526   -214748365         TRUE                45.9      20      99
## 2527            3         TRUE                30.8       5      92
## 2528           10        FALSE                20.4      20      92
## 2529           14        FALSE                 0.6       5      92
## 2530           21         TRUE                9:43       5      92
## 2531            8         TRUE                9:17      20     130
## 2532            4         TRUE                8:57       5      92
## 2533           24        FALSE                8:41      20     131
## 2534           18        FALSE                8:31       5      92
## 2535            0         TRUE                8:11      20     110
## 2536            6        FALSE                7:53       5     131
## 2537            2         TRUE                7:48      20     109
## 2538   -214748365         TRUE                7:13      20      98
## 2539   -214748365         TRUE                7:13      20      99
## 2540            6         TRUE                6:50       5     131
## 2541           -1        FALSE                6:33      20      92
## 2542            1         TRUE                6:23       5      95
## 2543            0         TRUE                5:40      20     109
## 2544            8         TRUE                5:18       5      92
## 2545   -214748365         TRUE                5:02      20      98
## 2546   -214748365         TRUE                5:02      20      99
## 2547           28        FALSE                4:37      20      92
## 2548            8        FALSE                4:20       5     131
## 2549            0         TRUE                4:16       5      94
## 2550           19        FALSE                4:01      20      92
## 2551   -214748365        FALSE                3:49       5      98
## 2552   -214748365         TRUE                3:49       5      99
## 2553           -1         TRUE                3:45      20     110
## 2554           10        FALSE                3:27       5     114
## 2555            2         TRUE                3:16      20      95
## 2556            8         TRUE                3:04       5      92
## 2557            1        FALSE                2:52      20     110
## 2558   -214748365        FALSE                2:16      20      98
## 2559   -214748365         TRUE                2:16      20      99
## 2560            0         TRUE                1:52      20      92
## 2561           24        FALSE                1:34       5      92
## 2562            3        FALSE                1:15      20     110
## 2563            2        FALSE                1:06       5     110
## 2564            6        FALSE                50.2       5     110
## 2565            6         TRUE                47.8       5      92
## 2566            9         TRUE                40.9      20      92
## 2567           11        FALSE                28.8       5      92
## 2568   -214748365         TRUE                 3.7      20      98
## 2569   -214748365         TRUE                 3.7      20      99
## 2570            0        FALSE                9:13       5     110
## 2571           11        FALSE                8:59      20     131
## 2572           18         TRUE                8:39       5     131
## 2573            1        FALSE                8:29      20     130
## 2574            1        FALSE                8:22      20     110
## 2575           16         TRUE                8:07       5     131
## 2576           16        FALSE                7:49      20      92
## 2577            0        FALSE                7:44      20     125
## 2578            3         TRUE                7:33       5     141
## 2579            3        FALSE                7:21      20     110
## 2580            0        FALSE                7:14       5     109
## 2581            1        FALSE                7:00       5     110
## 2582            1         TRUE                6:50       5     132
## 2583            9        FALSE                6:30      20     114
## 2584           19         TRUE                6:26      20      92
## 2585           17         TRUE                6:09       5      92
## 2586           19        FALSE                5:44      20      92
## 2587            0         TRUE                5:36       5     110
## 2588            2        FALSE                5:24      20      92
## 2589            1        FALSE                5:11      20     128
## 2590            5        FALSE                5:06      20      92
## 2591            1         TRUE                4:58       5     127
## 2592            9         TRUE                4:41      20     144
## 2593            2         TRUE                4:26       5      92
## 2594            9         TRUE                3:50      20     131
## 2595            2        FALSE                3:14      20      95
## 2596           13        FALSE                3:04       5     131
## 2597           24        FALSE                3:00       5      92
## 2598           18        FALSE                2:37      20     131
## 2599           13        FALSE                2:18       5      92
## 2600           11        FALSE                2:08      20     130
## 2601           18         TRUE                1:58      20      92
## 2602            0         TRUE                1:37       5      92
## 2603           23         TRUE                1:23      20      92
## 2604           20         TRUE                1:06       5     131
## 2605           25         TRUE                55.9      20      92
## 2606   -214748365         TRUE                42.2       5      98
## 2607   -214748365         TRUE                42.2       5      99
## 2608   -214748365         TRUE                25.8      20      98
## 2609   -214748365        FALSE                25.8      20      99
## 2610   -214748365         TRUE                 5.7       5      98
## 2611   -214748365        FALSE                 5.7       5      99
## 2612           16        FALSE                 0.0      20     144
## 2613            2         TRUE                9:44      20     128
## 2614            0         TRUE                9:23       5      92
## 2615            3        FALSE                9:01      20     141
## 2616            1        FALSE                8:41       5      92
## 2617            3         TRUE                8:23      20      92
## 2618           19        FALSE                8:06       5     131
## 2619            2        FALSE                7:46      20     110
## 2620            8        FALSE                7:36       5     131
## 2621           27        FALSE                7:24      20      92
## 2622           22         TRUE                7:10       5     132
## 2623            1        FALSE                6:45      20     114
## 2624            0        FALSE                6:42      20     125
## 2625            2         TRUE                6:26       5      95
## 2626   -214748365         TRUE                6:11      20      98
## 2627   -214748365         TRUE                6:11      20      99
## 2628            0        FALSE                5:54       5     131
## 2629           26        FALSE                5:12      20     131
## 2630           17        FALSE                4:54       5     131
## 2631            2        FALSE                4:44       5      95
## 2632            2         TRUE                4:34      20      92
## 2633   -214748365         TRUE                4:18       5      98
## 2634   -214748365         TRUE                4:18       5      99
## 2635            1        FALSE                4:10      20     110
## 2636           13         TRUE                4:06      20      92
## 2637           25        FALSE                3:41       5     131
## 2638           23         TRUE                3:22      20      92
## 2639            1        FALSE                3:09       5     128
## 2640            2         TRUE                3:01      20     109
## 2641            2        FALSE                2:51       5     110
## 2642            1         TRUE                2:50       5      95
## 2643            1         TRUE                2:34      20      92
## 2644   -214748365         TRUE                2:20       5      98
## 2645   -214748365         TRUE                2:20       5      99
## 2646            3         TRUE                2:01      20     131
## 2647           -2         TRUE                1:41       5      92
## 2648            0        FALSE                1:27      20     110
## 2649   -214748365         TRUE                1:27       5      98
## 2650   -214748365         TRUE                1:27       5      99
## 2651            2         TRUE                1:07      20     110
## 2652           -3         TRUE                1:05       5      92
## 2653           17        FALSE                36.8      20     131
## 2654            5        FALSE                33.7      20      93
## 2655           -3        FALSE                25.6       5      92
## 2656           28        FALSE                 8.8       5     131
## 2657   -214748365        FALSE                 4.5      20      98
## 2658   -214748365         TRUE                 4.5      20      99
## 2659            2        FALSE                9:43      16      93
## 2660           17         TRUE                9:40      16      92
## 2661           23        FALSE                9:16       9      92
## 2662            4        FALSE                9:08      16     109
## 2663            3        FALSE                8:58       9     141
## 2664           23         TRUE                8:50      16     131
## 2665            1         TRUE                8:20      16      95
## 2666            3         TRUE                8:10       9     141
## 2667            1        FALSE                8:00      16     109
## 2668            2         TRUE                7:52       9     109
## 2669           16        FALSE                7:43      16     131
## 2670           11         TRUE                7:31       9     121
## 2671           11         TRUE                7:15      16      92
## 2672            7         TRUE                6:59       9      92
## 2673            2         TRUE                6:46       9     141
## 2674            1         TRUE                6:37      16     141
## 2675            4        FALSE                6:24       9      95
## 2676           12        FALSE                6:18       9     114
## 2677           19         TRUE                6:09       9      92
## 2678           19        FALSE                5:58      16     131
## 2679           10        FALSE                5:39       9      92
## 2680           12        FALSE                5:35      16     131
## 2681            2        FALSE                5:07       9      92
## 2682   -214748365         TRUE                4:56      16     103
## 2683           -1        FALSE                4:38      16      92
## 2684            2        FALSE                4:27      16      93
## 2685            3        FALSE                4:05       9     109
## 2686           23         TRUE                3:40      16      92
## 2687           21        FALSE                3:32       9      92
## 2688           22         TRUE                3:16      16      92
## 2689           10        FALSE                3:06       9     109
## 2690   -214748365         TRUE                2:49      16      98
## 2691   -214748365         TRUE                2:49      16      99
## 2692            7        FALSE                2:29      16     121
## 2693           18         TRUE                1:53      16      92
## 2694            4        FALSE                1:05      16      95
## 2695            0         TRUE                1:02      16      95
## 2696           16        FALSE                37.7       9     131
## 2697           20         TRUE                20.5      16     131
## 2698   -214748365         TRUE                 7.0       9      98
## 2699   -214748365        FALSE                 7.0       9      99
## 2700            2         TRUE                9:44       9     141
## 2701           17        FALSE                9:30      16      92
## 2702           12         TRUE                9:20       9      92
## 2703           14         TRUE                8:58      16      92
## 2704            1         TRUE                8:44       9     141
## 2705           -1        FALSE                8:34      16      92
## 2706           19         TRUE                8:18       9      92
## 2707            4         TRUE                7:57      16      93
## 2708           23        FALSE                7:48       9      92
## 2709           12         TRUE                7:36      16     137
## 2710            2         TRUE                7:23       9     110
## 2711            3         TRUE                7:03       9     110
## 2712            0        FALSE                6:49      16      95
## 2713           -2        FALSE                6:32       9      92
## 2714           19        FALSE                6:07      16      92
## 2715           24        FALSE                5:57       9      92
## 2716           -2         TRUE                5:40      16      92
## 2717            1         TRUE                5:22       9      92
## 2718           16        FALSE                5:05      16      92
## 2719           25        FALSE                5:01      16      92
## 2720            3         TRUE                4:47      16      92
## 2721           25         TRUE                4:27       9      92
## 2722            7        FALSE                4:11      16      93
## 2723           20         TRUE                3:50       9      92
## 2724   -214748365         TRUE                3:39      16      98
## 2725   -214748365         TRUE                3:39      16      99
## 2726           22         TRUE                3:08      16      92
## 2727            9        FALSE                2:53       9      95
## 2728            1         TRUE                2:49       9      95
## 2729   -214748365         TRUE                2:38      16      98
## 2730   -214748365         TRUE                2:38      16      99
## 2731            3         TRUE                2:27       9     109
## 2732           17         TRUE                2:02       9     146
## 2733           -1        FALSE                1:44      16      92
## 2734           13         TRUE                1:34      16     132
## 2735           21        FALSE                1:11       9      92
## 2736            4         TRUE                55.8      16     109
## 2737            8         TRUE                41.6       9     137
## 2738            5        FALSE                25.8      16      92
## 2739           18        FALSE                16.2       9     146
## 2740            1        FALSE                 0.1      16     109
## 2741           23        FALSE                9:48       9      92
## 2742            2         TRUE                9:34      16     128
## 2743            1        FALSE                9:16       9     126
## 2744            6         TRUE                9:06      16     110
## 2745           18        FALSE                8:47       9     131
## 2746   -214748365         TRUE                8:28       9      98
## 2747   -214748365         TRUE                8:28       9      99
## 2748   -214748365         TRUE                8:21       9     103
## 2749           26         TRUE                8:15      16      92
## 2750           18         TRUE                7:49      16      92
## 2751            2         TRUE                7:24       9     141
## 2752            3         TRUE                7:12      16     123
## 2753           22        FALSE                6:53       9      92
## 2754            6        FALSE                6:32       9      92
## 2755           28        FALSE                6:16      16      92
## 2756            0        FALSE                6:08       9     110
## 2757           23        FALSE                5:58      16      92
## 2758            1        FALSE                5:38       9     114
## 2759           14         TRUE                5:19      16     132
## 2760            4        FALSE                4:54       9     131
## 2761            2        FALSE                4:46      16      95
## 2762            4        FALSE                4:40      16      95
## 2763            5        FALSE                4:26       9     146
## 2764            0         TRUE                4:12      16      92
## 2765           23         TRUE                3:53       9      92
## 2766           27        FALSE                3:38      16      92
## 2767           11        FALSE                3:29      16     137
## 2768           22         TRUE                3:11       9      92
## 2769           21         TRUE                2:53      16      92
## 2770            5        FALSE                2:35       9      95
## 2771            3         TRUE                2:33       9     125
## 2772            9        FALSE                2:12       9      92
## 2773           17        FALSE                1:50      16      92
## 2774   -214748365         TRUE                1:48      16      98
## 2775   -214748365         TRUE                1:48      16      99
## 2776   -214748365         TRUE                1:18      16      98
## 2777   -214748365        FALSE                1:18      16      99
## 2778            2        FALSE                55.2      16     109
## 2779            1        FALSE                54.2      16     138
## 2780           21         TRUE                43.6       9      92
## 2781            3        FALSE                22.4      16      95
## 2782            4        FALSE                12.3      16      95
## 2783            1         TRUE                 5.1       9      95
## 2784            2         TRUE                 1.3      16      95
## 2785   -214748365        FALSE                 1.3      16      97
## 2786   -214748365         TRUE                9:44      16      98
## 2787   -214748365         TRUE                9:44      16      99
## 2788            4         TRUE                9:23      16      95
## 2789           21        FALSE                9:04       9     131
## 2790   -214748365         TRUE                8:45      16     103
## 2791            2         TRUE                8:37      16     116
## 2792            8        FALSE                8:19       9     131
## 2793            9        FALSE                7:58      16     121
## 2794            2         TRUE                7:26      16      92
## 2795            2        FALSE                7:15       9     137
## 2796           17        FALSE                6:53      16     131
## 2797           23        FALSE                6:35       9      92
## 2798            5         TRUE                6:15      16      93
## 2799            6        FALSE                5:43      16      95
## 2800            9        FALSE                5:29      16     123
## 2801            3         TRUE                5:26      16     125
## 2802            8         TRUE                4:53       9      92
## 2803            8        FALSE                4:38      16     131
## 2804            6        FALSE                4:28       9     110
## 2805            0        FALSE                3:56       9      92
## 2806           27         TRUE                3:45      16      92
## 2807            9         TRUE                3:45       9      95
## 2808           27        FALSE                3:11      16      92
## 2809           22        FALSE                2:58       9      92
## 2810   -214748365         TRUE                2:50      16      98
## 2811   -214748365         TRUE                2:50      16      99
## 2812            5        FALSE                2:31       9     110
## 2813            1        FALSE                2:08       9     110
## 2814            3         TRUE                1:53      16     110
## 2815            1        FALSE                1:34       9     110
## 2816           16         TRUE                1:24      16     132
## 2817            1         TRUE                1:09       9     141
## 2818           25        FALSE                54.0      16      92
## 2819   -214748365        FALSE                45.2       9      98
## 2820   -214748365         TRUE                45.2       9      99
## 2821            0        FALSE                30.0      16     109
## 2822           24         TRUE                9:33      18      92
## 2823            5        FALSE                9:05      11     144
## 2824           15        FALSE                8:44      18     131
## 2825            3         TRUE                8:31      18     141
## 2826           10        FALSE                8:16      11     121
## 2827           23         TRUE                7:52      18      92
## 2828           21         TRUE                7:28      18     113
## 2829            5        FALSE                7:11      11     121
## 2830           29        FALSE                6:47      18      92
## 2831            0         TRUE                6:32      11     126
## 2832            3         TRUE                6:15      18      95
## 2833            0         TRUE                6:00      11     141
## 2834           15         TRUE                5:36      18      92
## 2835           25         TRUE                5:11      11      92
## 2836            3         TRUE                4:55      18     141
## 2837           25        FALSE                4:43      11      92
## 2838            1        FALSE                4:39      11     125
## 2839           32        FALSE                4:30      18      92
## 2840            6         TRUE                4:22      18      92
## 2841           14         TRUE                4:08      11      92
## 2842           19        FALSE                3:33      11      92
## 2843            7        FALSE                3:18      18     120
## 2844            1         TRUE                3:15      18     125
## 2845            6        FALSE                3:04      11     144
## 2846   -214748365         TRUE                3:02      11      98
## 2847   -214748365         TRUE                3:02      11      99
## 2848           11        FALSE                2:41      18     131
## 2849            2        FALSE                2:34      18     110
## 2850            4        FALSE                2:14      11     128
## 2851            2        FALSE                1:57      18     141
## 2852            3         TRUE                1:43      11     144
## 2853           26        FALSE                1:22      18      92
## 2854           24         TRUE                1:09      11      92
## 2855            3        FALSE                51.1      18     110
## 2856           22        FALSE                43.8      11     113
## 2857            8         TRUE                19.4      18      92
## 2858            3        FALSE                 0.2      11      92
## 2859            1        FALSE                9:41      11      92
## 2860            7        FALSE                9:27      18      92
## 2861           -1        FALSE                9:10      11      92
## 2862           25        FALSE                8:58      18      92
## 2863            2         TRUE                8:38      18     110
## 2864            4         TRUE                8:26      11     144
## 2865   -214748365         TRUE                8:26      11      97
## 2866           30        FALSE                8:16      18      92
## 2867            6        FALSE                8:08      18      92
## 2868            9        FALSE                8:04      18      92
## 2869            1         TRUE                7:57      11     109
## 2870            3         TRUE                7:42      18     110
## 2871   -214748365         TRUE                7:34      11      98
## 2872   -214748365        FALSE                7:34      11      99
## 2873           17         TRUE                7:13      18     137
## 2874            3         TRUE                6:54      11     139
## 2875            4         TRUE                6:45      18      92
## 2876            1        FALSE                6:25      11     141
## 2877            3         TRUE                6:12      18     126
## 2878            3         TRUE                5:49      18     109
## 2879            5        FALSE                5:35      11     136
## 2880           16         TRUE                5:15      18      92
## 2881            5        FALSE                4:58      11     144
## 2882           23        FALSE                4:44      18     132
## 2883            2         TRUE                4:40      18     125
## 2884            3        FALSE                4:17      11     128
## 2885            0        FALSE                4:10      11      94
## 2886   -214748365         TRUE                3:41      11      98
## 2887   -214748365        FALSE                3:41      11      99
## 2888           21        FALSE                3:26      18      92
## 2889           16        FALSE                2:59      11      92
## 2890   -214748365         TRUE                2:42      18      98
## 2891   -214748365         TRUE                2:42      18      99
## 2892           -1        FALSE                1:56      11      92
## 2893           11         TRUE                1:39      18     131
## 2894   -214748365         TRUE                1:13      18      98
## 2895   -214748365         TRUE                1:13      18      99
## 2896            3         TRUE                59.5      11     119
## 2897            3         TRUE                32.0      11     144
## 2898            5        FALSE                15.6      18     134
## 2899            0        FALSE                10.7      18     138
## 2900            3        FALSE                 9.3      18     126
## 2901            3        FALSE                 1.7      11     109
## 2902            8         TRUE                9:42      11     120
## 2903           -2        FALSE                9:21      18     137
## 2904           -1        FALSE                8:51      18     137
## 2905           12         TRUE                8:41      11      92
## 2906            2         TRUE                8:26      18     110
## 2907           26         TRUE                8:10      11      92
## 2908           12        FALSE                7:50      18      92
## 2909           23        FALSE                7:34      11     131
## 2910            6        FALSE                7:19      18      92
## 2911            2         TRUE                7:09      11     110
## 2912            1        FALSE                6:51      18      95
## 2913            0        FALSE                6:50      18      94
## 2914            7         TRUE                6:36      18     114
## 2915           18        FALSE                6:20      11      92
## 2916           22         TRUE                5:55      18      92
## 2917   -214748365         TRUE                5:43      11      98
## 2918   -214748365         TRUE                5:43      11      99
## 2919           19         TRUE                5:30      18      92
## 2920           11        FALSE                5:04      11     114
## 2921   -214748365         TRUE                5:01      11      98
## 2922   -214748365         TRUE                5:01      11      99
## 2923   -214748365         TRUE                4:44      18     103
## 2924           24        FALSE                4:36      18      92
## 2925            2        FALSE                4:18      11     120
## 2926            7        FALSE                3:39      11      92
## 2927           17        FALSE                3:36      11      92
## 2928            1         TRUE                3:16      18      95
## 2929   -214748365        FALSE                2:58      11      98
## 2930   -214748365         TRUE                2:58      11      99
## 2931            4        FALSE                2:47      18     136
## 2932            3        FALSE                2:24      11     141
## 2933           27        FALSE                2:18      11      92
## 2934           19        FALSE                1:54      18      92
## 2935           20         TRUE                1:40      18      92
## 2936            9        FALSE                1:27      11     145
## 2937            0        FALSE                1:13      18      95
## 2938            3        FALSE                1:02      11     126
## 2939           24        FALSE                40.5      11      92
## 2940            3         TRUE                21.7      11     109
## 2941           21        FALSE                 3.0      18     132
## 2942           12        FALSE                 0.2      18      92
## 2943            2         TRUE                9:48      18     110
## 2944           19        FALSE                9:34      11     131
## 2945           13        FALSE                9:28      11     131
## 2946            0        FALSE                9:05      18     112
## 2947            1        FALSE                9:02      18     125
## 2948           15         TRUE                8:46      11      92
## 2949            2         TRUE                8:32      18     110
## 2950            9        FALSE                8:15      11     144
## 2951            1        FALSE                7:50      18     114
## 2952            7        FALSE                7:42      18     110
## 2953            1        FALSE                7:31      18     110
## 2954            3         TRUE                7:28      18     125
## 2955           21        FALSE                7:21      11      92
## 2956   -214748365         TRUE                7:16      18      97
## 2957            8        FALSE                7:01      18     122
## 2958            7         TRUE                6:52      11     145
## 2959   -214748365        FALSE                6:52      11      97
## 2960           25        FALSE                6:28      11     132
## 2961            3         TRUE                6:13      11     109
## 2962            9        FALSE                5:53      18     114
## 2963           23         TRUE                5:38      18     131
## 2964            9         TRUE                5:22      11     144
## 2965            1         TRUE                5:07      18     110
## 2966            3        FALSE                4:53      11     141
## 2967           19        FALSE                4:35      18      92
## 2968            6         TRUE                4:10      11      92
## 2969           18         TRUE                3:49      18      92
## 2970            3        FALSE                3:31      11     110
## 2971            0        FALSE                3:28      11      94
## 2972            0        FALSE                3:21      18     110
## 2973            3         TRUE                3:13      11     109
## 2974            6         TRUE                2:51      18     110
## 2975            3        FALSE                2:39      11      92
## 2976            8         TRUE                2:27      11      93
## 2977            5         TRUE                2:07      18      95
## 2978            3         TRUE                1:52      11     126
## 2979            0        FALSE                1:28      18      92
## 2980            4        FALSE                1:07      11     130
## 2981            2        FALSE                53.6      18     110
## 2982            2         TRUE                46.1      18      92
## 2983            3         TRUE                37.2      11     128
## 2984   -214748365        FALSE                26.6      18      98
## 2985   -214748365        FALSE                26.6      18      99
## 2986           26        FALSE                16.9      11      92
## 2987            8         TRUE                 5.3      11     134
## 2988           25         TRUE                9:35       6      92
## 2989            2        FALSE                9:20      17      95
## 2990            1         TRUE                9:14      17      95
## 2991            3        FALSE                8:43      17     148
## 2992            4         TRUE                8:36      17      92
## 2993            2         TRUE                8:23       6     148
## 2994           10        FALSE                8:07      17     131
## 2995            1         TRUE                7:55       6     114
## 2996           22        FALSE                7:33       6      92
## 2997           10        FALSE                7:09      17      92
## 2998            5        FALSE                6:54       6      95
## 2999            3         TRUE                6:49      17      95
## 3000           23        FALSE                6:29       6     131
## 3001            5         TRUE                6:20      17     130
## 3002            3         TRUE                6:02       6     110
## 3003            1        FALSE                5:47      17     137
## 3004   -214748365         TRUE                5:38       6      98
## 3005   -214748365         TRUE                5:38       6      99
## 3006            4        FALSE                5:25      17      95
## 3007            8         TRUE                5:09       6     141
## 3008            1         TRUE                4:56      17     114
## 3009           11        FALSE                4:34       6      92
## 3010            5         TRUE                4:28       6      95
## 3011            6         TRUE                4:07      17      95
## 3012            4        FALSE                3:54      17     110
## 3013            5        FALSE                3:44       6     132
## 3014            3         TRUE                3:37      17      95
## 3015            4        FALSE                3:30       6     110
## 3016            1         TRUE                3:21      17      95
## 3017           25         TRUE                3:00       6      92
## 3018   -214748365        FALSE                2:43      17      98
## 3019   -214748365         TRUE                2:43      17      99
## 3020            9        FALSE                2:28       6     110
## 3021           16         TRUE                2:18      17     131
## 3022           24        FALSE                2:05       6      92
## 3023            9         TRUE                1:51      17     114
## 3024            2        FALSE                1:27       6     110
## 3025           -1         TRUE                1:10      17      92
## 3026           16        FALSE                53.4       6      92
## 3027   -214748365         TRUE                43.8      17      98
## 3028   -214748365         TRUE                43.8      17      99
## 3029   -214748365        FALSE                29.0       6      98
## 3030   -214748365        FALSE                29.0       6      99
##                               type_text away_score
## 1                    Driving Layup Shot          0
## 2                      Pullup Jump Shot          0
## 3                             Jump Shot          0
## 4                    Floating Jump Shot          0
## 5                             Jump Shot          0
## 6                             Jump Shot          0
## 7                             Jump Shot          0
## 8                            Layup Shot          2
## 9                             Jump Shot          2
## 10                     Pullup Jump Shot          4
## 11                  Free Throw - 1 of 2          4
## 12                  Free Throw - 2 of 2          4
## 13                            Jump Shot          4
## 14                 Turnaround Jump Shot          6
## 15                  Step Back Jump Shot          6
## 16                     Pullup Jump Shot          8
## 17                   Driving Layup Shot         10
## 18                     Pullup Jump Shot         10
## 19                           Layup Shot         12
## 20                            Jump Shot         12
## 21                            Jump Shot         12
## 22                           Layup Shot         12
## 23                 Turnaround Hook Shot         12
## 24                            Jump Shot         12
## 25                            Jump Shot         12
## 26                            Jump Shot         12
## 27                            Jump Shot         12
## 28                  Free Throw - 1 of 2         12
## 29                  Free Throw - 2 of 2         12
## 30                            Jump Shot         12
## 31                           Layup Shot         12
## 32                   Layup Shot Putback         12
## 33                            Jump Shot         12
## 34                            Jump Shot         12
## 35                            Jump Shot         12
## 36                           Layup Shot         14
## 37                            Jump Shot         14
## 38                   Driving Layup Shot         14
## 39                  Free Throw - 1 of 2         15
## 40                  Free Throw - 2 of 2         16
## 41                            Jump Shot         19
## 42                            Jump Shot         19
## 43                   Driving Layup Shot         19
## 44                            Jump Shot         19
## 45                           Layup Shot         21
## 46                            Jump Shot         21
## 47                            Jump Shot         21
## 48                            Jump Shot         24
## 49                            Jump Shot         24
## 50                            Jump Shot         24
## 51                   Driving Layup Shot         26
## 52                  Free Throw - 1 of 1         27
## 53                           Layup Shot         27
## 54                           Layup Shot         29
## 55                  Free Throw - 1 of 2         29
## 56                  Free Throw - 2 of 2         29
## 57                            Hook Shot         29
## 58                   Driving Layup Shot         29
## 59                  Step Back Jump Shot         29
## 60                     Pullup Jump Shot         29
## 61                   Driving Layup Shot         29
## 62                            Jump Shot         29
## 63                     Pullup Jump Shot         31
## 64                            Jump Shot         31
## 65                            Jump Shot         31
## 66                   Floating Jump Shot         31
## 67                 Turnaround Jump Shot         31
## 68                            Jump Shot         33
## 69                   Floating Jump Shot         33
## 70                            Jump Shot         33
## 71                            Jump Shot         33
## 72                     Pullup Jump Shot         33
## 73                            Jump Shot         36
## 74                            Jump Shot         36
## 75                     Pullup Jump Shot         36
## 76                   Cutting Layup Shot         36
## 77                           Layup Shot         38
## 78                   Cutting Layup Shot         38
## 79                    Finger Roll Layup         40
## 80                            Jump Shot         40
## 81                  Free Throw - 1 of 2         41
## 82                  Free Throw - 2 of 2         42
## 83                            Jump Shot         42
## 84                            Jump Shot         42
## 85                           Layup Shot         44
## 86                  Free Throw - 1 of 2         45
## 87                  Free Throw - 2 of 2         45
## 88                            Jump Shot         45
## 89                            Jump Shot         45
## 90                           Layup Shot         47
## 91                  Free Throw - 1 of 2         47
## 92                  Free Throw - 2 of 2         47
## 93                            Jump Shot         47
## 94                            Jump Shot         47
## 95                Pullup Bank Jump Shot         47
## 96                            Jump Shot         47
## 97                           Layup Shot         47
## 98           Driving Floating Jump Shot         47
## 99                           Layup Shot         47
## 100                          Layup Shot         49
## 101                           Jump Shot         49
## 102     Driving Floating Bank Jump Shot         49
## 103                Turnaround Jump Shot         49
## 104                  Driving Layup Shot         49
## 105                          Layup Shot         51
## 106                  Cutting Layup Shot         51
## 107                 Step Back Jump Shot         51
## 108                          Layup Shot         51
## 109                          Layup Shot         53
## 110          Driving Floating Jump Shot         53
## 111                    Pullup Jump Shot         53
## 112                           Jump Shot         53
## 113                           Jump Shot         55
## 114           Driving Finger Roll Layup         55
## 115                 Free Throw - 1 of 1         55
## 116     Driving Floating Bank Jump Shot         57
## 117                  Driving Layup Shot         57
## 118                  Cutting Layup Shot         59
## 119                 Free Throw - 1 of 1         60
## 120                  Driving Layup Shot         60
## 121                           Jump Shot         60
## 122                    Pullup Jump Shot         60
## 123                  Driving Layup Shot         62
## 124                           Jump Shot         62
## 125                  Driving Layup Shot         62
## 126                          Layup Shot         62
## 127                           Jump Shot         62
## 128                    Pullup Jump Shot         62
## 129                           Jump Shot         62
## 130                           Jump Shot         62
## 131                Turnaround Jump Shot         62
## 132                          Layup Shot         62
## 133           Driving Finger Roll Layup         64
## 134                           Jump Shot         64
## 135                           Jump Shot         64
## 136                           Jump Shot         64
## 137                           Jump Shot         64
## 138                           Jump Shot         64
## 139          Driving Floating Jump Shot         64
## 140                           Jump Shot         64
## 141      Turnaround Fade Away Jump Shot         64
## 142                  Floating Jump Shot         64
## 143                          Layup Shot         66
## 144                 Free Throw - 1 of 2         66
## 145                 Free Throw - 2 of 2         66
## 146                 Step Back Jump Shot         68
## 147                           Jump Shot         68
## 148                    Pullup Jump Shot         68
## 149                 Step Back Jump Shot         68
## 150                           Jump Shot         68
## 151                           Jump Shot         68
## 152                          Layup Shot         68
## 153                          Layup Shot         68
## 154                  Layup Shot Putback         70
## 155                  Driving Layup Shot         72
## 156                 Free Throw - 1 of 1         73
## 157                    Pullup Jump Shot         75
## 158                  Driving Layup Shot         75
## 159                 Free Throw - 1 of 1         75
## 160                          Layup Shot         75
## 161                          Layup Shot         75
## 162                           Jump Shot         75
## 163                  Floating Jump Shot         75
## 164                          Layup Shot         77
## 165                           Jump Shot         77
## 166                 Free Throw - 1 of 2         77
## 167                 Free Throw - 2 of 2         78
## 168                 Free Throw - 1 of 2         78
## 169                 Free Throw - 2 of 2         78
## 170                          Layup Shot         80
## 171                  Driving Layup Shot         80
## 172                          Layup Shot         82
## 173                           Jump Shot         82
## 174                           Jump Shot         84
## 175                 Free Throw - 1 of 2         84
## 176                 Free Throw - 2 of 2         84
## 177                           Jump Shot         84
## 178                          Layup Shot         84
## 179                           Jump Shot         86
## 180                           Jump Shot         86
## 181                 Free Throw - 1 of 2         86
## 182                 Free Throw - 2 of 2         87
## 183                 Free Throw - 1 of 2         87
## 184                 Free Throw - 2 of 2         87
## 185                           Jump Shot         87
## 186                Turnaround Jump Shot          0
## 187                           Jump Shot          0
## 188                Turnaround Jump Shot          2
## 189                    Pullup Jump Shot          2
## 190                    Pullup Jump Shot          2
## 191                    Pullup Jump Shot          2
## 192                  Layup Shot Putback          2
## 193                 Free Throw - 1 of 2          3
## 194                 Free Throw - 2 of 2          4
## 195                          Layup Shot          6
## 196                 Free Throw - 1 of 2          6
## 197                 Free Throw - 2 of 2          6
## 198                           Jump Shot          6
## 199                          Layup Shot          8
## 200                 Free Throw - 1 of 2          8
## 201                 Free Throw - 2 of 2          8
## 202                           Jump Shot         11
## 203                 Free Throw - 1 of 2         11
## 204                 Free Throw - 2 of 2         11
## 205                           Jump Shot         11
## 206                  Cutting Layup Shot         13
## 207                           Jump Shot         13
## 208                  Running Layup Shot         15
## 209                 Free Throw - 1 of 1         15
## 210                          Layup Shot         15
## 211                 Free Throw - 1 of 2         15
## 212                 Free Throw - 2 of 2         15
## 213                 Free Throw - 1 of 2         15
## 214                 Free Throw - 2 of 2         15
## 215                    Pullup Jump Shot         15
## 216                 Free Throw - 1 of 2         16
## 217                 Free Throw - 2 of 2         17
## 218                    Pullup Jump Shot         17
## 219                Turnaround Jump Shot         19
## 220                           Jump Shot         19
## 221                          Layup Shot         21
## 222                  Driving Layup Shot         21
## 223                 Step Back Jump Shot         21
## 224                 Free Throw - 1 of 2         21
## 225                 Free Throw - 2 of 2         22
## 226                          Layup Shot         22
## 227                           Jump Shot         22
## 228                  Layup Shot Putback         22
## 229                  Layup Shot Putback         22
## 230                    Pullup Jump Shot         22
## 231                 Free Throw - 1 of 2         23
## 232                 Free Throw - 2 of 2         24
## 233                    Pullup Jump Shot         24
## 234                           Jump Shot         24
## 235                  Running Layup Shot         24
## 236                  Running Layup Shot         24
## 237                   Running Jump Shot         27
## 238                 Free Throw - 1 of 3         28
## 239                 Free Throw - 2 of 3         28
## 240                 Free Throw - 3 of 3         29
## 241                           Jump Shot         29
## 242                Turnaround Jump Shot         29
## 243                  Layup Shot Putback         31
## 244          Driving Floating Jump Shot         31
## 245                           Jump Shot         31
## 246                  Running Layup Shot         31
## 247                  Cutting Layup Shot         33
## 248                  Cutting Layup Shot         33
## 249                           Jump Shot         33
## 250                           Jump Shot         36
## 251                    Pullup Jump Shot         36
## 252                          Layup Shot         36
## 253                Turnaround Jump Shot         36
## 254                   Running Jump Shot         36
## 255                  Cutting Layup Shot         38
## 256                           Jump Shot         38
## 257            Running Pullup Jump Shot         38
## 258          Driving Floating Jump Shot         38
## 259                          Layup Shot         38
## 260                  Layup Shot Putback         38
## 261                    Pullup Jump Shot         38
## 262                           Jump Shot         38
## 263                  Cutting Layup Shot         40
## 264                           Jump Shot         40
## 265                    Pullup Jump Shot         40
## 266                    Pullup Jump Shot         40
## 267                           Jump Shot         43
## 268            Running Pullup Jump Shot         43
## 269                  Driving Layup Shot         43
## 270                 Free Throw - 1 of 2         43
## 271                 Free Throw - 2 of 2         43
## 272                           Jump Shot         43
## 273                           Jump Shot         43
## 274                  Driving Layup Shot         43
## 275                           Jump Shot         43
## 276                  Layup Shot Putback         43
## 277            Running Pullup Jump Shot         46
## 278                  Driving Layup Shot         46
## 279                 Free Throw - 1 of 2         46
## 280                 Free Throw - 2 of 2         47
## 281                  Driving Layup Shot         47
## 282                  Driving Layup Shot         47
## 283                 Free Throw - 1 of 2         47
## 284                 Free Throw - 2 of 2         47
## 285                  Driving Layup Shot         47
## 286                  Driving Layup Shot         47
## 287                           Jump Shot         50
## 288                           Jump Shot         50
## 289                           Jump Shot         50
## 290                    Pullup Jump Shot         50
## 291                           Jump Shot         53
## 292                           Jump Shot         53
## 293                           Jump Shot         53
## 294                          Layup Shot         53
## 295                  Layup Shot Putback         55
## 296                    Pullup Jump Shot         55
## 297                           Jump Shot         55
## 298                    Pullup Jump Shot         55
## 299                Turnaround Jump Shot         55
## 300                           Jump Shot         55
## 301                  Layup Shot Putback         57
## 302                           Jump Shot         57
## 303                  Running Layup Shot         57
## 304                  Driving Layup Shot         57
## 305                  Layup Shot Putback         59
## 306                 Free Throw - 1 of 2         60
## 307                 Free Throw - 2 of 2         61
## 308                           Jump Shot         61
## 309                 Free Throw - 1 of 2         61
## 310                 Free Throw - 2 of 2         62
## 311                    Pullup Jump Shot         62
## 312                    Pullup Jump Shot         62
## 313                           Jump Shot         62
## 314                           Jump Shot         62
## 315                           Jump Shot         62
## 316                           Jump Shot         62
## 317                           Jump Shot         65
## 318                 Free Throw - 1 of 2         65
## 319                 Free Throw - 2 of 2         65
## 320                    Pullup Jump Shot         65
## 321                           Jump Shot         67
## 322                           Jump Shot         67
## 323                          Layup Shot         67
## 324                           Jump Shot         69
## 325                  Driving Layup Shot         69
## 326                           Jump Shot         69
## 327                           Jump Shot         69
## 328                 Free Throw - 1 of 2         69
## 329                 Free Throw - 2 of 2         70
## 330                   Driving Hook Shot         70
## 331                           Jump Shot         73
## 332                           Jump Shot         73
## 333                           Jump Shot         73
## 334                  Running Layup Shot         73
## 335                    Pullup Jump Shot         73
## 336                  Driving Layup Shot         73
## 337                  Layup Shot Putback         73
## 338                  Running Layup Shot         75
## 339                 Step Back Jump Shot         75
## 340                  Driving Layup Shot         75
## 341                 Free Throw - 1 of 1         75
## 342                           Jump Shot         75
## 343          Driving Floating Jump Shot         75
## 344                           Jump Shot         78
## 345                  Cutting Layup Shot         78
## 346                  Driving Layup Shot         78
## 347                 Free Throw - 1 of 2         78
## 348                 Free Throw - 2 of 2         78
## 349                 Free Throw - 1 of 2         78
## 350                 Free Throw - 2 of 2         78
## 351                          Layup Shot         78
## 352                 Free Throw - 1 of 2         78
## 353                 Free Throw - 2 of 2         78
## 354                           Jump Shot          0
## 355                  Running Layup Shot          0
## 356                           Jump Shot          0
## 357                          Layup Shot          0
## 358                          Layup Shot          0
## 359                          Layup Shot          0
## 360                    Pullup Jump Shot          0
## 361                           Jump Shot          0
## 362                  Running Layup Shot          0
## 363                           Jump Shot          0
## 364                  Running Layup Shot          2
## 365                           Jump Shot          2
## 366                           Jump Shot          2
## 367                 Free Throw - 1 of 2          3
## 368                 Free Throw - 2 of 2          3
## 369                           Jump Shot          3
## 370                          Layup Shot          3
## 371                  Cutting Layup Shot          5
## 372                  Running Layup Shot          5
## 373                          Layup Shot          7
## 374                           Jump Shot          7
## 375                           Jump Shot          7
## 376                           Jump Shot          7
## 377                           Jump Shot          7
## 378                  Cutting Layup Shot          7
## 379                           Jump Shot          7
## 380                           Jump Shot          7
## 381                  Cutting Layup Shot          9
## 382                           Jump Shot          9
## 383                           Jump Shot          9
## 384                  Cutting Layup Shot          9
## 385                    Pullup Jump Shot          9
## 386                          Layup Shot         11
## 387                           Jump Shot         11
## 388                           Jump Shot         11
## 389                           Jump Shot         11
## 390                 Free Throw - 1 of 2         11
## 391                 Free Throw - 2 of 2         11
## 392                 Free Throw - 1 of 2         12
## 393                 Free Throw - 2 of 2         12
## 394                           Jump Shot         12
## 395                    Pullup Jump Shot         12
## 396                           Jump Shot         14
## 397                  Running Layup Shot         14
## 398                   Running Jump Shot         14
## 399                           Jump Shot         16
## 400                          Layup Shot         18
## 401                          Layup Shot         18
## 402                           Jump Shot         20
## 403                    Pullup Jump Shot         20
## 404                 Step Back Jump Shot         20
## 405                           Jump Shot         20
## 406                           Jump Shot         20
## 407                           Jump Shot         20
## 408                          Layup Shot         20
## 409                           Jump Shot         20
## 410                 Free Throw - 1 of 2         20
## 411                 Free Throw - 2 of 2         20
## 412                           Jump Shot         20
## 413                          Layup Shot         22
## 414                    Pullup Jump Shot         22
## 415                  Running Layup Shot         24
## 416                    Pullup Jump Shot         24
## 417                           Jump Shot         27
## 418                  Running Layup Shot         27
## 419                  Driving Layup Shot         29
## 420                  Driving Layup Shot         29
## 421                           Jump Shot         29
## 422                           Jump Shot         29
## 423                           Jump Shot         29
## 424                  Driving Layup Shot         29
## 425                           Jump Shot         29
## 426                  Driving Layup Shot         29
## 427                           Jump Shot         29
## 428                           Jump Shot         29
## 429                           Jump Shot         29
## 430                  Layup Shot Putback         29
## 431                          Layup Shot         31
## 432                           Jump Shot         31
## 433                           Jump Shot         31
## 434                 Step Back Jump Shot         31
## 435                          Layup Shot         31
## 436                            Tip Shot         33
## 437                          Layup Shot         35
## 438                           Jump Shot         35
## 439                  Driving Layup Shot         35
## 440                           Jump Shot         35
## 441                 Free Throw - 1 of 2         36
## 442                 Free Throw - 2 of 2         37
## 443                           Jump Shot         37
## 444                           Jump Shot         37
## 445                  Driving Layup Shot         39
## 446                           Jump Shot         39
## 447                 Free Throw - 1 of 2         39
## 448                 Free Throw - 2 of 2         39
## 449                    Pullup Jump Shot         39
## 450                           Jump Shot         39
## 451                  Cutting Layup Shot         39
## 452                  Cutting Layup Shot         39
## 453                           Jump Shot         39
## 454                    Pullup Jump Shot         39
## 455                  Floating Jump Shot         41
## 456                 Free Throw - 1 of 2         42
## 457                 Free Throw - 2 of 2         42
## 458                   Running Jump Shot         44
## 459                  Driving Layup Shot         44
## 460                 Free Throw - 1 of 1         44
## 461                 Step Back Jump Shot         47
## 462                           Jump Shot         47
## 463                  Cutting Layup Shot         47
## 464                 Free Throw - 1 of 1         47
## 465                           Jump Shot         50
## 466            Step Back Bank Jump Shot         50
## 467                           Jump Shot         50
## 468                           Jump Shot         50
## 469                 Free Throw - 1 of 2         50
## 470                 Free Throw - 2 of 2         51
## 471                           Jump Shot         51
## 472                          Layup Shot         51
## 473                           Jump Shot         51
## 474      Turnaround Fade Away Jump Shot         51
## 475                 Free Throw - 1 of 2         51
## 476                 Free Throw - 2 of 2         51
## 477                Alley Oop Layup Shot         53
## 478                           Jump Shot         53
## 479                 Free Throw - 1 of 2         54
## 480                 Free Throw - 2 of 2         54
## 481                          Layup Shot         56
## 482                  Driving Layup Shot         56
## 483                           Jump Shot         56
## 484                          Layup Shot         56
## 485                  Driving Layup Shot         56
## 486                           Jump Shot         56
## 487                           Jump Shot         56
## 488                 Free Throw - 1 of 2         57
## 489                 Free Throw - 2 of 2         58
## 490                  Driving Layup Shot         60
## 491                          Layup Shot         62
## 492                Turnaround Jump Shot         62
## 493                  Driving Layup Shot         62
## 494                           Jump Shot         62
## 495                  Driving Layup Shot         62
## 496                            Tip Shot         64
## 497                           Jump Shot         64
## 498                           Jump Shot         64
## 499                           Jump Shot         64
## 500                  Driving Layup Shot         64
## 501                          Layup Shot         64
## 502                  Driving Layup Shot         64
## 503                           Jump Shot         64
## 504                  Driving Layup Shot         66
## 505                          Layup Shot         66
## 506                           Jump Shot         66
## 507                 Free Throw - 1 of 2         66
## 508                 Free Throw - 2 of 2         66
## 509                   Running Jump Shot         66
## 510                   Running Jump Shot         66
## 511                           Jump Shot         66
## 512                Alley Oop Layup Shot         68
## 513                   Running Jump Shot         68
## 514                 Free Throw - 1 of 2         69
## 515                 Free Throw - 2 of 2         69
## 516                          Layup Shot         69
## 517                           Jump Shot         69
## 518                    Pullup Jump Shot         69
## 519                           Jump Shot         69
## 520                   Running Jump Shot         69
## 521                          Layup Shot         71
## 522                 Free Throw - 1 of 1         71
## 523                          Layup Shot         71
## 524                           Jump Shot         71
## 525                           Jump Shot         71
## 526                 Free Throw - 1 of 2         71
## 527                 Free Throw - 2 of 2         71
## 528                          Layup Shot         73
## 529                  Cutting Layup Shot         73
## 530                  Layup Shot Putback         73
## 531                 Free Throw - 1 of 2         73
## 532                 Free Throw - 2 of 2         74
## 533                           Jump Shot         77
## 534                  Cutting Layup Shot          0
## 535                           Jump Shot          0
## 536                    Pullup Jump Shot          0
## 537                           Jump Shot          0
## 538                    Pullup Jump Shot          0
## 539                   Running Jump Shot          0
## 540                           Jump Shot          3
## 541                           Jump Shot          3
## 542                Turnaround Jump Shot          5
## 543                           Jump Shot          5
## 544                    Pullup Jump Shot          5
## 545                           Jump Shot          5
## 546                           Jump Shot          5
## 547                    Pullup Jump Shot          5
## 548                 Fade Away Jump Shot          5
## 549                  Cutting Layup Shot          7
## 550                 Free Throw - 1 of 2          7
## 551                 Free Throw - 2 of 2          7
## 552                   Running Jump Shot          7
## 553                           Jump Shot          7
## 554                Turnaround Hook Shot          9
## 555                  Driving Layup Shot          9
## 556                           Jump Shot         12
## 557                           Jump Shot         12
## 558                           Jump Shot         12
## 559                          Layup Shot         14
## 560                 Free Throw - 1 of 1         15
## 561                           Jump Shot         15
## 562                           Jump Shot         18
## 563                           Jump Shot         18
## 564                           Jump Shot         18
## 565                  Layup Shot Putback         18
## 566                           Jump Shot         18
## 567                  Driving Layup Shot         20
## 568                 Free Throw - 1 of 2         20
## 569                 Free Throw - 2 of 2         20
## 570                           Jump Shot         20
## 571                  Layup Shot Putback         20
## 572                           Jump Shot         20
## 573                 Free Throw - 1 of 1         21
## 574                  Driving Layup Shot         23
## 575                 Free Throw - 1 of 2         24
## 576                 Free Throw - 2 of 2         25
## 577                           Jump Shot         21
## 578                 Free Throw - 1 of 3         24
## 579                 Free Throw - 2 of 3         25
## 580                 Free Throw - 3 of 3         26
## 581                          Layup Shot         27
## 582                  Layup Shot Putback         26
## 583                 Free Throw - 1 of 2         28
## 584                 Free Throw - 2 of 2         28
## 585                  Cutting Layup Shot         29
## 586                           Jump Shot         28
## 587                           Jump Shot         28
## 588                           Jump Shot         28
## 589                          Layup Shot         28
## 590                          Layup Shot         28
## 591                           Jump Shot         28
## 592                           Jump Shot         30
## 593                 Free Throw - 1 of 2         30
## 594                 Free Throw - 2 of 2         30
## 595                           Jump Shot         30
## 596                           Jump Shot         33
## 597                           Jump Shot         33
## 598                  Cutting Layup Shot         33
## 599                    Pullup Jump Shot         35
## 600                  Driving Layup Shot         35
## 601                           Jump Shot         35
## 602                           Jump Shot         35
## 603                           Jump Shot         35
## 604                  Cutting Layup Shot         37
## 605                 Free Throw - 1 of 2         37
## 606                 Free Throw - 2 of 2         37
## 607                           Jump Shot         37
## 608                Turnaround Jump Shot         39
## 609                    Pullup Jump Shot         41
## 610                           Jump Shot         41
## 611                           Jump Shot         41
## 612            Running Pullup Jump Shot         41
## 613                 Free Throw - 1 of 2         42
## 614                 Free Throw - 2 of 2         42
## 615                 Free Throw - 1 of 2         42
## 616                 Free Throw - 2 of 2         42
## 617                  Running Layup Shot         42
## 618                 Step Back Jump Shot         44
## 619           Running Finger Roll Layup         44
## 620                           Jump Shot         44
## 621                    Pullup Jump Shot         44
## 622                    Pullup Jump Shot         44
## 623                  Driving Layup Shot         44
## 624                           Jump Shot         44
## 625            Running Pullup Jump Shot         46
## 626           Turnaround Bank Jump Shot         46
## 627           Driving Finger Roll Layup         46
## 628                    Pullup Jump Shot         48
## 629                           Jump Shot         48
## 630                  Running Layup Shot         50
## 631                 Free Throw - 1 of 1         51
## 632                  Driving Layup Shot         51
## 633                  Layup Shot Putback         51
## 634                 Free Throw - 1 of 2         51
## 635                 Free Throw - 2 of 2         51
## 636                           Jump Shot         53
## 637                           Jump Shot         53
## 638                           Jump Shot         56
## 639                  Running Layup Shot         58
## 640                    Pullup Jump Shot         58
## 641                 Free Throw - 1 of 2         59
## 642                 Free Throw - 2 of 2         60
## 643                  Running Layup Shot         62
## 644                    Pullup Jump Shot         62
## 645                           Jump Shot         62
## 646                           Jump Shot         62
## 647                 Free Throw - 1 of 2         62
## 648                 Free Throw - 2 of 2         63
## 649                           Jump Shot         63
## 650                  Driving Layup Shot         63
## 651                           Jump Shot         63
## 652                           Jump Shot         66
## 653                           Jump Shot         66
## 654                           Jump Shot         66
## 655                           Jump Shot         66
## 656                           Jump Shot         66
## 657                  Driving Layup Shot         66
## 658                  Layup Shot Putback         68
## 659                           Hook Shot         68
## 660                 Free Throw - 1 of 2         69
## 661                 Free Throw - 2 of 2         70
## 662                           Jump Shot         70
## 663      Turnaround Fade Away Jump Shot         70
## 664                           Jump Shot         70
## 665                           Jump Shot         70
## 666                           Jump Shot         70
## 667                  Cutting Layup Shot         70
## 668                  Driving Layup Shot         70
## 669                           Jump Shot         70
## 670                           Jump Shot         73
## 671                  Driving Layup Shot         73
## 672                  Driving Layup Shot         75
## 673                 Free Throw - 1 of 1         75
## 674                    Pullup Jump Shot         77
## 675                           Jump Shot         77
## 676              Free Throw - Technical         77
## 677                  Cutting Layup Shot         79
## 678                           Jump Shot         79
## 679                          Layup Shot         79
## 680                  Driving Layup Shot         79
## 681                          Layup Shot         79
## 682                  Cutting Layup Shot         81
## 683                           Jump Shot         81
## 684                  Driving Layup Shot         81
## 685                           Jump Shot         81
## 686                           Jump Shot         81
## 687                          Layup Shot         83
## 688                          Layup Shot         83
## 689                           Jump Shot         83
## 690                           Jump Shot         83
## 691                 Free Throw - 1 of 2         84
## 692                 Free Throw - 2 of 2         85
## 693                 Free Throw - 1 of 2         85
## 694                 Free Throw - 2 of 2         85
## 695                  Driving Layup Shot         85
## 696                           Jump Shot         85
## 697                           Jump Shot         85
## 698                    Pullup Jump Shot         87
## 699                           Jump Shot         87
## 700                  Reverse Layup Shot         87
## 701                           Jump Shot         87
## 702                           Jump Shot         87
## 703                 Step Back Jump Shot         90
## 704                           Jump Shot         90
## 705                  Running Layup Shot         92
## 706                    Pullup Jump Shot         92
## 707                  Floating Jump Shot         92
## 708                          Layup Shot         92
## 709            Running Pullup Jump Shot         92
## 710                           Jump Shot         94
## 711                           Jump Shot         94
## 712                           Jump Shot          0
## 713                          Layup Shot          0
## 714                           Jump Shot          0
## 715                  Cutting Layup Shot          2
## 716                           Jump Shot          2
## 717                           Jump Shot          5
## 718                          Layup Shot          7
## 719                           Jump Shot         10
## 720                          Layup Shot         12
## 721      Turnaround Fade Away Jump Shot         12
## 722                           Jump Shot         12
## 723                           Jump Shot         12
## 724                    Pullup Jump Shot         12
## 725                           Jump Shot         12
## 726           Driving Finger Roll Layup         12
## 727                           Jump Shot         12
## 728                  Cutting Layup Shot         14
## 729                           Jump Shot         14
## 730                Turnaround Hook Shot         14
## 731                           Jump Shot         14
## 732                    Pullup Jump Shot         14
## 733                 Step Back Jump Shot         14
## 734                           Jump Shot         14
## 735                          Layup Shot         14
## 736      Turnaround Fade Away Jump Shot         14
## 737                           Jump Shot         17
## 738                           Jump Shot         17
## 739                           Jump Shot         20
## 740                           Jump Shot         20
## 741                  Floating Jump Shot         20
## 742                  Driving Layup Shot         20
## 743      Cutting Finger Roll Layup Shot         22
## 744                           Jump Shot         22
## 745          Driving Floating Jump Shot         22
## 746                           Jump Shot         22
## 747                 Free Throw - 1 of 2         22
## 748                 Free Throw - 2 of 2         22
## 749                    Pullup Jump Shot         22
## 750                  Cutting Layup Shot         24
## 751              Driving Jump Shot Bank         24
## 752                  Cutting Layup Shot         26
## 753                 Free Throw - 1 of 2         26
## 754                 Free Throw - 2 of 2         26
## 755                           Jump Shot         29
## 756                           Jump Shot         29
## 757                  Floating Jump Shot         29
## 758                Turnaround Hook Shot         29
## 759                          Layup Shot         29
## 760                   Finger Roll Layup         29
## 761                   Driving Hook Shot         29
## 762                  Layup Shot Putback         29
## 763                 Free Throw - 1 of 1         29
## 764                 Free Throw - 1 of 2         30
## 765                 Free Throw - 2 of 2         31
## 766                 Free Throw - 1 of 2         32
## 767                 Free Throw - 2 of 2         33
## 768          Driving Floating Jump Shot         33
## 769                           Jump Shot         33
## 770                           Jump Shot         33
## 771                  Driving Layup Shot         33
## 772                 Free Throw - 1 of 2         34
## 773                 Free Throw - 2 of 2         35
## 774                  Driving Layup Shot         35
## 775                  Running Layup Shot         37
## 776                    Pullup Jump Shot         37
## 777                           Jump Shot         37
## 778                          Layup Shot         37
## 779                           Jump Shot         40
## 780                 Free Throw - 1 of 2         40
## 781                 Free Throw - 2 of 2         40
## 782                 Free Throw - 1 of 2         41
## 783                 Free Throw - 2 of 2         41
## 784                 Fade Away Jump Shot         41
## 785                 Free Throw - 1 of 2         42
## 786                 Free Throw - 2 of 2         43
## 787                          Layup Shot         43
## 788                  Floating Jump Shot         43
## 789                           Jump Shot         43
## 790                    Pullup Jump Shot         43
## 791                Turnaround Hook Shot         43
## 792                Turnaround Hook Shot         43
## 793                  Floating Jump Shot         43
## 794                 Free Throw - 1 of 2         43
## 795                 Free Throw - 2 of 2         43
## 796                           Jump Shot         43
## 797                  Reverse Layup Shot         43
## 798                  Driving Layup Shot         43
## 799                  Running Layup Shot         45
## 800                 Free Throw - 1 of 1         46
## 801                 Free Throw - 1 of 2         46
## 802                 Free Throw - 2 of 2         46
## 803                           Jump Shot         46
## 804                Turnaround Jump Shot         46
## 805                           Jump Shot         46
## 806                           Jump Shot         46
## 807                           Jump Shot         46
## 808                  Layup Shot Putback         46
## 809                           Jump Shot         46
## 810                    Pullup Jump Shot         46
## 811                  Running Layup Shot         46
## 812                 Free Throw - 1 of 2         46
## 813                 Free Throw - 2 of 2         47
## 814                           Jump Shot         47
## 815                  Cutting Layup Shot         47
## 816                           Jump Shot         47
## 817                          Layup Shot         47
## 818                           Jump Shot         47
## 819                           Jump Shot         47
## 820                           Jump Shot         47
## 821                          Layup Shot         47
## 822                 Free Throw - 1 of 2         48
## 823                 Free Throw - 2 of 2         49
## 824                           Jump Shot         49
## 825          Driving Floating Jump Shot         49
## 826                 Free Throw - 1 of 2         50
## 827                 Free Throw - 2 of 2         51
## 828                   Driving Hook Shot         51
## 829                          Layup Shot         51
## 830                           Jump Shot         51
## 831                    Pullup Jump Shot         51
## 832                           Jump Shot         51
## 833                    Pullup Jump Shot         51
## 834                  Reverse Layup Shot         51
## 835                           Jump Shot         54
## 836      Turnaround Fade Away Jump Shot         54
## 837                           Jump Shot         57
## 838                    Pullup Jump Shot         57
## 839                    Pullup Jump Shot         57
## 840          Driving Floating Jump Shot         57
## 841                           Jump Shot         57
## 842                Turnaround Jump Shot         59
## 843                           Jump Shot         59
## 844                          Layup Shot         61
## 845                    Pullup Jump Shot         61
## 846                    Pullup Jump Shot         61
## 847                    Pullup Jump Shot         61
## 848                          Layup Shot         61
## 849                          Layup Shot         61
## 850                           Jump Shot         61
## 851                  Running Layup Shot         63
## 852                          Layup Shot         63
## 853                Turnaround Jump Shot         63
## 854                           Jump Shot         63
## 855                    Pullup Jump Shot         63
## 856                           Jump Shot         63
## 857                 Free Throw - 1 of 2         64
## 858                 Free Throw - 2 of 2         65
## 859                           Jump Shot         65
## 860                           Jump Shot         65
## 861                 Free Throw - 1 of 2         65
## 862                 Free Throw - 2 of 2         65
## 863                  Cutting Layup Shot         67
## 864                 Free Throw - 1 of 2         67
## 865                 Free Throw - 2 of 2         67
## 866                          Layup Shot         69
## 867                           Jump Shot         69
## 868      Turnaround Fade Away Jump Shot         69
## 869                    Pullup Jump Shot         69
## 870                 Free Throw - 1 of 2         69
## 871                 Free Throw - 2 of 2         70
## 872                           Jump Shot         70
## 873                           Jump Shot         70
## 874                 Free Throw - 1 of 2         70
## 875                 Free Throw - 2 of 2         70
## 876                          Layup Shot         70
## 877                Turnaround Jump Shot         70
## 878                           Jump Shot         70
## 879                           Jump Shot         70
## 880                   Driving Hook Shot         70
## 881                    Pullup Jump Shot         70
## 882                 Free Throw - 1 of 2         70
## 883                 Free Throw - 2 of 2         70
## 884                           Jump Shot          0
## 885                 Free Throw - 1 of 2          1
## 886                 Free Throw - 2 of 2          2
## 887                           Jump Shot          2
## 888                           Jump Shot          2
## 889                           Jump Shot          5
## 890                          Layup Shot          5
## 891                          Layup Shot          7
## 892                           Jump Shot          7
## 893                           Jump Shot          7
## 894                           Jump Shot          7
## 895                          Layup Shot          7
## 896                          Layup Shot          7
## 897                           Jump Shot          7
## 898                           Jump Shot          7
## 899                           Jump Shot          9
## 900                 Free Throw - 1 of 2          9
## 901                 Free Throw - 2 of 2          9
## 902                           Jump Shot         11
## 903                           Jump Shot         11
## 904                           Jump Shot         11
## 905                           Jump Shot         11
## 906                      Jump Shot Bank         13
## 907                          Layup Shot         15
## 908                           Hook Shot         15
## 909                          Layup Shot         15
## 910                           Jump Shot         17
## 911                    Pullup Jump Shot         17
## 912                           Jump Shot         17
## 913                           Hook Shot         17
## 914                      Jump Shot Bank         19
## 915                  Driving Layup Shot         19
## 916                           Jump Shot         19
## 917                          Layup Shot         21
## 918                 Free Throw - 1 of 1         22
## 919                  Driving Layup Shot         22
## 920                Turnaround Jump Shot         22
## 921                           Jump Shot         22
## 922                 Step Back Jump Shot         24
## 923           Turnaround Bank Jump Shot         24
## 924                 Step Back Jump Shot         24
## 925                           Jump Shot         24
## 926                           Jump Shot         24
## 927                          Layup Shot         24
## 928                           Jump Shot         26
## 929                      Jump Shot Bank         26
## 930                           Jump Shot         26
## 931                           Jump Shot         26
## 932                           Hook Shot         26
## 933                           Jump Shot         26
## 934                          Layup Shot         28
## 935                           Jump Shot         28
## 936                 Free Throw - 1 of 1         28
## 937                           Jump Shot         28
## 938                           Jump Shot         28
## 939                          Layup Shot         28
## 940                          Layup Shot         28
## 941                 Free Throw - 1 of 2         28
## 942                 Free Throw - 2 of 2         28
## 943                          Layup Shot         28
## 944                           Jump Shot         28
## 945                           Jump Shot         28
## 946                          Layup Shot         30
## 947                 Step Back Jump Shot         30
## 948                           Jump Shot         30
## 949                           Jump Shot         30
## 950                 Free Throw - 1 of 2         31
## 951                 Free Throw - 2 of 2         32
## 952                           Jump Shot         32
## 953                           Jump Shot         32
## 954                           Jump Shot         32
## 955                           Jump Shot         32
## 956                 Free Throw - 1 of 2         32
## 957                 Free Throw - 2 of 2         32
## 958                    Pullup Jump Shot         32
## 959                           Jump Shot         32
## 960                           Jump Shot         32
## 961                           Jump Shot         32
## 962                           Jump Shot         32
## 963                           Jump Shot         34
## 964                 Free Throw - 1 of 1         34
## 965                          Layup Shot         36
## 966                           Jump Shot         36
## 967                   Running Jump Shot         38
## 968                           Jump Shot         38
## 969                           Jump Shot         38
## 970                           Jump Shot         38
## 971                  Driving Layup Shot         38
## 972                          Layup Shot         40
## 973                          Layup Shot         40
## 974                           Jump Shot         40
## 975                           Jump Shot         40
## 976                           Jump Shot         40
## 977                           Jump Shot         40
## 978                           Jump Shot         40
## 979                Turnaround Jump Shot         40
## 980                          Layup Shot         40
## 981                           Jump Shot         40
## 982                 Step Back Jump Shot         40
## 983                           Jump Shot         40
## 984                           Jump Shot         40
## 985                           Jump Shot         40
## 986                      Jump Shot Bank         40
## 987                           Jump Shot         42
## 988                      Hook Shot Bank         42
## 989                           Jump Shot         42
## 990                           Jump Shot         45
## 991                           Jump Shot         45
## 992                    Pullup Jump Shot         47
## 993                           Jump Shot         47
## 994                 Free Throw - 1 of 2         48
## 995                 Free Throw - 2 of 2         49
## 996                 Step Back Jump Shot         49
## 997                 Free Throw - 1 of 2         49
## 998                 Free Throw - 2 of 2         49
## 999                  Cutting Layup Shot         51
## 1000                          Jump Shot         53
## 1001                 Cutting Layup Shot         53
## 1002                          Jump Shot         53
## 1003                 Running Layup Shot         53
## 1004                          Jump Shot         53
## 1005                          Jump Shot         53
## 1006                Free Throw - 1 of 2         53
## 1007                Free Throw - 2 of 2         53
## 1008                          Jump Shot         53
## 1009                          Jump Shot         53
## 1010                          Jump Shot         53
## 1011                 Driving Layup Shot         53
## 1012                         Layup Shot         55
## 1013                          Jump Shot         55
## 1014                          Jump Shot         57
## 1015                Free Throw - 1 of 2         57
## 1016                Free Throw - 2 of 2         57
## 1017                         Layup Shot         59
## 1018                          Jump Shot         59
## 1019                Free Throw - 1 of 2         60
## 1020                Free Throw - 2 of 2         61
## 1021                         Layup Shot         61
## 1022                          Jump Shot         61
## 1023                          Jump Shot         63
## 1024                          Jump Shot         63
## 1025                         Layup Shot         63
## 1026                Free Throw - 1 of 2         63
## 1027                Free Throw - 2 of 2         63
## 1028                          Jump Shot         63
## 1029                          Jump Shot         63
## 1030                 Driving Layup Shot         63
## 1031                          Jump Shot         65
## 1032                 Running Layup Shot         67
## 1033                          Jump Shot         67
## 1034                 Driving Layup Shot         69
## 1035                         Layup Shot         69
## 1036                Free Throw - 1 of 2         70
## 1037                Free Throw - 2 of 2         70
## 1038                          Jump Shot         70
## 1039               Turnaround Jump Shot         70
## 1040                 Driving Layup Shot         70
## 1041                          Jump Shot         73
## 1042                          Jump Shot         73
## 1043                          Jump Shot         75
## 1044                          Jump Shot         75
## 1045                 Driving Layup Shot         75
## 1046                         Layup Shot         75
## 1047                          Jump Shot         75
## 1048                          Jump Shot         75
## 1049                         Layup Shot         75
## 1050                   Pullup Jump Shot         77
## 1051                          Jump Shot         77
## 1052                           Tip Shot         77
## 1053                  Running Jump Shot         79
## 1054                          Jump Shot         79
## 1055                          Jump Shot         79
## 1056                 Running Layup Shot         79
## 1057                          Jump Shot         79
## 1058                         Layup Shot         81
## 1059                          Jump Shot         81
## 1060                         Layup Shot         83
## 1061                          Jump Shot         83
## 1062                  Running Jump Shot         83
## 1063                          Jump Shot         83
## 1064                          Jump Shot          0
## 1065                Step Back Jump Shot          0
## 1066                          Jump Shot          0
## 1067                Free Throw - 1 of 2          1
## 1068                Free Throw - 2 of 2          2
## 1069                          Jump Shot          2
## 1070                 Driving Layup Shot          4
## 1071                Free Throw - 1 of 1          5
## 1072          Driving Finger Roll Layup          5
## 1073                          Jump Shot          5
## 1074                          Jump Shot          5
## 1075              Pullup Bank Jump Shot          5
## 1076                          Jump Shot          5
## 1077                          Jump Shot          5
## 1078                   Pullup Jump Shot          8
## 1079                Free Throw - 1 of 2          8
## 1080                Free Throw - 2 of 2          8
## 1081                 Cutting Layup Shot         10
## 1082                         Layup Shot         10
## 1083                 Driving Layup Shot         12
## 1084                Free Throw - 1 of 1         13
## 1085    Driving Floating Bank Jump Shot         15
## 1086                Free Throw - 1 of 2         15
## 1087                Free Throw - 2 of 2         15
## 1088                          Jump Shot         17
## 1089          Running Finger Roll Layup         17
## 1090                   Pullup Jump Shot         20
## 1091                          Jump Shot         20
## 1092                          Jump Shot         23
## 1093                   Pullup Jump Shot         23
## 1094                 Running Layup Shot         25
## 1095                          Jump Shot         25
## 1096                Free Throw - 1 of 2         25
## 1097                Free Throw - 2 of 2         25
## 1098                Free Throw - 1 of 2         25
## 1099                Free Throw - 2 of 2         25
## 1100                 Driving Layup Shot         25
## 1101                Step Back Jump Shot         25
## 1102                          Jump Shot         25
## 1103                Free Throw - 1 of 2         26
## 1104                Free Throw - 2 of 2         27
## 1105                          Jump Shot         27
## 1106                   Pullup Jump Shot         29
## 1107                   Pullup Jump Shot         29
## 1108                          Jump Shot         29
## 1109                  Running Jump Shot         29
## 1110                   Pullup Jump Shot         29
## 1111                         Layup Shot         31
## 1112                 Cutting Layup Shot         31
## 1113               Alley Oop Layup Shot         31
## 1114           Running Pullup Jump Shot         31
## 1115                         Layup Shot         33
## 1116                          Jump Shot         33
## 1117                         Layup Shot         33
## 1118                 Layup Shot Putback         33
## 1119                   Pullup Jump Shot         33
## 1120                          Jump Shot         36
## 1121                 Running Layup Shot         36
## 1122                   Pullup Jump Shot         36
## 1123                          Jump Shot         39
## 1124                   Pullup Jump Shot         39
## 1125                          Jump Shot         39
## 1126                          Jump Shot         39
## 1127                          Jump Shot         39
## 1128                 Running Layup Shot         39
## 1129               Turnaround Jump Shot         39
## 1130                 Driving Layup Shot         39
## 1131                          Jump Shot         39
## 1132                          Jump Shot         39
## 1133                Free Throw - 1 of 2         40
## 1134                Free Throw - 2 of 2         40
## 1135                   Pullup Jump Shot         40
## 1136                 Floating Jump Shot         40
## 1137              Layup Driving Reverse         40
## 1138                          Jump Shot         40
## 1139                          Jump Shot         40
## 1140             Free Throw - Technical         40
## 1141                Free Throw - 1 of 2         40
## 1142                Free Throw - 2 of 2         40
## 1143               Turnaround Jump Shot         40
## 1144                          Jump Shot         40
## 1145                          Jump Shot         40
## 1146                   Pullup Jump Shot         40
## 1147                   Pullup Jump Shot         40
## 1148                          Jump Shot         40
## 1149                          Jump Shot         40
## 1150                   Pullup Jump Shot         40
## 1151             Free Throw - Technical         41
## 1152                          Jump Shot         41
## 1153                          Jump Shot         41
## 1154                         Layup Shot         41
## 1155                Free Throw - 1 of 1         41
## 1156                          Jump Shot         41
## 1157                         Layup Shot         41
## 1158                          Jump Shot         41
## 1159                Free Throw - 1 of 2         41
## 1160                Free Throw - 2 of 2         41
## 1161           Running Pullup Jump Shot         41
## 1162                          Jump Shot         41
## 1163                   Pullup Jump Shot         41
## 1164                 Running Layup Shot         41
## 1165                          Jump Shot         44
## 1166                     Jump Shot Bank         44
## 1167                Free Throw - 1 of 2         44
## 1168                Free Throw - 2 of 2         45
## 1169                          Jump Shot         45
## 1170                          Jump Shot         45
## 1171                         Layup Shot         45
## 1172                 Cutting Layup Shot         47
## 1173                          Jump Shot         47
## 1174                 Driving Layup Shot         47
## 1175                          Jump Shot         50
## 1176                   Pullup Jump Shot         50
## 1177          Running Finger Roll Layup         50
## 1178                   Pullup Jump Shot         50
## 1179                 Driving Layup Shot         50
## 1180          Driving Finger Roll Layup         50
## 1181                   Pullup Jump Shot         50
## 1182                         Layup Shot         50
## 1183                          Jump Shot         50
## 1184                 Layup Shot Putback         50
## 1185               Turnaround Jump Shot         52
## 1186         Driving Floating Jump Shot         52
## 1187    Driving Floating Bank Jump Shot         54
## 1188                          Jump Shot         54
## 1189                 Driving Layup Shot         54
## 1190                   Pullup Jump Shot         54
## 1191          Driving Finger Roll Layup         54
## 1192                         Layup Shot         56
## 1193          Running Finger Roll Layup         58
## 1194                   Pullup Jump Shot         58
## 1195                Free Throw - 1 of 2         58
## 1196                Free Throw - 2 of 2         58
## 1197                          Jump Shot         58
## 1198                Fade Away Jump Shot         58
## 1199          Driving Finger Roll Layup         58
## 1200                   Pullup Jump Shot         58
## 1201                Step Back Jump Shot         58
## 1202                          Jump Shot         61
## 1203             Free Throw - Technical         61
## 1204                 Driving Layup Shot         61
## 1205                 Cutting Layup Shot         63
## 1206                 Driving Layup Shot         65
## 1207                Free Throw - 1 of 1         66
## 1208                   Pullup Jump Shot         66
## 1209                 Driving Layup Shot         66
## 1210                   Pullup Jump Shot         66
## 1211               Turnaround Jump Shot         66
## 1212                          Jump Shot         66
## 1213                 Layup Shot Putback         66
## 1214                         Layup Shot         66
## 1215             Free Throw - Technical         67
## 1216                   Pullup Jump Shot         67
## 1217          Driving Finger Roll Layup         67
## 1218                   Pullup Jump Shot         67
## 1219                   Pullup Jump Shot         69
## 1220          Driving Finger Roll Layup         69
## 1221                   Pullup Jump Shot         69
## 1222                          Jump Shot         69
## 1223                 Driving Layup Shot         69
## 1224                          Jump Shot         69
## 1225                          Jump Shot         69
## 1226                          Jump Shot         72
## 1227                          Jump Shot         72
## 1228                Free Throw - 1 of 2         72
## 1229                Free Throw - 2 of 2         72
## 1230                          Jump Shot         72
## 1231                          Jump Shot         72
## 1232                 Driving Layup Shot         72
## 1233                   Pullup Jump Shot         72
## 1234                 Layup Shot Putback         72
## 1235                Free Throw - 1 of 2         73
## 1236                Free Throw - 2 of 2         73
## 1237                 Driving Layup Shot         73
## 1238                          Jump Shot         73
## 1239                   Pullup Jump Shot         73
## 1240                          Jump Shot          0
## 1241                          Jump Shot          0
## 1242                  Running Jump Shot          3
## 1243     Turnaround Fade Away Jump Shot          3
## 1244                         Layup Shot          3
## 1245                           Tip Shot          5
## 1246                         Layup Shot          5
## 1247                          Jump Shot          5
## 1248                Step Back Jump Shot          5
## 1249                 Driving Layup Shot          5
## 1250                   Pullup Jump Shot          5
## 1251          Driving Finger Roll Layup          5
## 1252                          Jump Shot          8
## 1253     Turnaround Fade Away Jump Shot          8
## 1254                          Jump Shot         10
## 1255           Running Pullup Jump Shot         10
## 1256                          Jump Shot         10
## 1257                         Layup Shot         10
## 1258                 Layup Shot Putback         10
## 1259     Turnaround Fade Away Jump Shot         12
## 1260                 Driving Layup Shot         12
## 1261                           Tip Shot         12
## 1262                 Driving Layup Shot         12
## 1263                          Jump Shot         15
## 1264                Free Throw - 1 of 2         15
## 1265                Free Throw - 2 of 2         15
## 1266               Turnaround Jump Shot         17
## 1267                          Jump Shot         17
## 1268                 Cutting Layup Shot         19
## 1269                 Cutting Layup Shot         21
## 1270                          Jump Shot         21
## 1271                   Pullup Jump Shot         21
## 1272                          Jump Shot         21
## 1273     Turnaround Fade Away Jump Shot         21
## 1274                          Jump Shot         21
## 1275          Driving Finger Roll Layup         21
## 1276                          Jump Shot         21
## 1277                   Pullup Jump Shot         21
## 1278                          Jump Shot         21
## 1279                          Jump Shot         21
## 1280              Layup Driving Reverse         21
## 1281                          Jump Shot         21
## 1282               Turnaround Jump Shot         21
## 1283                   Pullup Jump Shot         21
## 1284         Driving Floating Jump Shot         21
## 1285                Step Back Jump Shot         21
## 1286                          Jump Shot         21
## 1287                 Driving Layup Shot         21
## 1288                Free Throw - 1 of 2         22
## 1289                Free Throw - 2 of 2         22
## 1290                         Layup Shot         22
## 1291                Free Throw - 1 of 2         23
## 1292                Free Throw - 2 of 2         24
## 1293     Turnaround Fade Away Jump Shot         24
## 1294                          Jump Shot         24
## 1295                   Pullup Jump Shot         24
## 1296          Driving Finger Roll Layup         24
## 1297                Free Throw - 1 of 2         24
## 1298                Free Throw - 2 of 2         24
## 1299                 Cutting Layup Shot         26
## 1300                          Jump Shot         26
## 1301                 Running Layup Shot         26
## 1302                          Jump Shot         26
## 1303               Turnaround Hook Shot         26
## 1304                Fade Away Jump Shot         26
## 1305                          Jump Shot         29
## 1306                          Jump Shot         29
## 1307                   Pullup Jump Shot         29
## 1308                Free Throw - 1 of 2         30
## 1309                Free Throw - 2 of 2         31
## 1310          Driving Finger Roll Layup         31
## 1311                   Pullup Jump Shot         31
## 1312                Free Throw - 1 of 2         32
## 1313                Free Throw - 2 of 2         33
## 1314              Layup Driving Reverse         33
## 1315                          Jump Shot         33
## 1316                          Jump Shot         33
## 1317                Free Throw - 1 of 2         34
## 1318                Free Throw - 2 of 2         35
## 1319                          Jump Shot         35
## 1320                 Layup Shot Putback         35
## 1321                 Cutting Layup Shot         37
## 1322                Free Throw - 1 of 3         37
## 1323                Free Throw - 2 of 3         37
## 1324                Free Throw - 3 of 3         37
## 1325                          Jump Shot         37
## 1326                         Layup Shot         37
## 1327                Free Throw - 1 of 1         37
## 1328                Free Throw - 1 of 2         38
## 1329                Free Throw - 2 of 2         39
## 1330         Driving Floating Jump Shot         39
## 1331                          Jump Shot         39
## 1332                 Driving Layup Shot         39
## 1333                 Reverse Layup Shot         39
## 1334                Free Throw - 1 of 2         39
## 1335                Free Throw - 2 of 2         39
## 1336                          Jump Shot         39
## 1337                Free Throw - 1 of 2         39
## 1338                Free Throw - 2 of 2         39
## 1339                          Jump Shot         39
## 1340                 Running Layup Shot         39
## 1341                   Pullup Jump Shot         39
## 1342                Fade Away Jump Shot         39
## 1343                 Running Layup Shot         41
## 1344     Turnaround Fade Away Jump Shot         41
## 1345                Free Throw - 1 of 2         42
## 1346                Free Throw - 2 of 2         43
## 1347                          Jump Shot         43
## 1348                 Reverse Layup Shot         45
## 1349                Free Throw - 1 of 2         45
## 1350                Free Throw - 2 of 2         45
## 1351     Turnaround Fade Away Jump Shot         47
## 1352                 Cutting Layup Shot         47
## 1353                          Jump Shot         47
## 1354                          Jump Shot         50
## 1355                          Jump Shot         50
## 1356                 Layup Shot Putback         50
## 1357                Free Throw - 1 of 2         51
## 1358                Free Throw - 2 of 2         52
## 1359                Free Throw - 1 of 2         52
## 1360                Free Throw - 2 of 2         52
## 1361                          Jump Shot         52
## 1362               Turnaround Jump Shot         54
## 1363         Driving Floating Jump Shot         54
## 1364               Turnaround Jump Shot         56
## 1365                          Jump Shot         56
## 1366                   Pullup Jump Shot         56
## 1367                Free Throw - 1 of 2         57
## 1368                Free Throw - 2 of 2         57
## 1369                          Jump Shot         60
## 1370                 Driving Layup Shot         60
## 1371                          Jump Shot         60
## 1372                          Jump Shot         62
## 1373                          Jump Shot         62
## 1374                          Jump Shot         65
## 1375                 Cutting Layup Shot         65
## 1376                          Jump Shot         68
## 1377                 Running Layup Shot         68
## 1378                 Driving Layup Shot         68
## 1379                         Layup Shot         70
## 1380                Free Throw - 1 of 1         71
## 1381                 Driving Layup Shot         71
## 1382                   Pullup Jump Shot         71
## 1383                Free Throw - 1 of 2         71
## 1384                Free Throw - 2 of 2         71
## 1385                          Jump Shot         71
## 1386                 Cutting Layup Shot         71
## 1387                Fade Away Jump Shot         71
## 1388                          Jump Shot         73
## 1389                Free Throw - 1 of 2         73
## 1390                Free Throw - 2 of 2         73
## 1391                 Running Layup Shot         73
## 1392                          Jump Shot         73
## 1393                          Jump Shot         73
## 1394                Free Throw - 1 of 2         73
## 1395                Free Throw - 2 of 2         73
## 1396             Free Throw - Technical         73
## 1397                Free Throw - 1 of 2         73
## 1398                Free Throw - 2 of 2         73
## 1399                 Running Layup Shot         75
## 1400     Turnaround Fade Away Jump Shot         75
## 1401                Free Throw - 1 of 2         76
## 1402                Free Throw - 2 of 2         77
## 1403                   Pullup Jump Shot         77
## 1404                          Jump Shot         77
## 1405                 Driving Layup Shot         77
## 1406                           Tip Shot         77
## 1407                Step Back Jump Shot         77
## 1408                Free Throw - 1 of 3         77
## 1409                Free Throw - 2 of 3         78
## 1410                Free Throw - 3 of 3         78
## 1411                Free Throw - 1 of 2         78
## 1412                Free Throw - 2 of 2         78
## 1413           Running Pullup Jump Shot         78
## 1414               Turnaround Hook Shot          2
## 1415                          Jump Shot          2
## 1416                 Driving Layup Shot          2
## 1417                 Layup Shot Putback          2
## 1418                   Pullup Jump Shot          4
## 1419                Free Throw - 1 of 2          4
## 1420                Free Throw - 2 of 2          4
## 1421                 Driving Layup Shot          4
## 1422                   Pullup Jump Shot          4
## 1423                          Jump Shot          4
## 1424                          Jump Shot          4
## 1425                          Jump Shot          4
## 1426                 Cutting Layup Shot          4
## 1427                 Running Layup Shot          4
## 1428                   Pullup Jump Shot          4
## 1429                Step Back Jump Shot          4
## 1430                   Pullup Jump Shot          4
## 1431             Driving Jump Shot Bank          4
## 1432                Fade Away Jump Shot          6
## 1433                 Cutting Layup Shot          6
## 1434                          Jump Shot          6
## 1435                  Running Jump Shot          6
## 1436                          Jump Shot          9
## 1437                   Pullup Jump Shot          9
## 1438     Turnaround Fade Away Jump Shot         11
## 1439                          Jump Shot         11
## 1440                 Reverse Layup Shot         13
## 1441                          Jump Shot         13
## 1442                          Jump Shot         13
## 1443                 Layup Shot Putback         15
## 1444                Free Throw - 1 of 1         16
## 1445                          Jump Shot         16
## 1446                  Driving Hook Shot         18
## 1447                   Pullup Jump Shot         18
## 1448                 Reverse Layup Shot         20
## 1449                          Jump Shot         20
## 1450                Free Throw - 1 of 3         20
## 1451                Free Throw - 2 of 3         20
## 1452                Free Throw - 3 of 3         20
## 1453                Free Throw - 1 of 2         21
## 1454                Free Throw - 2 of 2         21
## 1455                 Cutting Layup Shot         21
## 1456                          Jump Shot         21
## 1457                 Running Layup Shot         21
## 1458                 Running Layup Shot         21
## 1459                   Pullup Jump Shot         21
## 1460                          Jump Shot         21
## 1461               Turnaround Hook Shot         21
## 1462                          Jump Shot         21
## 1463                 Running Layup Shot         21
## 1464                 Driving Layup Shot         21
## 1465                 Driving Layup Shot         23
## 1466                Free Throw - 1 of 1         24
## 1467                Free Throw - 1 of 2         24
## 1468                Free Throw - 2 of 2         24
## 1469                   Pullup Jump Shot         24
## 1470                 Layup Shot Putback         26
## 1471                Step Back Jump Shot         26
## 1472               Turnaround Jump Shot         26
## 1473                          Jump Shot         26
## 1474                Free Throw - 1 of 3         27
## 1475                Free Throw - 2 of 3         28
## 1476                Free Throw - 3 of 3         29
## 1477     Turnaround Fade Away Jump Shot         29
## 1478                   Pullup Jump Shot         29
## 1479                 Reverse Layup Shot         31
## 1480                          Jump Shot         31
## 1481                  Running Jump Shot         31
## 1482                 Driving Layup Shot         33
## 1483                          Jump Shot         33
## 1484           Running Pullup Jump Shot         33
## 1485           Running Pullup Jump Shot         33
## 1486                Free Throw - 1 of 2         33
## 1487                Free Throw - 2 of 2         33
## 1488                 Driving Layup Shot         33
## 1489               Turnaround Jump Shot         35
## 1490                 Cutting Layup Shot         35
## 1491                   Pullup Jump Shot         37
## 1492                          Jump Shot         37
## 1493                Free Throw - 1 of 2         37
## 1494                Free Throw - 2 of 2         38
## 1495                 Driving Layup Shot         38
## 1496                          Jump Shot         41
## 1497                 Cutting Layup Shot         41
## 1498                   Pullup Jump Shot         41
## 1499               Turnaround Jump Shot         43
## 1500                Free Throw - 1 of 1         43
## 1501           Running Pullup Jump Shot         43
## 1502                         Layup Shot         43
## 1503                Free Throw - 1 of 2         44
## 1504                Free Throw - 2 of 2         45
## 1505     Turnaround Fade Away Jump Shot         45
## 1506             Driving Jump Shot Bank         45
## 1507                 Running Layup Shot         45
## 1508                  Running Jump Shot         45
## 1509                   Pullup Jump Shot         45
## 1510                 Driving Layup Shot         45
## 1511                 Cutting Layup Shot         45
## 1512                          Jump Shot         45
## 1513                 Driving Layup Shot         45
## 1514                          Jump Shot         45
## 1515                Step Back Jump Shot         45
## 1516                          Jump Shot         45
## 1517                 Floating Jump Shot         45
## 1518                          Jump Shot         45
## 1519                 Running Layup Shot         47
## 1520                          Jump Shot         47
## 1521               Turnaround Hook Shot         47
## 1522                          Jump Shot         47
## 1523                   Pullup Jump Shot         47
## 1524                          Jump Shot         47
## 1525                          Jump Shot         47
## 1526                Free Throw - 1 of 2         47
## 1527                Free Throw - 2 of 2         47
## 1528          Driving Finger Roll Layup         47
## 1529                Free Throw - 1 of 2         48
## 1530                Free Throw - 2 of 2         49
## 1531                 Driving Layup Shot         49
## 1532                Free Throw - 1 of 2         50
## 1533                Free Throw - 2 of 2         51
## 1534                          Jump Shot         51
## 1535                 Driving Layup Shot         53
## 1536           Running Pullup Jump Shot         53
## 1537                          Jump Shot         53
## 1538                Fade Away Jump Shot         53
## 1539                Free Throw - 1 of 1         53
## 1540                         Layup Shot         55
## 1541                          Jump Shot         55
## 1542                 Driving Layup Shot         55
## 1543                 Cutting Layup Shot         55
## 1544                   Pullup Jump Shot         55
## 1545                          Jump Shot         55
## 1546                          Jump Shot         55
## 1547         Driving Floating Jump Shot         55
## 1548                          Jump Shot         55
## 1549                          Jump Shot         55
## 1550                   Pullup Jump Shot         55
## 1551                          Jump Shot         55
## 1552                 Floating Jump Shot         57
## 1553                          Jump Shot         57
## 1554                Free Throw - 1 of 2         58
## 1555                Free Throw - 2 of 2         59
## 1556                Fade Away Jump Shot         59
## 1557               Turnaround Hook Shot         61
## 1558                 Driving Layup Shot         61
## 1559           Running Pullup Jump Shot         61
## 1560                   Pullup Jump Shot         61
## 1561                 Running Layup Shot         61
## 1562                   Pullup Jump Shot         63
## 1563                          Jump Shot         63
## 1564               Turnaround Jump Shot         63
## 1565                         Layup Shot         63
## 1566                 Layup Shot Putback         65
## 1567                          Jump Shot         65
## 1568                 Driving Layup Shot         65
## 1569                          Jump Shot         65
## 1570                          Jump Shot         65
## 1571                          Jump Shot         65
## 1572     Turnaround Fade Away Jump Shot         65
## 1573               Turnaround Hook Shot         67
## 1574                 Driving Layup Shot         67
## 1575                Free Throw - 1 of 2         67
## 1576                Free Throw - 2 of 2         67
## 1577                 Driving Layup Shot         69
## 1578                          Jump Shot         69
## 1579                          Jump Shot         69
## 1580                          Jump Shot         69
## 1581                          Jump Shot         71
## 1582                Free Throw - 1 of 2         71
## 1583                Free Throw - 2 of 2         71
## 1584                          Jump Shot         71
## 1585                Free Throw - 1 of 2         72
## 1586                Free Throw - 2 of 2         72
## 1587                 Driving Layup Shot         72
## 1588                          Jump Shot         75
## 1589                 Cutting Layup Shot         75
## 1590                Step Back Jump Shot         75
## 1591                          Jump Shot          3
## 1592                          Jump Shot          3
## 1593               Turnaround Jump Shot          3
## 1594                   Pullup Jump Shot          3
## 1595                   Pullup Jump Shot          3
## 1596                   Pullup Jump Shot          3
## 1597                   Pullup Jump Shot          6
## 1598                   Pullup Jump Shot          6
## 1599                         Layup Shot          8
## 1600                          Jump Shot          8
## 1601                 Running Layup Shot          8
## 1602                          Jump Shot          8
## 1603                 Driving Layup Shot          8
## 1604                   Pullup Jump Shot          8
## 1605                          Hook Shot          8
## 1606                          Jump Shot          8
## 1607                 Driving Layup Shot          8
## 1608                   Pullup Jump Shot         11
## 1609                Free Throw - 1 of 1         11
## 1610                 Cutting Layup Shot         11
## 1611                          Jump Shot         11
## 1612                          Jump Shot         11
## 1613                          Jump Shot         11
## 1614                          Jump Shot         11
## 1615                          Jump Shot         14
## 1616                          Jump Shot         14
## 1617                          Jump Shot         14
## 1618                          Jump Shot         14
## 1619         Driving Floating Jump Shot         14
## 1620                          Hook Shot         14
## 1621                          Jump Shot         17
## 1622                Free Throw - 1 of 2         17
## 1623                Free Throw - 2 of 2         17
## 1624                 Driving Layup Shot         17
## 1625                Free Throw - 1 of 2         18
## 1626                Free Throw - 2 of 2         19
## 1627                 Reverse Layup Shot         19
## 1628                         Layup Shot         19
## 1629                 Layup Shot Putback         19
## 1630                          Jump Shot         19
## 1631                         Layup Shot         19
## 1632                          Jump Shot         19
## 1633                         Layup Shot         19
## 1634                         Layup Shot         19
## 1635                         Layup Shot         21
## 1636                Free Throw - 1 of 2         21
## 1637                Free Throw - 2 of 2         21
## 1638           Running Pullup Jump Shot         21
## 1639                         Layup Shot         23
## 1640               Turnaround Jump Shot         21
## 1641                Free Throw - 1 of 2         21
## 1642                Free Throw - 2 of 2         22
## 1643                          Jump Shot         22
## 1644                          Jump Shot         24
## 1645                          Jump Shot         24
## 1646                Step Back Jump Shot         24
## 1647               Turnaround Jump Shot         24
## 1648                Free Throw - 1 of 2         25
## 1649                Free Throw - 2 of 2         25
## 1650                         Layup Shot         25
## 1651                          Jump Shot         27
## 1652                          Jump Shot         27
## 1653                 Driving Layup Shot         27
## 1654                 Layup Shot Putback         27
## 1655               Turnaround Jump Shot         27
## 1656                   Pullup Jump Shot         27
## 1657                          Jump Shot         27
## 1658               Turnaround Hook Shot         27
## 1659                   Pullup Jump Shot         27
## 1660                          Jump Shot         27
## 1661                   Pullup Jump Shot         29
## 1662                   Pullup Jump Shot         29
## 1663                Free Throw - 1 of 2         29
## 1664                Free Throw - 2 of 2         29
## 1665     Turnaround Fade Away Jump Shot         29
## 1666                 Cutting Layup Shot         31
## 1667 Turnaround Fadeaway Bank Jump Shot         31
## 1668                 Running Layup Shot         31
## 1669                 Layup Shot Putback         33
## 1670                Free Throw - 1 of 2         33
## 1671                Free Throw - 2 of 2         33
## 1672                          Jump Shot         36
## 1673                 Cutting Layup Shot         36
## 1674                Free Throw - 1 of 2         37
## 1675                Free Throw - 2 of 2         37
## 1676                Free Throw - 1 of 2         37
## 1677                Free Throw - 2 of 2         37
## 1678               Turnaround Hook Shot         37
## 1679                Free Throw - 1 of 2         38
## 1680                Free Throw - 2 of 2         39
## 1681                          Jump Shot         39
## 1682                Free Throw - 1 of 2         40
## 1683                Free Throw - 2 of 2         41
## 1684                   Pullup Jump Shot         41
## 1685                         Layup Shot         41
## 1686                          Jump Shot         41
## 1687                          Jump Shot         44
## 1688                 Driving Layup Shot         44
## 1689                   Pullup Jump Shot         44
## 1690               Turnaround Hook Shot         44
## 1691                         Layup Shot         46
## 1692     Turnaround Fade Away Jump Shot         46
## 1693                          Jump Shot         46
## 1694                 Cutting Layup Shot         46
## 1695                         Layup Shot         48
## 1696                          Jump Shot         48
## 1697                   Pullup Jump Shot         48
## 1698                Free Throw - 1 of 2         49
## 1699                Free Throw - 2 of 2         50
## 1700                          Jump Shot         50
## 1701                 Cutting Layup Shot         50
## 1702                 Floating Jump Shot         50
## 1703                Free Throw - 1 of 2         50
## 1704                Free Throw - 2 of 2         50
## 1705     Turnaround Fade Away Jump Shot         52
## 1706                Free Throw - 1 of 2         53
## 1707                Free Throw - 2 of 2         54
## 1708               Turnaround Hook Shot         54
## 1709                Free Throw - 1 of 2         54
## 1710                Free Throw - 2 of 2         55
## 1711                   Pullup Jump Shot         55
## 1712                          Jump Shot         55
## 1713                         Layup Shot         57
## 1714                  Driving Hook Shot         57
## 1715          Turnaround Bank Jump Shot         59
## 1716               Turnaround Hook Shot         59
## 1717                         Layup Shot         59
## 1718                          Jump Shot         59
## 1719                 Driving Layup Shot         61
## 1720             Free Throw - Technical         61
## 1721                 Cutting Layup Shot         61
## 1722                          Jump Shot         64
## 1723                   Pullup Jump Shot         64
## 1724                          Jump Shot         64
## 1725                         Layup Shot         66
## 1726                Free Throw - 1 of 1         67
## 1727                 Cutting Layup Shot         67
## 1728                 Running Layup Shot         69
## 1729                          Jump Shot         69
## 1730                Free Throw - 1 of 2         69
## 1731                Free Throw - 2 of 2         69
## 1732                         Layup Shot         69
## 1733                          Jump Shot         69
## 1734                          Jump Shot         72
## 1735                          Jump Shot         72
## 1736                         Layup Shot         72
## 1737                          Jump Shot         72
## 1738                          Jump Shot         72
## 1739             Free Throw - Technical         73
## 1740                          Jump Shot         73
## 1741                          Jump Shot         76
## 1742                          Jump Shot         76
## 1743                          Hook Shot         76
## 1744                   Pullup Jump Shot         76
## 1745                Free Throw - 1 of 2         76
## 1746                Free Throw - 2 of 2         76
## 1747                         Layup Shot         76
## 1748                          Jump Shot         76
## 1749                          Jump Shot         76
## 1750                         Layup Shot         76
## 1751                          Jump Shot         76
## 1752                          Jump Shot         79
## 1753                Free Throw - 1 of 2         79
## 1754                Free Throw - 2 of 2         79
## 1755                Free Throw - 1 of 2         80
## 1756                Free Throw - 2 of 2         81
## 1757                 Driving Layup Shot         81
## 1758                          Jump Shot         81
## 1759                          Jump Shot         81
## 1760                          Jump Shot         81
## 1761                 Driving Layup Shot         83
## 1762                 Driving Layup Shot         83
## 1763                         Layup Shot         83
## 1764               Turnaround Jump Shot         83
## 1765                         Layup Shot         85
## 1766                          Jump Shot         85
## 1767               Alley Oop Layup Shot         87
## 1768                Free Throw - 1 of 2         87
## 1769                Free Throw - 2 of 2         87
## 1770                Free Throw - 1 of 2         88
## 1771                Free Throw - 2 of 2         89
## 1772                   Pullup Jump Shot         89
## 1773                 Driving Layup Shot         91
## 1774              Layup Running Reverse         91
## 1775                   Pullup Jump Shot         91
## 1776                          Jump Shot         91
## 1777                          Jump Shot         91
## 1778               Turnaround Jump Shot          2
## 1779                          Jump Shot          2
## 1780                          Jump Shot          4
## 1781                          Jump Shot          4
## 1782                         Layup Shot          6
## 1783                          Jump Shot          6
## 1784                          Jump Shot          6
## 1785                   Pullup Jump Shot          8
## 1786                Free Throw - 1 of 2          9
## 1787                Free Throw - 2 of 2         10
## 1788                Step Back Jump Shot         10
## 1789                          Jump Shot         10
## 1790               Turnaround Jump Shot         10
## 1791                 Running Layup Shot         10
## 1792                          Jump Shot         10
## 1793                Free Throw - 1 of 2         11
## 1794                Free Throw - 2 of 2         12
## 1795                  Running Jump Shot         12
## 1796                          Jump Shot         14
## 1797                   Pullup Jump Shot         14
## 1798                Step Back Jump Shot         14
## 1799                          Jump Shot         14
## 1800                Free Throw - 1 of 2         15
## 1801                Free Throw - 2 of 2         16
## 1802                          Jump Shot         16
## 1803                          Jump Shot         16
## 1804                Free Throw - 1 of 2         17
## 1805                Free Throw - 2 of 2         18
## 1806                          Jump Shot         18
## 1807               Turnaround Jump Shot         18
## 1808                          Jump Shot         18
## 1809                          Jump Shot         18
## 1810               Turnaround Jump Shot         20
## 1811                Free Throw - 1 of 1         21
## 1812                Step Back Jump Shot         24
## 1813                Free Throw - 1 of 2         24
## 1814                Free Throw - 2 of 2         24
## 1815                          Jump Shot         27
## 1816                          Jump Shot         27
## 1817                          Jump Shot         27
## 1818                          Jump Shot         27
## 1819                          Jump Shot         29
## 1820                         Layup Shot         31
## 1821                          Jump Shot         31
## 1822                          Jump Shot         31
## 1823                  Running Jump Shot         31
## 1824                          Jump Shot         31
## 1825                 Driving Layup Shot         31
## 1826               Turnaround Jump Shot         31
## 1827                          Jump Shot         31
## 1828                   Pullup Jump Shot         33
## 1829                          Jump Shot         33
## 1830                         Layup Shot         35
## 1831                          Jump Shot         35
## 1832                 Running Layup Shot         37
## 1833                          Jump Shot         37
## 1834                Step Back Jump Shot         37
## 1835                          Jump Shot         37
## 1836               Turnaround Jump Shot         37
## 1837                          Jump Shot         37
## 1838                         Layup Shot         39
## 1839                          Jump Shot         39
## 1840                          Jump Shot         39
## 1841                          Jump Shot         39
## 1842                         Layup Shot         39
## 1843                         Layup Shot         39
## 1844                          Jump Shot         39
## 1845                          Jump Shot         39
## 1846                          Jump Shot         39
## 1847                         Layup Shot         39
## 1848                Free Throw - 1 of 2         40
## 1849                Free Throw - 2 of 2         40
## 1850                          Jump Shot         40
## 1851                          Jump Shot         40
## 1852                          Jump Shot         40
## 1853                          Jump Shot         40
## 1854               Turnaround Hook Shot         40
## 1855                          Jump Shot         43
## 1856                          Jump Shot         43
## 1857                          Jump Shot         43
## 1858                          Jump Shot         43
## 1859               Turnaround Jump Shot         43
## 1860                          Jump Shot         43
## 1861                 Driving Layup Shot         43
## 1862                          Jump Shot         45
## 1863                         Layup Shot         45
## 1864                          Jump Shot         45
## 1865                Step Back Jump Shot         45
## 1866                          Jump Shot         45
## 1867                Step Back Jump Shot         45
## 1868                Free Throw - 1 of 2         45
## 1869                Free Throw - 2 of 2         45
## 1870                         Layup Shot         47
## 1871                          Jump Shot         47
## 1872               Turnaround Jump Shot         49
## 1873                Free Throw - 1 of 2         49
## 1874                Free Throw - 2 of 2         49
## 1875                Free Throw - 1 of 2         50
## 1876                Free Throw - 2 of 2         51
## 1877                  Running Jump Shot         51
## 1878                          Jump Shot         51
## 1879                Step Back Jump Shot         51
## 1880                         Layup Shot         51
## 1881                          Jump Shot         54
## 1882                          Jump Shot         54
## 1883                          Jump Shot         54
## 1884                     Jump Shot Bank         56
## 1885                 Reverse Layup Shot         56
## 1886     Turnaround Fade Away Jump Shot         56
## 1887                          Jump Shot         56
## 1888                          Jump Shot         56
## 1889                          Jump Shot         56
## 1890                          Jump Shot         56
## 1891                Free Throw - 1 of 2         56
## 1892                Free Throw - 2 of 2         56
## 1893                          Jump Shot         58
## 1894               Turnaround Jump Shot         58
## 1895                         Layup Shot         58
## 1896                          Jump Shot         58
## 1897          Turnaround Bank Jump Shot         60
## 1898                          Jump Shot         60
## 1899          Turnaround Bank Jump Shot         62
## 1900                Free Throw - 1 of 2         62
## 1901                Free Throw - 2 of 2         62
## 1902                          Jump Shot         62
## 1903                          Jump Shot         62
## 1904                          Jump Shot         62
## 1905                   Pullup Jump Shot         64
## 1906                 Driving Layup Shot         64
## 1907                          Jump Shot         64
## 1908                         Layup Shot         66
## 1909                          Jump Shot         66
## 1910                          Jump Shot         66
## 1911                          Jump Shot         66
## 1912                Free Throw - 1 of 2         67
## 1913                Free Throw - 2 of 2         67
## 1914                          Jump Shot         67
## 1915                          Jump Shot         67
## 1916                          Jump Shot         69
## 1917                          Jump Shot         69
## 1918                 Driving Layup Shot         71
## 1919                          Jump Shot         71
## 1920                     Jump Shot Bank         73
## 1921                Free Throw - 1 of 1         74
## 1922                          Jump Shot         74
## 1923                          Jump Shot         77
## 1924                          Jump Shot         77
## 1925                          Jump Shot         77
## 1926                         Layup Shot         77
## 1927                          Hook Shot         79
## 1928                          Jump Shot         79
## 1929                         Layup Shot         81
## 1930                          Jump Shot         81
## 1931                Step Back Jump Shot         83
## 1932                         Layup Shot         83
## 1933                          Jump Shot         85
## 1934                          Jump Shot         85
## 1935                          Hook Shot         85
## 1936                Free Throw - 1 of 2         86
## 1937                Free Throw - 2 of 2         87
## 1938                          Jump Shot         87
## 1939             Driving Jump Shot Bank         89
## 1940                          Jump Shot         89
## 1941                          Jump Shot         89
## 1942                         Layup Shot         89
## 1943                         Layup Shot         89
## 1944                          Jump Shot         91
## 1945                         Layup Shot         91
## 1946                Free Throw - 1 of 2         91
## 1947                Free Throw - 2 of 2         91
## 1948                          Jump Shot         94
## 1949                          Jump Shot         94
## 1950                          Jump Shot         96
## 1951                          Jump Shot         96
## 1952                Step Back Jump Shot         96
## 1953                 Cutting Layup Shot          0
## 1954                 Layup Shot Putback          0
## 1955                Free Throw - 1 of 2          0
## 1956                Free Throw - 2 of 2          1
## 1957                 Running Layup Shot          3
## 1958                          Jump Shot          3
## 1959                 Layup Shot Putback          5
## 1960                 Running Layup Shot          7
## 1961     Turnaround Fade Away Jump Shot          7
## 1962         Driving Floating Jump Shot          7
## 1963                          Jump Shot          7
## 1964                          Jump Shot          7
## 1965                 Driving Layup Shot          9
## 1966                   Pullup Jump Shot          9
## 1967                         Layup Shot          9
## 1968                 Driving Layup Shot          9
## 1969               Turnaround Jump Shot          9
## 1970                 Driving Layup Shot          9
## 1971                          Jump Shot          9
## 1972               Turnaround Hook Shot          9
## 1973                          Jump Shot          9
## 1974                 Driving Layup Shot         11
## 1975                 Driving Layup Shot         11
## 1976                 Cutting Layup Shot         11
## 1977                     Jump Shot Bank         13
## 1978                 Running Layup Shot         13
## 1979                          Jump Shot         13
## 1980                   Pullup Jump Shot         13
## 1981                 Layup Shot Putback         13
## 1982                          Jump Shot         13
## 1983                   Pullup Jump Shot         13
## 1984                Free Throw - 1 of 2         13
## 1985                Free Throw - 2 of 2         13
## 1986                 Driving Layup Shot         15
## 1987                Free Throw - 1 of 2         15
## 1988                Free Throw - 2 of 2         15
## 1989                 Running Layup Shot         15
## 1990                           Tip Shot         15
## 1991                 Layup Shot Putback         15
## 1992           Running Pullup Jump Shot         15
## 1993                 Layup Shot Putback         17
## 1994                 Driving Layup Shot         17
## 1995                          Jump Shot         17
## 1996                   Pullup Jump Shot         17
## 1997                 Driving Layup Shot         19
## 1998                     Jump Shot Bank         21
## 1999                Free Throw - 1 of 2         21
## 2000                Free Throw - 2 of 2         21
## 2001                          Jump Shot         23
## 2002                 Driving Layup Shot         25
## 2003                 Driving Layup Shot         25
## 2004                          Jump Shot         25
## 2005                   Pullup Jump Shot         25
## 2006                Free Throw - 1 of 2         26
## 2007                Free Throw - 2 of 2         27
## 2008                   Pullup Jump Shot         27
## 2009                 Driving Layup Shot         27
## 2010                           Tip Shot         27
## 2011                           Tip Shot         27
## 2012                Free Throw - 1 of 2         28
## 2013                Free Throw - 2 of 2         29
## 2014                          Jump Shot         32
## 2015                 Driving Layup Shot         32
## 2016                Free Throw - 1 of 2         33
## 2017                Free Throw - 2 of 2         34
## 2018                 Driving Layup Shot         34
## 2019                 Running Layup Shot         36
## 2020                Free Throw - 1 of 1         37
## 2021              Layup Driving Reverse         37
## 2022                Free Throw - 1 of 2         37
## 2023                Free Throw - 2 of 2         37
## 2024                Free Throw - 1 of 2         38
## 2025                Free Throw - 2 of 2         38
## 2026                 Driving Layup Shot         38
## 2027                 Layup Shot Putback         38
## 2028                   Pullup Jump Shot         38
## 2029                          Jump Shot         38
## 2030                 Driving Layup Shot         38
## 2031           Running Pullup Jump Shot         38
## 2032                 Driving Layup Shot         38
## 2033              Layup Driving Reverse         38
## 2034                           Tip Shot         38
## 2035               Turnaround Jump Shot         38
## 2036                Free Throw - 1 of 2         38
## 2037                Free Throw - 2 of 2         38
## 2038                 Cutting Layup Shot         40
## 2039                Free Throw - 1 of 2         40
## 2040                Free Throw - 2 of 2         40
## 2041                          Jump Shot         40
## 2042           Running Pullup Jump Shot         40
## 2043                          Jump Shot         40
## 2044                 Running Layup Shot         40
## 2045                 Driving Layup Shot         42
## 2046                   Pullup Jump Shot         42
## 2047                 Running Layup Shot         42
## 2048                 Layup Shot Putback         42
## 2049                          Jump Shot         42
## 2050               Turnaround Jump Shot         44
## 2051         Driving Floating Jump Shot         44
## 2052                Free Throw - 1 of 2         45
## 2053                Free Throw - 2 of 2         46
## 2054                   Pullup Jump Shot         46
## 2055                   Pullup Jump Shot         46
## 2056                   Pullup Jump Shot         46
## 2057                 Driving Layup Shot         46
## 2058                   Pullup Jump Shot         48
## 2059                 Driving Layup Shot         48
## 2060                 Cutting Layup Shot         48
## 2061                 Cutting Layup Shot         50
## 2062                          Jump Shot         50
## 2063                   Pullup Jump Shot         50
## 2064                 Running Layup Shot         50
## 2065                   Pullup Jump Shot         52
## 2066         Driving Floating Jump Shot         52
## 2067                Free Throw - 1 of 2         53
## 2068                Free Throw - 2 of 2         54
## 2069                 Driving Layup Shot         54
## 2070                Free Throw - 1 of 2         54
## 2071                Free Throw - 2 of 2         55
## 2072                 Running Layup Shot         55
## 2073         Driving Floating Jump Shot         55
## 2074                Free Throw - 1 of 1         55
## 2075                Free Throw - 1 of 2         56
## 2076                Free Throw - 2 of 2         56
## 2077                         Layup Shot         56
## 2078                          Jump Shot         56
## 2079                          Jump Shot         56
## 2080                 Driving Layup Shot         56
## 2081                         Layup Shot         58
## 2082                   Pullup Jump Shot         58
## 2083                Free Throw - 1 of 2         59
## 2084                Free Throw - 2 of 2         60
## 2085                          Jump Shot         60
## 2086                          Hook Shot         60
## 2087                Free Throw - 1 of 2         60
## 2088                Free Throw - 2 of 2         60
## 2089                          Jump Shot         60
## 2090                Free Throw - 1 of 2         61
## 2091                Free Throw - 2 of 2         62
## 2092             Free Throw - Technical         62
## 2093                Free Throw - 1 of 2         62
## 2094                Free Throw - 2 of 2         62
## 2095                 Driving Layup Shot         62
## 2096                         Layup Shot         64
## 2097                          Jump Shot         64
## 2098                Free Throw - 1 of 2         64
## 2099                Free Throw - 2 of 2         64
## 2100                          Jump Shot         64
## 2101                 Driving Layup Shot         64
## 2102                 Driving Layup Shot         64
## 2103                          Jump Shot         64
## 2104                Step Back Jump Shot         64
## 2105         Driving Floating Jump Shot         64
## 2106                          Jump Shot         64
## 2107                          Jump Shot         64
## 2108                 Driving Layup Shot         64
## 2109                         Layup Shot         64
## 2110         Driving Floating Jump Shot         64
## 2111                Free Throw - 1 of 2         64
## 2112                Free Throw - 2 of 2         65
## 2113                          Jump Shot         65
## 2114              Layup Driving Reverse         65
## 2115                          Jump Shot         65
## 2116                 Running Layup Shot         67
## 2117                          Jump Shot         67
## 2118                 Running Layup Shot         67
## 2119                Free Throw - 1 of 1         67
## 2120           Running Pullup Jump Shot         67
## 2121                   Pullup Jump Shot         67
## 2122                 Driving Layup Shot         69
## 2123                Free Throw - 1 of 1         70
## 2124                          Jump Shot         70
## 2125                          Jump Shot         70
## 2126                     Jump Shot Bank         70
## 2127                 Driving Layup Shot         70
## 2128                Free Throw - 1 of 2         70
## 2129                Free Throw - 2 of 2         70
## 2130                          Jump Shot         70
## 2131                          Jump Shot         70
## 2132                 Driving Layup Shot         72
## 2133                   Pullup Jump Shot         72
## 2134                Free Throw - 1 of 2         72
## 2135                Free Throw - 2 of 2         73
## 2136                 Running Layup Shot         73
## 2137                         Layup Shot         73
## 2138                 Running Layup Shot         73
## 2139                Free Throw - 1 of 2         73
## 2140                Free Throw - 2 of 2         73
## 2141                 Cutting Layup Shot         75
## 2142                Free Throw - 1 of 1         76
## 2143               Turnaround Jump Shot         78
## 2144                   Pullup Jump Shot         78
## 2145                         Layup Shot         78
## 2146                         Layup Shot         78
## 2147                 Driving Layup Shot         78
## 2148                   Pullup Jump Shot         80
## 2149                 Driving Layup Shot         80
## 2150                           Tip Shot         80
## 2151                Free Throw - 1 of 2         81
## 2152                Free Throw - 2 of 2         81
## 2153                   Pullup Jump Shot         81
## 2154                 Layup Shot Putback         81
## 2155                Free Throw - 1 of 2         82
## 2156                Free Throw - 2 of 2         83
## 2157                 Driving Layup Shot         83
## 2158                Free Throw - 1 of 2         84
## 2159                Free Throw - 2 of 2         85
## 2160                 Driving Layup Shot          0
## 2161              Layup Driving Reverse          2
## 2162               Turnaround Jump Shot          2
## 2163                 Cutting Layup Shot          2
## 2164                          Jump Shot          4
## 2165                          Jump Shot          4
## 2166         Driving Floating Jump Shot          6
## 2167                          Jump Shot          6
## 2168                Step Back Jump Shot          9
## 2169                          Jump Shot          9
## 2170                Free Throw - 1 of 2         10
## 2171                Free Throw - 2 of 2         11
## 2172                 Running Layup Shot         13
## 2173                   Pullup Jump Shot         13
## 2174                   Pullup Jump Shot         13
## 2175                          Jump Shot         13
## 2176                 Reverse Layup Shot         13
## 2177                 Cutting Layup Shot         13
## 2178                          Jump Shot         13
## 2179                   Pullup Jump Shot         13
## 2180                     Jump Shot Bank         16
## 2181                 Reverse Layup Shot         16
## 2182     Cutting Finger Roll Layup Shot         16
## 2183                          Jump Shot         16
## 2184                 Layup Shot Putback         16
## 2185                          Jump Shot         16
## 2186                   Pullup Jump Shot         18
## 2187                          Jump Shot         18
## 2188                   Pullup Jump Shot         18
## 2189                 Cutting Layup Shot         18
## 2190                   Pullup Jump Shot         18
## 2191                          Jump Shot         18
## 2192                 Driving Layup Shot         18
## 2193          Driving Finger Roll Layup         20
## 2194                 Cutting Layup Shot         20
## 2195                   Pullup Jump Shot         20
## 2196          Driving Finger Roll Layup         20
## 2197           Running Pullup Jump Shot         20
## 2198                 Driving Layup Shot         22
## 2199                Step Back Jump Shot         22
## 2200                Step Back Jump Shot         22
## 2201                 Running Layup Shot         22
## 2202                 Cutting Layup Shot         22
## 2203                Step Back Jump Shot         22
## 2204                 Layup Shot Putback         22
## 2205                 Cutting Layup Shot         22
## 2206                Free Throw - 1 of 1         22
## 2207                Free Throw - 1 of 2         23
## 2208                Free Throw - 2 of 2         24
## 2209               Turnaround Jump Shot         26
## 2210                          Jump Shot         26
## 2211                          Jump Shot         26
## 2212                          Jump Shot         26
## 2213                          Jump Shot         26
## 2214                 Cutting Layup Shot         26
## 2215                 Cutting Layup Shot         26
## 2216                          Jump Shot         26
## 2217                 Driving Layup Shot         26
## 2218                 Running Layup Shot         26
## 2219                          Jump Shot         26
## 2220                 Layup Shot Putback         26
## 2221                Free Throw - 1 of 1         26
## 2222                          Jump Shot         26
## 2223                Step Back Jump Shot         26
## 2224                Free Throw - 1 of 2         27
## 2225                Free Throw - 2 of 2         27
## 2226                   Pullup Jump Shot         27
## 2227                          Jump Shot         27
## 2228         Driving Floating Jump Shot         27
## 2229                 Floating Jump Shot         27
## 2230                Free Throw - 1 of 2         28
## 2231                Free Throw - 2 of 2         29
## 2232                Step Back Jump Shot         29
## 2233                 Running Layup Shot         31
## 2234                         Layup Shot         31
## 2235                          Jump Shot         33
## 2236               Turnaround Jump Shot         33
## 2237                 Driving Layup Shot         33
## 2238                Step Back Jump Shot         33
## 2239                         Layup Shot         33
## 2240           Running Pullup Jump Shot         35
## 2241                          Jump Shot         35
## 2242                   Pullup Jump Shot         35
## 2243                          Jump Shot         35
## 2244                 Cutting Layup Shot         35
## 2245                   Pullup Jump Shot         35
## 2246                          Jump Shot         35
## 2247                 Running Layup Shot         35
## 2248                 Driving Layup Shot         37
## 2249                 Cutting Layup Shot         37
## 2250                   Pullup Jump Shot         37
## 2251                Step Back Jump Shot         37
## 2252                          Jump Shot         37
## 2253                Step Back Jump Shot         37
## 2254                           Tip Shot         37
## 2255                 Cutting Layup Shot         39
## 2256                          Jump Shot         42
## 2257                Step Back Jump Shot         42
## 2258                 Driving Layup Shot         42
## 2259                Free Throw - 1 of 1         42
## 2260                          Jump Shot         42
## 2261                          Hook Shot         44
## 2262                 Driving Layup Shot         44
## 2263                          Jump Shot         44
## 2264                          Jump Shot         44
## 2265                 Driving Layup Shot         44
## 2266                          Jump Shot         44
## 2267                 Cutting Layup Shot         46
## 2268          Driving Finger Roll Layup         48
## 2269                Free Throw - 1 of 2         48
## 2270                Free Throw - 2 of 2         48
## 2271                          Jump Shot         48
## 2272                         Layup Shot         48
## 2273                           Tip Shot         48
## 2274                 Cutting Layup Shot         48
## 2275                Free Throw - 1 of 2         49
## 2276                Free Throw - 2 of 2         50
## 2277                Free Throw - 1 of 2         50
## 2278                Free Throw - 2 of 2         50
## 2279                Step Back Jump Shot         50
## 2280                 Running Layup Shot         50
## 2281                 Cutting Layup Shot         50
## 2282                Fade Away Jump Shot         50
## 2283               Turnaround Jump Shot         50
## 2284                          Jump Shot         50
## 2285                   Pullup Jump Shot         50
## 2286                 Cutting Layup Shot         50
## 2287                 Driving Layup Shot         50
## 2288                          Jump Shot         50
## 2289                          Jump Shot         50
## 2290                 Running Layup Shot         50
## 2291         Driving Floating Jump Shot         50
## 2292                 Cutting Layup Shot         52
## 2293                Free Throw - 1 of 2         53
## 2294                Free Throw - 2 of 2         54
## 2295                          Jump Shot         54
## 2296                   Pullup Jump Shot         56
## 2297                   Pullup Jump Shot         56
## 2298                         Layup Shot         56
## 2299                 Driving Layup Shot         56
## 2300                 Driving Layup Shot         56
## 2301                 Running Layup Shot         56
## 2302                         Layup Shot         58
## 2303                          Jump Shot         58
## 2304                 Driving Layup Shot         58
## 2305                          Jump Shot         58
## 2306                          Jump Shot         60
## 2307                 Driving Layup Shot         60
## 2308                          Jump Shot         63
## 2309                          Jump Shot         63
## 2310                Free Throw - 1 of 2         64
## 2311                Free Throw - 2 of 2         65
## 2312                 Driving Layup Shot         65
## 2313                          Jump Shot         65
## 2314                Free Throw - 1 of 2         66
## 2315                Free Throw - 2 of 2         67
## 2316                          Jump Shot          0
## 2317                         Layup Shot          0
## 2318                Free Throw - 1 of 1          0
## 2319                   Pullup Jump Shot          0
## 2320                          Jump Shot          3
## 2321     Turnaround Fade Away Jump Shot          3
## 2322                          Jump Shot          3
## 2323                 Driving Layup Shot          3
## 2324                          Jump Shot          3
## 2325                Free Throw - 1 of 2          3
## 2326                Free Throw - 2 of 2          3
## 2327                          Jump Shot          3
## 2328                          Jump Shot          3
## 2329                         Layup Shot          3
## 2330                          Jump Shot          5
## 2331                 Driving Layup Shot          5
## 2332                 Floating Jump Shot          5
## 2333                          Jump Shot          8
## 2334                          Jump Shot          8
## 2335                          Jump Shot         11
## 2336                   Pullup Jump Shot         11
## 2337                          Jump Shot         11
## 2338                         Layup Shot         11
## 2339                 Layup Shot Putback         11
## 2340                 Driving Layup Shot         11
## 2341                Free Throw - 1 of 2         11
## 2342                Free Throw - 2 of 2         11
## 2343                          Jump Shot         14
## 2344          Running Finger Roll Layup         14
## 2345                   Pullup Jump Shot         16
## 2346                         Layup Shot         16
## 2347                          Jump Shot         16
## 2348                   Pullup Jump Shot         16
## 2349                          Jump Shot         16
## 2350                          Jump Shot         16
## 2351                Free Throw - 1 of 2         16
## 2352                Free Throw - 2 of 2         16
## 2353          Driving Finger Roll Layup         16
## 2354               Turnaround Hook Shot         16
## 2355                          Jump Shot         16
## 2356                         Layup Shot         16
## 2357                         Layup Shot         16
## 2358                 Driving Layup Shot         16
## 2359               Turnaround Jump Shot         16
## 2360                 Reverse Layup Shot         18
## 2361                          Jump Shot         18
## 2362                Free Throw - 1 of 2         19
## 2363                Free Throw - 2 of 2         20
## 2364                          Jump Shot         20
## 2365                          Jump Shot         20
## 2366                 Reverse Layup Shot         20
## 2367                 Floating Jump Shot         20
## 2368                          Jump Shot         22
## 2369                 Cutting Layup Shot         22
## 2370                 Floating Jump Shot         22
## 2371                          Jump Shot         22
## 2372                   Pullup Jump Shot         22
## 2373                 Driving Layup Shot         24
## 2374                          Jump Shot         24
## 2375                Step Back Jump Shot         24
## 2376                          Jump Shot         24
## 2377                 Driving Layup Shot         24
## 2378                Free Throw - 1 of 2         24
## 2379                Free Throw - 2 of 2         24
## 2380                Fade Away Jump Shot         24
## 2381                          Jump Shot         24
## 2382                          Jump Shot         24
## 2383                          Jump Shot         26
## 2384                 Cutting Layup Shot         26
## 2385                          Jump Shot         26
## 2386                Free Throw - 1 of 2         26
## 2387                Free Throw - 2 of 2         26
## 2388                          Jump Shot         26
## 2389               Turnaround Jump Shot         26
## 2390          Driving Finger Roll Layup         28
## 2391                Free Throw - 1 of 2         28
## 2392                Free Throw - 2 of 2         28
## 2393                          Jump Shot         31
## 2394     Turnaround Fade Away Jump Shot         31
## 2395                 Cutting Layup Shot         33
## 2396                          Jump Shot         33
## 2397                          Jump Shot         33
## 2398                          Jump Shot         33
## 2399                          Jump Shot         35
## 2400                Free Throw - 1 of 2         35
## 2401                Free Throw - 2 of 2         35
## 2402                          Jump Shot         38
## 2403                         Layup Shot         38
## 2404                         Layup Shot         38
## 2405                          Jump Shot         38
## 2406                          Jump Shot         38
## 2407                          Jump Shot         38
## 2408                   Pullup Jump Shot         38
## 2409                          Jump Shot         41
## 2410                         Layup Shot         43
## 2411                         Layup Shot         43
## 2412                         Layup Shot         43
## 2413                         Layup Shot         43
## 2414                 Layup Shot Putback         43
## 2415                 Floating Jump Shot         43
## 2416                          Jump Shot         43
## 2417                          Jump Shot         43
## 2418                 Driving Layup Shot         43
## 2419                          Jump Shot         46
## 2420                          Jump Shot         46
## 2421                          Jump Shot         46
## 2422                          Jump Shot         46
## 2423     Turnaround Fade Away Jump Shot         46
## 2424                         Layup Shot         46
## 2425                Free Throw - 1 of 2         47
## 2426                Free Throw - 2 of 2         47
## 2427                          Jump Shot         49
## 2428                   Pullup Jump Shot         49
## 2429                         Layup Shot         49
## 2430                 Driving Layup Shot         51
## 2431                         Layup Shot         53
## 2432                          Jump Shot         53
## 2433                          Jump Shot         53
## 2434                Free Throw - 1 of 2         53
## 2435                Free Throw - 2 of 2         53
## 2436          Driving Finger Roll Layup         53
## 2437                          Jump Shot         53
## 2438                 Driving Layup Shot         53
## 2439                          Jump Shot         53
## 2440                 Driving Layup Shot         53
## 2441                          Jump Shot         56
## 2442                 Driving Layup Shot         56
## 2443                 Cutting Layup Shot         58
## 2444               Turnaround Hook Shot         58
## 2445                          Jump Shot         58
## 2446                 Cutting Layup Shot         58
## 2447                Free Throw - 1 of 2         59
## 2448                Free Throw - 2 of 2         60
## 2449                          Jump Shot         60
## 2450                          Jump Shot         63
## 2451                          Jump Shot         63
## 2452                   Pullup Jump Shot         65
## 2453                 Cutting Layup Shot         65
## 2454                Free Throw - 1 of 2         66
## 2455                Free Throw - 2 of 2         67
## 2456                         Layup Shot         67
## 2457                 Driving Layup Shot         67
## 2458                         Layup Shot         67
## 2459                 Cutting Layup Shot         69
## 2460                Free Throw - 1 of 2         70
## 2461                Free Throw - 2 of 2         71
## 2462                 Driving Layup Shot         73
## 2463                Free Throw - 1 of 2         73
## 2464                Free Throw - 2 of 2         73
## 2465                Free Throw - 1 of 2         74
## 2466                Free Throw - 2 of 2         75
## 2467          Driving Finger Roll Layup         75
## 2468                          Jump Shot         78
## 2469                          Jump Shot         78
## 2470                         Layup Shot         80
## 2471                          Jump Shot         80
## 2472                         Layup Shot         82
## 2473                 Cutting Layup Shot         82
## 2474                Free Throw - 1 of 2         83
## 2475                Free Throw - 2 of 2         84
## 2476                Free Throw - 1 of 2         84
## 2477                Free Throw - 2 of 2         84
## 2478                Free Throw - 1 of 2         85
## 2479                Free Throw - 2 of 2         86
## 2480                Free Throw - 1 of 2         86
## 2481                Free Throw - 2 of 2         86
## 2482                Free Throw - 1 of 2         87
## 2483                Free Throw - 2 of 2         87
## 2484               Turnaround Jump Shot         87
## 2485                         Layup Shot         87
## 2486                          Jump Shot         90
## 2487                Step Back Jump Shot         90
## 2488                          Jump Shot          0
## 2489                          Jump Shot          0
## 2490    Driving Floating Bank Jump Shot          0
## 2491                          Jump Shot          0
## 2492                   Pullup Jump Shot          0
## 2493                   Pullup Jump Shot          0
## 2494                Step Back Jump Shot          2
## 2495                 Running Layup Shot          2
## 2496                 Driving Layup Shot          2
## 2497                   Pullup Jump Shot          2
## 2498           Running Pullup Jump Shot          2
## 2499                          Jump Shot          5
## 2500                          Jump Shot          5
## 2501                         Layup Shot          5
## 2502                   Pullup Jump Shot          7
## 2503                         Layup Shot          7
## 2504          Driving Finger Roll Layup          9
## 2505          Driving Finger Roll Layup          9
## 2506                Free Throw - 1 of 1          9
## 2507                 Floating Jump Shot          9
## 2508                   Pullup Jump Shot          9
## 2509                   Pullup Jump Shot         11
## 2510          Driving Finger Roll Layup         11
## 2511                   Pullup Jump Shot         11
## 2512                         Layup Shot         11
## 2513                   Pullup Jump Shot         11
## 2514                 Driving Layup Shot         11
## 2515                   Pullup Jump Shot         11
## 2516          Driving Finger Roll Layup         11
## 2517                          Jump Shot         11
## 2518                         Layup Shot         13
## 2519                          Jump Shot         13
## 2520               Turnaround Jump Shot         13
## 2521           Running Pullup Jump Shot         13
## 2522                 Reverse Layup Shot         13
## 2523                          Jump Shot         15
## 2524                   Pullup Jump Shot         15
## 2525                Free Throw - 1 of 2         15
## 2526                Free Throw - 2 of 2         16
## 2527                          Jump Shot         16
## 2528                          Jump Shot         16
## 2529                          Jump Shot         16
## 2530                          Jump Shot         16
## 2531                 Floating Jump Shot         18
## 2532                          Jump Shot         18
## 2533                   Pullup Jump Shot         18
## 2534                          Jump Shot         18
## 2535                 Driving Layup Shot         20
## 2536                   Pullup Jump Shot         20
## 2537                 Running Layup Shot         22
## 2538                Free Throw - 1 of 2         23
## 2539                Free Throw - 2 of 2         24
## 2540                   Pullup Jump Shot         24
## 2541                          Jump Shot         24
## 2542                         Layup Shot         24
## 2543                 Running Layup Shot         26
## 2544                          Jump Shot         26
## 2545                Free Throw - 1 of 2         27
## 2546                Free Throw - 2 of 2         28
## 2547                          Jump Shot         28
## 2548                   Pullup Jump Shot         28
## 2549                           Tip Shot         28
## 2550                          Jump Shot         28
## 2551                Free Throw - 1 of 2         28
## 2552                Free Throw - 2 of 2         28
## 2553                 Driving Layup Shot         30
## 2554               Turnaround Jump Shot         30
## 2555                         Layup Shot         32
## 2556                          Jump Shot         32
## 2557                 Driving Layup Shot         32
## 2558                Free Throw - 1 of 2         32
## 2559                Free Throw - 2 of 2         33
## 2560                          Jump Shot         36
## 2561                          Jump Shot         36
## 2562                 Driving Layup Shot         36
## 2563                 Driving Layup Shot         36
## 2564                 Driving Layup Shot         36
## 2565                          Jump Shot         36
## 2566                          Jump Shot         39
## 2567                          Jump Shot         39
## 2568                Free Throw - 1 of 2         40
## 2569                Free Throw - 2 of 2         41
## 2570                 Driving Layup Shot         41
## 2571                   Pullup Jump Shot         41
## 2572                   Pullup Jump Shot         41
## 2573                 Floating Jump Shot         41
## 2574                 Driving Layup Shot         41
## 2575                   Pullup Jump Shot         41
## 2576                          Jump Shot         41
## 2577                 Layup Shot Putback         41
## 2578                 Cutting Layup Shot         41
## 2579                 Driving Layup Shot         41
## 2580                 Running Layup Shot         41
## 2581                 Driving Layup Shot         41
## 2582                Step Back Jump Shot         41
## 2583               Turnaround Jump Shot         41
## 2584                          Jump Shot         44
## 2585                          Jump Shot         44
## 2586                          Jump Shot         44
## 2587                 Driving Layup Shot         44
## 2588                          Jump Shot         44
## 2589          Driving Finger Roll Layup         44
## 2590                          Jump Shot         44
## 2591              Layup Running Reverse         44
## 2592         Driving Floating Jump Shot         46
## 2593                          Jump Shot         46
## 2594                   Pullup Jump Shot         48
## 2595                         Layup Shot         48
## 2596                   Pullup Jump Shot         48
## 2597                          Jump Shot         48
## 2598                   Pullup Jump Shot         48
## 2599                          Jump Shot         48
## 2600                 Floating Jump Shot         48
## 2601                          Jump Shot         51
## 2602                          Jump Shot         51
## 2603                          Jump Shot         54
## 2604                   Pullup Jump Shot         54
## 2605                          Jump Shot         57
## 2606                Free Throw - 1 of 2         57
## 2607                Free Throw - 2 of 2         57
## 2608                Free Throw - 1 of 2         58
## 2609                Free Throw - 2 of 2         58
## 2610                Free Throw - 1 of 2         58
## 2611                Free Throw - 2 of 2         58
## 2612         Driving Floating Jump Shot         58
## 2613          Driving Finger Roll Layup         60
## 2614                          Jump Shot         60
## 2615                 Cutting Layup Shot         60
## 2616                          Jump Shot         60
## 2617                          Jump Shot         63
## 2618                   Pullup Jump Shot         63
## 2619                 Driving Layup Shot         63
## 2620                   Pullup Jump Shot         63
## 2621                          Jump Shot         63
## 2622                Step Back Jump Shot         63
## 2623               Turnaround Jump Shot         63
## 2624                 Layup Shot Putback         63
## 2625                         Layup Shot         63
## 2626                Free Throw - 1 of 2         64
## 2627                Free Throw - 2 of 2         65
## 2628                   Pullup Jump Shot         65
## 2629                   Pullup Jump Shot         65
## 2630                   Pullup Jump Shot         65
## 2631                         Layup Shot         65
## 2632                          Jump Shot         68
## 2633                Free Throw - 1 of 2         68
## 2634                Free Throw - 2 of 2         68
## 2635                 Driving Layup Shot         68
## 2636                          Jump Shot         71
## 2637                   Pullup Jump Shot         71
## 2638                          Jump Shot         74
## 2639          Driving Finger Roll Layup         74
## 2640                 Running Layup Shot         76
## 2641                 Driving Layup Shot         76
## 2642                         Layup Shot         76
## 2643                          Jump Shot         78
## 2644                Free Throw - 1 of 2         78
## 2645                Free Throw - 2 of 2         78
## 2646                   Pullup Jump Shot         80
## 2647                          Jump Shot         80
## 2648                 Driving Layup Shot         80
## 2649                Free Throw - 1 of 2         80
## 2650                Free Throw - 2 of 2         80
## 2651                 Driving Layup Shot         82
## 2652                          Jump Shot         82
## 2653                   Pullup Jump Shot         82
## 2654                          Hook Shot         82
## 2655                          Jump Shot         82
## 2656                   Pullup Jump Shot         82
## 2657                Free Throw - 1 of 2         82
## 2658                Free Throw - 2 of 2         83
## 2659                          Hook Shot          0
## 2660                          Jump Shot          0
## 2661                          Jump Shot          0
## 2662                 Running Layup Shot          0
## 2663                 Cutting Layup Shot          0
## 2664                   Pullup Jump Shot          0
## 2665                         Layup Shot          0
## 2666                 Cutting Layup Shot          2
## 2667                 Running Layup Shot          2
## 2668                 Running Layup Shot          4
## 2669                   Pullup Jump Shot          4
## 2670                Fade Away Jump Shot          6
## 2671                          Jump Shot          6
## 2672                          Jump Shot          9
## 2673                 Cutting Layup Shot         11
## 2674                 Cutting Layup Shot         11
## 2675                         Layup Shot         11
## 2676               Turnaround Jump Shot         11
## 2677                          Jump Shot         14
## 2678                   Pullup Jump Shot         14
## 2679                          Jump Shot         14
## 2680                   Pullup Jump Shot         14
## 2681                          Jump Shot         14
## 2682             Free Throw - Technical         14
## 2683                          Jump Shot         14
## 2684                          Hook Shot         14
## 2685                 Running Layup Shot         14
## 2686                          Jump Shot         14
## 2687                          Jump Shot         14
## 2688                          Jump Shot         14
## 2689                 Running Layup Shot         14
## 2690                Free Throw - 1 of 2         14
## 2691                Free Throw - 2 of 2         14
## 2692                Fade Away Jump Shot         14
## 2693                          Jump Shot         14
## 2694                         Layup Shot         14
## 2695                         Layup Shot         14
## 2696                   Pullup Jump Shot         14
## 2697                   Pullup Jump Shot         14
## 2698                Free Throw - 1 of 2         15
## 2699                Free Throw - 2 of 2         15
## 2700                 Cutting Layup Shot         17
## 2701                          Jump Shot         17
## 2702                          Jump Shot         20
## 2703                          Jump Shot         20
## 2704                 Cutting Layup Shot         22
## 2705                          Jump Shot         22
## 2706                          Jump Shot         25
## 2707                          Hook Shot         25
## 2708                          Jump Shot         25
## 2709     Turnaround Fade Away Jump Shot         25
## 2710                 Driving Layup Shot         27
## 2711                 Driving Layup Shot         29
## 2712                         Layup Shot         29
## 2713                          Jump Shot         29
## 2714                          Jump Shot         29
## 2715                          Jump Shot         29
## 2716                          Jump Shot         29
## 2717                          Jump Shot         32
## 2718                          Jump Shot         32
## 2719                          Jump Shot         32
## 2720                          Jump Shot         32
## 2721                          Jump Shot         35
## 2722                          Hook Shot         35
## 2723                          Jump Shot         38
## 2724                Free Throw - 1 of 2         38
## 2725                Free Throw - 2 of 2         38
## 2726                          Jump Shot         38
## 2727                         Layup Shot         38
## 2728                         Layup Shot         40
## 2729                Free Throw - 1 of 2         40
## 2730                Free Throw - 2 of 2         40
## 2731                 Running Layup Shot         42
## 2732           Running Pullup Jump Shot         44
## 2733                          Jump Shot         44
## 2734                Step Back Jump Shot         44
## 2735                          Jump Shot         44
## 2736                 Running Layup Shot         44
## 2737     Turnaround Fade Away Jump Shot         46
## 2738                          Jump Shot         46
## 2739           Running Pullup Jump Shot         46
## 2740                 Running Layup Shot         46
## 2741                          Jump Shot         46
## 2742          Driving Finger Roll Layup         46
## 2743              Layup Driving Reverse         46
## 2744                 Driving Layup Shot         46
## 2745                   Pullup Jump Shot         46
## 2746                Free Throw - 1 of 2         47
## 2747                Free Throw - 2 of 2         48
## 2748             Free Throw - Technical         49
## 2749                          Jump Shot         49
## 2750                          Jump Shot         49
## 2751                 Cutting Layup Shot         51
## 2752                     Hook Shot Bank         51
## 2753                          Jump Shot         51
## 2754                          Jump Shot         51
## 2755                          Jump Shot         51
## 2756                 Driving Layup Shot         51
## 2757                          Jump Shot         51
## 2758               Turnaround Jump Shot         51
## 2759                Step Back Jump Shot         51
## 2760                   Pullup Jump Shot         51
## 2761                         Layup Shot         51
## 2762                         Layup Shot         51
## 2763           Running Pullup Jump Shot         51
## 2764                          Jump Shot         51
## 2765                          Jump Shot         54
## 2766                          Jump Shot         54
## 2767     Turnaround Fade Away Jump Shot         54
## 2768                          Jump Shot         57
## 2769                          Jump Shot         57
## 2770                         Layup Shot         57
## 2771                 Layup Shot Putback         59
## 2772                          Jump Shot         59
## 2773                          Jump Shot         59
## 2774                Free Throw - 1 of 2         59
## 2775                Free Throw - 2 of 2         59
## 2776                Free Throw - 1 of 2         59
## 2777                Free Throw - 2 of 2         59
## 2778                 Running Layup Shot         59
## 2779                  Putback Dunk Shot         59
## 2780                          Jump Shot         62
## 2781                         Layup Shot         62
## 2782                         Layup Shot         62
## 2783                         Layup Shot         64
## 2784                         Layup Shot         64
## 2785                Free Throw - 1 of 1         64
## 2786                Free Throw - 1 of 2         64
## 2787                Free Throw - 2 of 2         64
## 2788                         Layup Shot         64
## 2789                   Pullup Jump Shot         64
## 2790             Free Throw - Technical         64
## 2791                  Running Dunk Shot         64
## 2792                   Pullup Jump Shot         64
## 2793                Fade Away Jump Shot         64
## 2794                          Jump Shot         64
## 2795     Turnaround Fade Away Jump Shot         64
## 2796                   Pullup Jump Shot         64
## 2797                          Jump Shot         64
## 2798                          Hook Shot         64
## 2799                         Layup Shot         64
## 2800                     Hook Shot Bank         64
## 2801                 Layup Shot Putback         64
## 2802                          Jump Shot         67
## 2803                   Pullup Jump Shot         67
## 2804                 Driving Layup Shot         67
## 2805                          Jump Shot         67
## 2806                          Jump Shot         67
## 2807                         Layup Shot         69
## 2808                          Jump Shot         69
## 2809                          Jump Shot         69
## 2810                Free Throw - 1 of 2         69
## 2811                Free Throw - 2 of 2         69
## 2812                 Driving Layup Shot         69
## 2813                 Driving Layup Shot         69
## 2814                 Driving Layup Shot         69
## 2815                 Driving Layup Shot         69
## 2816                Step Back Jump Shot         69
## 2817                 Cutting Layup Shot         71
## 2818                          Jump Shot         71
## 2819                Free Throw - 1 of 2         71
## 2820                Free Throw - 2 of 2         72
## 2821                 Running Layup Shot         72
## 2822                          Jump Shot          3
## 2823         Driving Floating Jump Shot          3
## 2824                   Pullup Jump Shot          3
## 2825                 Cutting Layup Shot          5
## 2826                Fade Away Jump Shot          5
## 2827                          Jump Shot          8
## 2828                  Running Jump Shot         11
## 2829                Fade Away Jump Shot         11
## 2830                          Jump Shot         11
## 2831              Layup Driving Reverse         11
## 2832                         Layup Shot         13
## 2833                 Cutting Layup Shot         13
## 2834                          Jump Shot         16
## 2835                          Jump Shot         16
## 2836                 Cutting Layup Shot         18
## 2837                          Jump Shot         18
## 2838                 Layup Shot Putback         18
## 2839                          Jump Shot         18
## 2840                          Jump Shot         21
## 2841                          Jump Shot         21
## 2842                          Jump Shot         21
## 2843               Turnaround Hook Shot         21
## 2844                 Layup Shot Putback         23
## 2845         Driving Floating Jump Shot         23
## 2846                Free Throw - 1 of 2         23
## 2847                Free Throw - 2 of 2         23
## 2848                   Pullup Jump Shot         23
## 2849                 Driving Layup Shot         23
## 2850          Driving Finger Roll Layup         23
## 2851                 Cutting Layup Shot         23
## 2852         Driving Floating Jump Shot         23
## 2853                          Jump Shot         23
## 2854                          Jump Shot         23
## 2855                 Driving Layup Shot         23
## 2856                  Running Jump Shot         23
## 2857                          Jump Shot         25
## 2858                          Jump Shot         25
## 2859                          Jump Shot         25
## 2860                          Jump Shot         25
## 2861                          Jump Shot         25
## 2862                          Jump Shot         25
## 2863                 Driving Layup Shot         27
## 2864         Driving Floating Jump Shot         27
## 2865                Free Throw - 1 of 1         27
## 2866                          Jump Shot         27
## 2867                          Jump Shot         27
## 2868                          Jump Shot         27
## 2869                 Running Layup Shot         27
## 2870                 Driving Layup Shot         29
## 2871                Free Throw - 1 of 2         29
## 2872                Free Throw - 2 of 2         29
## 2873     Turnaround Fade Away Jump Shot         31
## 2874                  Hook Driving Bank         31
## 2875                          Jump Shot         34
## 2876                 Cutting Layup Shot         34
## 2877              Layup Driving Reverse         36
## 2878                 Running Layup Shot         38
## 2879          Turnaround Bank Jump Shot         38
## 2880                          Jump Shot         40
## 2881         Driving Floating Jump Shot         40
## 2882                Step Back Jump Shot         40
## 2883                 Layup Shot Putback         42
## 2884          Driving Finger Roll Layup         42
## 2885                           Tip Shot         42
## 2886                Free Throw - 1 of 2         42
## 2887                Free Throw - 2 of 2         42
## 2888                          Jump Shot         42
## 2889                          Jump Shot         42
## 2890                Free Throw - 1 of 2         43
## 2891                Free Throw - 2 of 2         44
## 2892                          Jump Shot         44
## 2893                   Pullup Jump Shot         46
## 2894                Free Throw - 1 of 2         47
## 2895                Free Throw - 2 of 2         48
## 2896                  Driving Hook Shot         48
## 2897         Driving Floating Jump Shot         48
## 2898             Driving Jump Shot Bank         48
## 2899                  Putback Dunk Shot         48
## 2900              Layup Driving Reverse         48
## 2901                 Running Layup Shot         48
## 2902               Turnaround Hook Shot         48
## 2903     Turnaround Fade Away Jump Shot         48
## 2904     Turnaround Fade Away Jump Shot         48
## 2905                          Jump Shot         48
## 2906                 Driving Layup Shot         50
## 2907                          Jump Shot         50
## 2908                          Jump Shot         50
## 2909                   Pullup Jump Shot         50
## 2910                          Jump Shot         50
## 2911                 Driving Layup Shot         50
## 2912                         Layup Shot         50
## 2913                           Tip Shot         50
## 2914               Turnaround Jump Shot         52
## 2915                          Jump Shot         52
## 2916                          Jump Shot         55
## 2917                Free Throw - 1 of 2         55
## 2918                Free Throw - 2 of 2         55
## 2919                          Jump Shot         58
## 2920               Turnaround Jump Shot         58
## 2921                Free Throw - 1 of 2         58
## 2922                Free Throw - 2 of 2         58
## 2923             Free Throw - Technical         59
## 2924                          Jump Shot         59
## 2925               Turnaround Hook Shot         59
## 2926                          Jump Shot         59
## 2927                          Jump Shot         59
## 2928                         Layup Shot         61
## 2929                Free Throw - 1 of 2         61
## 2930                Free Throw - 2 of 2         61
## 2931          Turnaround Bank Jump Shot         61
## 2932                 Cutting Layup Shot         61
## 2933                          Jump Shot         61
## 2934                          Jump Shot         61
## 2935                          Jump Shot         63
## 2936    Driving Floating Bank Jump Shot         63
## 2937                         Layup Shot         63
## 2938              Layup Driving Reverse         63
## 2939                          Jump Shot         63
## 2940                 Running Layup Shot         63
## 2941                Step Back Jump Shot         63
## 2942                          Jump Shot         63
## 2943                 Driving Layup Shot         65
## 2944                   Pullup Jump Shot         65
## 2945                   Pullup Jump Shot         65
## 2946                 Reverse Layup Shot         65
## 2947                 Layup Shot Putback         65
## 2948                          Jump Shot         65
## 2949                 Driving Layup Shot         67
## 2950         Driving Floating Jump Shot         67
## 2951               Turnaround Jump Shot         67
## 2952                 Driving Layup Shot         67
## 2953                 Driving Layup Shot         67
## 2954                 Layup Shot Putback         69
## 2955                          Jump Shot         69
## 2956                Free Throw - 1 of 1         70
## 2957                     Jump Shot Bank         70
## 2958    Driving Floating Bank Jump Shot         70
## 2959                Free Throw - 1 of 1         70
## 2960                Step Back Jump Shot         70
## 2961                 Running Layup Shot         70
## 2962               Turnaround Jump Shot         70
## 2963                   Pullup Jump Shot         73
## 2964         Driving Floating Jump Shot         73
## 2965                 Driving Layup Shot         75
## 2966                 Cutting Layup Shot         75
## 2967                          Jump Shot         75
## 2968                          Jump Shot         75
## 2969                          Jump Shot         78
## 2970                 Driving Layup Shot         78
## 2971                           Tip Shot         78
## 2972                 Driving Layup Shot         78
## 2973                 Running Layup Shot         78
## 2974                 Driving Layup Shot         80
## 2975                          Jump Shot         80
## 2976                          Hook Shot         80
## 2977                         Layup Shot         82
## 2978              Layup Driving Reverse         82
## 2979                          Jump Shot         82
## 2980                 Floating Jump Shot         82
## 2981                 Driving Layup Shot         82
## 2982                          Jump Shot         84
## 2983          Driving Finger Roll Layup         84
## 2984                Free Throw - 1 of 2         84
## 2985                Free Throw - 2 of 2         84
## 2986                          Jump Shot         84
## 2987             Driving Jump Shot Bank         84
## 2988                          Jump Shot          3
## 2989                         Layup Shot          3
## 2990                         Layup Shot          3
## 2991 Turnaround Fadeaway Bank Jump Shot          3
## 2992                          Jump Shot          3
## 2993 Turnaround Fadeaway Bank Jump Shot          5
## 2994                   Pullup Jump Shot          5
## 2995               Turnaround Jump Shot          7
## 2996                          Jump Shot          7
## 2997                          Jump Shot          7
## 2998                         Layup Shot          7
## 2999                         Layup Shot          7
## 3000                   Pullup Jump Shot          7
## 3001                 Floating Jump Shot          7
## 3002                 Driving Layup Shot          9
## 3003     Turnaround Fade Away Jump Shot          9
## 3004                Free Throw - 1 of 2         10
## 3005                Free Throw - 2 of 2         11
## 3006                         Layup Shot         11
## 3007                 Cutting Layup Shot         13
## 3008               Turnaround Jump Shot         13
## 3009                          Jump Shot         13
## 3010                         Layup Shot         15
## 3011                         Layup Shot         15
## 3012                 Driving Layup Shot         15
## 3013                Step Back Jump Shot         15
## 3014                         Layup Shot         15
## 3015                 Driving Layup Shot         15
## 3016                         Layup Shot         15
## 3017                          Jump Shot         18
## 3018                Free Throw - 1 of 2         18
## 3019                Free Throw - 2 of 2         18
## 3020                 Driving Layup Shot         18
## 3021                   Pullup Jump Shot         18
## 3022                          Jump Shot         18
## 3023               Turnaround Jump Shot         18
## 3024                 Driving Layup Shot         18
## 3025                          Jump Shot         18
## 3026                          Jump Shot         18
## 3027                Free Throw - 1 of 2         18
## 3028                Free Throw - 2 of 2         18
## 3029                Free Throw - 1 of 2         18
## 3030                Free Throw - 2 of 2         18
##                                                                                   text
## 1                                               Danielle Robinson misses driving layup
## 2                                      Sabrina Ionescu misses 18-foot pullup jump shot
## 3          Michaela Onyenwere makes 26-foot three point jumper (Sami Whitcomb assists)
## 4                                        Kelsey Mitchell misses 10-foot two point shot
## 5                                   Victoria Vivians misses 25-foot three point jumper
## 6                 Sami Whitcomb makes 27-foot three point jumper (Kylee Shook assists)
## 7                                    Kelsey Mitchell misses 24-foot three point jumper
## 8                              Kelsey Mitchell makes layup (Danielle Robinson assists)
## 9                           Kylee Shook makes 17-foot jumper (Sabrina Ionescu assists)
## 10                                      Kelsey Mitchell makes 18-foot pullup jump shot
## 11                                              Betnijah Laney makes free throw 1 of 2
## 12                                              Betnijah Laney makes free throw 2 of 2
## 13                                               Kelsey Mitchell misses 16-foot jumper
## 14                                                 Teaira McCowan makes two point shot
## 15                                Michaela Onyenwere misses 20-foot step back jumpshot
## 16                                    Danielle Robinson makes 13-foot pullup jump shot
## 17                                               Danielle Robinson makes driving layup
## 18                         Sabrina Ionescu misses 25-foot three point pullup jump shot
## 19                              Teaira McCowan makes layup (Danielle Robinson assists)
## 20            Sami Whitcomb makes 24-foot three point jumper (Sabrina Ionescu assists)
## 21                                                     Danielle Robinson misses jumper
## 22                              Michaela Onyenwere makes layup (Sami Whitcomb assists)
## 23                                         Teaira McCowan misses 3-foot two point shot
## 24                                                Betnijah Laney misses 20-foot jumper
## 25                                   Kelsey Mitchell misses 24-foot three point jumper
## 26        Betnijah Laney makes 26-foot three point jumper (Michaela Onyenwere assists)
## 27                                               Jessica Breland misses 20-foot jumper
## 28                                          Michaela Onyenwere makes free throw 1 of 2
## 29                                          Michaela Onyenwere makes free throw 2 of 2
## 30                                  Tiffany Mitchell misses 23-foot three point jumper
## 31                                                         Teaira McCowan misses layup
## 32                        Jazmine Jones blocks Teaira McCowan 's 2-foot two point shot
## 33                                   Kelsey Mitchell misses 25-foot three point jumper
## 34           Betnijah Laney makes 24-foot three point jumper (Sabrina Ionescu assists)
## 35                                     Lindsay Allen misses 25-foot three point jumper
## 36                                Teaira McCowan makes layup (Kelsey Mitchell assists)
## 37                                                Betnijah Laney misses 21-foot jumper
## 38                                               Tiffany Mitchell misses driving layup
## 39                                            Tiffany Mitchell makes free throw 1 of 2
## 40                                            Tiffany Mitchell makes free throw 2 of 2
## 41         Jantel Lavender makes 25-foot three point jumper (Tiffany Mitchell assists)
## 42             Betnijah Laney makes 25-foot three point jumper (Joyner Holmes assists)
## 43                                               Tiffany Mitchell misses driving layup
## 44                                    Betnijah Laney misses 26-foot three point jumper
## 45                                                        Kysre Gondrezick makes layup
## 46                                Michaela Onyenwere misses 25-foot three point jumper
## 47                                               Jantel Lavender misses 19-foot jumper
## 48           Kysre Gondrezick makes 24-foot three point jumper (Lindsay Allen assists)
## 49                                               Jantel Lavender misses 19-foot jumper
## 50                                     Sami Whitcomb misses 26-foot three point jumper
## 51                                                   Lindsay Allen makes driving layup
## 52                                               Lindsay Allen makes free throw 1 of 1
## 53                                                        Jantel Lavender misses layup
## 54                                                         Jantel Lavender makes layup
## 55                                             Sabrina Ionescu makes free throw 1 of 2
## 56                                             Sabrina Ionescu makes free throw 2 of 2
## 57                                             Jantel Lavender misses 5-foot hook shot
## 58                        Betnijah Laney makes driving layup (Sabrina Ionescu assists)
## 59                                  Tiffany Mitchell misses 24-foot step back jumpshot
## 60                                      Betnijah Laney misses 16-foot pullup jump shot
## 61                                               Tiffany Mitchell misses driving layup
## 62           Sabrina Ionescu makes 25-foot three point jumper (Betnijah Laney assists)
## 63                                     Victoria Vivians makes 17-foot pullup jump shot
## 64                                   Sabrina Ionescu misses 26-foot three point jumper
## 65                                                  Chelsey Perry misses 6-foot jumper
## 66                                       Sabrina Ionescu misses 11-foot two point shot
## 67                                     Michaela Onyenwere misses 6-foot two point shot
## 68                                               Victoria Vivians makes 18-foot jumper
## 69                                         Sami Whitcomb misses 11-foot two point shot
## 70                                  Victoria Vivians misses 23-foot three point jumper
## 71           Betnijah Laney makes 24-foot three point jumper (Sabrina Ionescu assists)
## 72                                     Sabrina Ionescu misses 18-foot pullup jump shot
## 73        Kelsey Mitchell makes 24-foot three point jumper (Danielle Robinson assists)
## 74                                                   Kylee Shook misses 16-foot jumper
## 75                                   Danielle Robinson misses 19-foot pullup jump shot
## 76                             Kylee Shook makes 4-foot layup (Betnijah Laney assists)
## 77                                Teaira McCowan makes layup (Kelsey Mitchell assists)
## 78                         Betnijah Laney makes 4-foot layup (Sabrina Ionescu assists)
## 79                                             Jessica Breland makes finger roll layup
## 80                                     Sami Whitcomb misses 25-foot three point jumper
## 81                                             Jessica Breland makes free throw 1 of 2
## 82                                             Jessica Breland makes free throw 2 of 2
## 83       Michaela Onyenwere makes 24-foot three point jumper (Sabrina Ionescu assists)
## 84                                  Victoria Vivians misses 24-foot three point jumper
## 85                                Teaira McCowan makes layup (Jessica Breland assists)
## 86                                              Teaira McCowan makes free throw 1 of 2
## 87                                             Teaira McCowan misses free throw 2 of 2
## 88             Jessica Breland blocks Michaela Onyenwere 's 23-foot three point jumper
## 89                                                 Betnijah Laney makes 18-foot jumper
## 90                                                         Jessica Breland makes layup
## 91                                             Sabrina Ionescu makes free throw 1 of 2
## 92                                             Sabrina Ionescu makes free throw 2 of 2
## 93                                                        Teaira McCowan misses jumper
## 94                                                Betnijah Laney misses 22-foot jumper
## 95                                      Sabrina Ionescu makes 24-foot three point shot
## 96                                   Kelsey Mitchell misses 25-foot three point jumper
## 97                            Michaela Onyenwere makes layup (Sabrina Ionescu assists)
## 98                                  Victoria Vivians misses driving floating jump shot
## 99                                                         Teaira McCowan misses layup
## 100                                                        Jantel Lavender makes layup
## 101                                                   Kylee Shook misses 6-foot jumper
## 102                                              Sabrina Ionescu misses two point shot
## 103                                        Teaira McCowan misses 5-foot two point shot
## 104                       Betnijah Laney makes driving layup (Sabrina Ionescu assists)
## 105                             Teaira McCowan makes layup (Danielle Robinson assists)
## 106                           Kylee Shook makes 3-foot layup (Sabrina Ionescu assists)
## 107                                  Kelsey Mitchell misses 25-foot step back jumpshot
## 108                                                       Jantel Lavender misses layup
## 109                                                         Teaira McCowan makes layup
## 110                                  Sabrina Ionescu misses driving floating jump shot
## 111                                   Tiffany Mitchell misses 18-foot pullup jump shot
## 112          Michaela Onyenwere makes 23-foot three point jumper (Kylee Shook assists)
## 113                     Kelsey Mitchell makes 19-foot jumper (Jantel Lavender assists)
## 114                                            Michaela Onyenwere makes two point shot
## 115                                         Michaela Onyenwere makes free throw 1 of 1
## 116                                               Kelsey Mitchell makes two point shot
## 117                                                Betnijah Laney misses driving layup
## 118                              Tiffany Mitchell makes layup (Teaira McCowan assists)
## 119                                           Tiffany Mitchell makes free throw 1 of 1
## 120                                            Michaela Onyenwere misses driving layup
## 121                                      Kylee Shook misses 25-foot three point jumper
## 122                                    Kelsey Mitchell misses 19-foot pullup jump shot
## 123                    Danielle Robinson makes driving layup (Jantel Lavender assists)
## 124                                                  Kylee Shook misses 10-foot jumper
## 125                                              Tiffany Mitchell misses driving layup
## 126                                                       Jantel Lavender misses layup
## 127                               Michaela Onyenwere misses 25-foot three point jumper
## 128                                     Sabrina Ionescu makes 10-foot pullup jump shot
## 129                                  Kelsey Mitchell misses 26-foot three point jumper
## 130                                               Betnijah Laney misses 10-foot jumper
## 131                                       Jessica Breland misses 8-foot two point shot
## 132                                Reshanda Gray makes layup (Sabrina Ionescu assists)
## 133                                              Tiffany Mitchell makes two point shot
## 134                                             Kysre Gondrezick misses 16-foot jumper
## 135                                                Betnijah Laney makes 18-foot jumper
## 136                                              Jessica Breland misses 15-foot jumper
## 137                                             Kysre Gondrezick misses 21-foot jumper
## 138                                               Sabrina Ionescu makes 15-foot jumper
## 139                                Danielle Robinson misses driving floating jump shot
## 140                                Danielle Robinson misses 24-foot three point jumper
## 141                                         Betnijah Laney makes 8-foot two point shot
## 142                                       Sabrina Ionescu misses 9-foot two point shot
## 143                             Jessica Breland makes layup (Kysre Gondrezick assists)
## 144                                             Reshanda Gray misses free throw 1 of 2
## 145                                              Reshanda Gray makes free throw 2 of 2
## 146                                   Kelsey Mitchell makes 18-foot step back jumpshot
## 147                                    Jazmine Jones misses 25-foot three point jumper
## 148                                       DiDi Richards makes 12-foot pullup jump shot
## 149                                 Kysre Gondrezick misses 25-foot step back jumpshot
## 150                                  Sabrina Ionescu misses 24-foot three point jumper
## 151                                            Sami Whitcomb misses three point jumper
## 152                                Teaira McCowan blocks Reshanda Gray 's 3-foot layup
## 153                                                       Jantel Lavender misses layup
## 154                                                Teaira McCowan makes two point shot
## 155                                                Kelsey Mitchell makes driving layup
## 156                                            Kelsey Mitchell makes free throw 1 of 1
## 157                                     Kelsey Mitchell makes 16-foot pullup jump shot
## 158                                                Sabrina Ionescu makes driving layup
## 159                                            Sabrina Ionescu makes free throw 1 of 1
## 160                                                        Teaira McCowan misses layup
## 161                                                       Jantel Lavender misses layup
## 162                                                Betnijah Laney makes 14-foot jumper
## 163                      Kylee Shook blocks Danielle Robinson 's 8-foot two point shot
## 164                                                         Teaira McCowan makes layup
## 165                                  Sabrina Ionescu misses 25-foot three point jumper
## 166                                            Teaira McCowan misses free throw 1 of 2
## 167                                             Teaira McCowan makes free throw 2 of 2
## 168                                            Betnijah Laney misses free throw 1 of 2
## 169                                             Betnijah Laney makes free throw 2 of 2
## 170                               Teaira McCowan makes layup (Jantel Lavender assists)
## 171                                             Danielle Robinson misses driving layup
## 172                                                        Jantel Lavender makes layup
## 173                                              Sabrina Ionescu misses 18-foot jumper
## 174                                               Kelsey Mitchell makes 20-foot jumper
## 175                                            Betnijah Laney misses free throw 1 of 2
## 176                                             Betnijah Laney makes free throw 2 of 2
## 177                                 Tiffany Mitchell misses 25-foot three point jumper
## 178                                  Teaira McCowan blocks Kylee Shook 's 3-foot layup
## 179                                                       Kelsey Mitchell makes jumper
## 180                                   Sabrina Ionescu makes 25-foot three point jumper
## 181                                           Kelsey Mitchell misses free throw 1 of 2
## 182                                            Kelsey Mitchell makes free throw 2 of 2
## 183                                            Sabrina Ionescu makes free throw 1 of 2
## 184                                            Sabrina Ionescu makes free throw 2 of 2
## 185             Sabrina Ionescu makes 25-foot three point jumper (Kylee Shook assists)
## 186                                       DeWanna Bonner misses 11-foot two point shot
## 187                                   Tianna Hawkins misses 26-foot three point jumper
## 188                Jonquel Jones makes 12-foot two point shot (DeWanna Bonner assists)
## 189                                  Courtney Williams misses 22-foot pullup jump shot
## 190                         Briann January misses 23-foot three point pullup jump shot
## 191                                       Odyssey Sims misses 11-foot pullup jump shot
## 192                                            Elizabeth Williams makes two point shot
## 193                                              Jonquel Jones makes free throw 1 of 2
## 194                                              Jonquel Jones makes free throw 2 of 2
## 195                                  Jonquel Jones makes layup (Brionna Jones assists)
## 196                                            Chennedy Carter makes free throw 1 of 2
## 197                                            Chennedy Carter makes free throw 2 of 2
## 198          Odyssey Sims makes 24-foot three point jumper (Courtney Williams assists)
## 199                                 DeWanna Bonner makes layup (Jonquel Jones assists)
## 200                                               Odyssey Sims makes free throw 1 of 2
## 201                                               Odyssey Sims makes free throw 2 of 2
## 202             Jonquel Jones makes 23-foot three point jumper (Kaila Charles assists)
## 203                                           Monique Billings makes free throw 1 of 2
## 204                                           Monique Billings makes free throw 2 of 2
## 205                                   DeWanna Bonner misses 23-foot three point jumper
## 206                                  Jonquel Jones makes layup (Kaila Charles assists)
## 207                                Courtney Williams misses 24-foot three point jumper
## 208                                                 Jonquel Jones makes two point shot
## 209                                             Jonquel Jones misses free throw 1 of 1
## 210                                      Monique Billings blocks Jonquel Jones's layup
## 211                                           Monique Billings makes free throw 1 of 2
## 212                                           Monique Billings makes free throw 2 of 2
## 213                                       Beatrice Mompremier misses free throw 1 of 2
## 214                                       Beatrice Mompremier misses free throw 2 of 2
## 215           Courtney Williams makes 13-foot pullup jump shot (Aari McDonald assists)
## 216                                             DeWanna Bonner makes free throw 1 of 2
## 217                                             DeWanna Bonner makes free throw 2 of 2
## 218                                  Courtney Williams misses 17-foot pullup jump shot
## 219                        Jonquel Jones makes two point shot (DeWanna Bonner assists)
## 220                               Shekinna Stricklen misses 25-foot three point jumper
## 221                            Beatrice Mompremier makes layup (Jonquel Jones assists)
## 222                                            Elizabeth Williams misses driving layup
## 223                                    Kaila Charles misses 11-foot step back jumpshot
## 224                                             Jonquel Jones misses free throw 1 of 2
## 225                                              Jonquel Jones makes free throw 2 of 2
## 226                           Elizabeth Williams makes layup (Chennedy Carter assists)
## 227                                    Jonquel Jones misses 25-foot three point jumper
## 228                                                Kaila Charles misses two point shot
## 229              Courtney Williams blocks Beatrice Mompremier 's 4-foot two point shot
## 230                                    Chennedy Carter misses 19-foot pullup jump shot
## 231                                              Brionna Jones makes free throw 1 of 2
## 232                                              Brionna Jones makes free throw 2 of 2
## 233                                  Courtney Williams misses 20-foot pullup jump shot
## 234                                                        Kaila Charles misses jumper
## 235                    Tianna Hawkins makes two point shot (Courtney Williams assists)
## 236                                              Chennedy Carter misses two point shot
## 237            Natisha Hiedeman makes 24-foot three point shot (Kaila Charles assists)
## 238                                           Natisha Hiedeman makes free throw 1 of 3
## 239                                          Natisha Hiedeman misses free throw 2 of 3
## 240                                           Natisha Hiedeman makes free throw 3 of 3
## 241                                     Odyssey Sims misses 22-foot three point jumper
## 242                                       DeWanna Bonner misses 15-foot two point shot
## 243                                                 Brionna Jones makes two point shot
## 244                                   Chennedy Carter makes driving floating jump shot
## 245                                               DeWanna Bonner misses 14-foot jumper
## 246                       Odyssey Sims makes two point shot (Crystal Bradford assists)
## 247                             Stephanie Jones makes layup (Natisha Hiedeman assists)
## 248                                                          Odyssey Sims misses layup
## 249                     Tianna Hawkins makes 19-foot jumper (Crystal Bradford assists)
## 250         Briann January makes 24-foot three point jumper (Natisha Hiedeman assists)
## 251               Tianna Hawkins makes 17-foot pullup jump shot (Odyssey Sims assists)
## 252                                                         Brionna Jones misses layup
## 253                             Monique Billings blocks Brionna Jones's two point shot
## 254                                  Courtney Williams misses 25-foot three point shot
## 255                                 Brionna Jones makes layup (DeWanna Bonner assists)
## 256                                   Tianna Hawkins misses 24-foot three point jumper
## 257                                  Courtney Williams misses running pullup jump shot
## 258                                   Briann January misses driving floating jump shot
## 259                                       DeWanna Bonner blocks Tianna Hawkins's layup
## 260                                                Tianna Hawkins makes two point shot
## 261                       Natisha Hiedeman misses 23-foot three point pullup jump shot
## 262                                             Monique Billings misses 13-foot jumper
## 263                                Stephanie Jones makes layup (Jonquel Jones assists)
## 264                                   Tianna Hawkins misses 25-foot three point jumper
## 265                                             Briann January misses pullup jump shot
## 266                        Chennedy Carter misses 25-foot three point pullup jump shot
## 267                   DeWanna Bonner makes three point jumper (Briann January assists)
## 268                                   Crystal Bradford misses running pullup jump shot
## 269                    Chennedy Carter makes driving layup (Courtney Williams assists)
## 270                                          Courtney Williams makes free throw 1 of 2
## 271                                          Courtney Williams makes free throw 2 of 2
## 272                                              Chennedy Carter misses 13-foot jumper
## 273                                                Brionna Jones misses 14-foot jumper
## 274                    Natisha Hiedeman blocks Chennedy Carter 's 4-foot driving layup
## 275                                   Tianna Hawkins misses 24-foot three point jumper
## 276                                                 Odyssey Sims misses two point shot
## 277                              Briann January makes 24-foot running pullup jump shot
## 278                                                   Odyssey Sims makes driving layup
## 279                                             Jonquel Jones misses free throw 1 of 2
## 280                                              Jonquel Jones makes free throw 2 of 2
## 281                                                Chennedy Carter makes driving layup
## 282                    Elizabeth Williams blocks Brionna Jones 's 3-foot driving layup
## 283                                              Odyssey Sims misses free throw 1 of 2
## 284                                               Odyssey Sims makes free throw 2 of 2
## 285                                                   Odyssey Sims makes driving layup
## 286                                               Chennedy Carter misses driving layup
## 287           DeWanna Bonner makes 24-foot three point jumper (Briann January assists)
## 288                                   DeWanna Bonner misses 22-foot three point jumper
## 289                                   Briann January misses 25-foot three point jumper
## 290                                    Chennedy Carter misses 10-foot pullup jump shot
## 291          Natisha Hiedeman makes 25-foot three point jumper (Brionna Jones assists)
## 292                                   Tianna Hawkins misses 23-foot three point jumper
## 293                                 Natisha Hiedeman misses 26-foot three point jumper
## 294                                                         Brionna Jones misses layup
## 295                                                 Brionna Jones makes two point shot
## 296                                      Aari McDonald misses 19-foot pullup jump shot
## 297                                    Jonquel Jones misses 25-foot three point jumper
## 298                        Chennedy Carter misses 24-foot three point pullup jump shot
## 299                                         Brionna Jones misses 7-foot two point shot
## 300                             Monique Billings blocks Jonquel Jones 's 3-foot jumper
## 301                                                 Jonquel Jones makes two point shot
## 302                                             Courtney Williams makes 18-foot jumper
## 303                                              Monique Billings makes two point shot
## 304                                                 Jonquel Jones misses driving layup
## 305                                                 Jonquel Jones makes two point shot
## 306                                             DeWanna Bonner makes free throw 1 of 2
## 307                                             DeWanna Bonner makes free throw 2 of 2
## 308        Courtney Williams makes 23-foot three point jumper (Tianna Hawkins assists)
## 309                                            DeWanna Bonner misses free throw 1 of 2
## 310                                             DeWanna Bonner makes free throw 2 of 2
## 311          Courtney Williams makes 21-foot pullup jump shot (Tianna Hawkins assists)
## 312                       Natisha Hiedeman misses 30-foot three point pullup jump shot
## 313                               Shekinna Stricklen misses 24-foot three point jumper
## 314                                            Courtney Williams misses 11-foot jumper
## 315                               Shekinna Stricklen misses 24-foot three point jumper
## 316                                    Aari McDonald misses 25-foot three point jumper
## 317                                    DeWanna Bonner makes 25-foot three point jumper
## 318                                           Monique Billings makes free throw 1 of 2
## 319                                           Monique Billings makes free throw 2 of 2
## 320                                    Monique Billings misses 6-foot pullup jump shot
## 321                     DeWanna Bonner makes 14-foot jumper (Natisha Hiedeman assists)
## 322                                             Monique Billings misses 19-foot jumper
## 323                                Tianna Hawkins blocks Brionna Jones 's 1-foot layup
## 324                  Beatrice Mompremier makes 15-foot jumper (DeWanna Bonner assists)
## 325                                                 Aari McDonald misses driving layup
## 326                                 Natisha Hiedeman misses 23-foot three point jumper
## 327                                    Aari McDonald misses 23-foot three point jumper
## 328                                          Natisha Hiedeman misses free throw 1 of 2
## 329                                           Natisha Hiedeman makes free throw 2 of 2
## 330            Elizabeth Williams makes 4-foot two point shot (Tianna Hawkins assists)
## 331            Jonquel Jones makes 23-foot three point jumper (Briann January assists)
## 332          Courtney Williams makes 23-foot three point jumper (Odyssey Sims assists)
## 333                                   DeWanna Bonner misses 23-foot three point jumper
## 334                           DeWanna Bonner blocks Courtney Williams's two point shot
## 335                         Briann January misses 25-foot three point pullup jump shot
## 336                                                  Odyssey Sims misses driving layup
## 337                   DeWanna Bonner blocks Courtney Williams 's 5-foot two point shot
## 338                        Jonquel Jones makes two point shot (DeWanna Bonner assists)
## 339                                    Tianna Hawkins misses 7-foot step back jumpshot
## 340                       Tianna Hawkins makes driving layup (Chennedy Carter assists)
## 341                                             Tianna Hawkins makes free throw 1 of 1
## 342                                   Briann January misses 27-foot three point jumper
## 343                            Chennedy Carter makes 9-foot driving floating jump shot
## 344            DeWanna Bonner makes 25-foot three point jumper (Aleah Goodman assists)
## 345                               Odyssey Sims makes layup (Courtney Williams assists)
## 346                                            DiJonai Carrington misses driving layup
## 347                                           Crystal Bradford makes free throw 1 of 2
## 348                                           Crystal Bradford makes free throw 2 of 2
## 349                                              Aari McDonald makes free throw 1 of 2
## 350                                             Aari McDonald misses free throw 2 of 2
## 351                            Monique Billings blocks Stephanie Jones 's 2-foot layup
## 352                                           Crystal Bradford makes free throw 1 of 2
## 353                                          Crystal Bradford misses free throw 2 of 2
## 354                        Sylvia Fowles makes 17-foot jumper (Damiris Dantas assists)
## 355                                           Crystal Dangerfield makes two point shot
## 356                                          Skylar Diggins-Smith misses 4-foot jumper
## 357                                       Brittney Griner blocks Sylvia Fowles's layup
## 358                                Sylvia Fowles blocks Brianna Turner 's 3-foot layup
## 359                                       Brittney Griner blocks Aerial Powers's layup
## 360                                      Diana Taurasi misses 20-foot pullup jump shot
## 361                                                Aerial Powers misses 21-foot jumper
## 362                                                    Kia Nurse misses two point shot
## 363                              Crystal Dangerfield misses 25-foot three point jumper
## 364                  Skylar Diggins-Smith makes two point shot (Diana Taurasi assists)
## 365                   Kayla McBride makes 23-foot jumper (Crystal Dangerfield assists)
## 366                                                Sylvia Fowles misses 13-foot jumper
## 367                                                  Kia Nurse makes free throw 1 of 2
## 368                                                 Kia Nurse misses free throw 2 of 2
## 369                                    Diana Taurasi misses 24-foot three point jumper
## 370                                                         Sylvia Fowles misses layup
## 371                                Diana Taurasi makes layup (Brittney Griner assists)
## 372                                          Crystal Dangerfield misses two point shot
## 373                                                   Skylar Diggins-Smith makes layup
## 374                                                Kayla McBride misses 20-foot jumper
## 375                                                Diana Taurasi misses 12-foot jumper
## 376                                 Bridget Carleton misses 25-foot three point jumper
## 377                                          Skylar Diggins-Smith misses 8-foot jumper
## 378                                                     Sophie Cunningham misses layup
## 379                                              Natalie Achonwa misses 15-foot jumper
## 380                                    Rachel Banham misses 25-foot three point jumper
## 381                  Brittney Griner makes 5-foot layup (Skylar Diggins-Smith assists)
## 382                                        Kia Nurse misses 27-foot three point jumper
## 383                                     Kayla McBride makes 25-foot three point jumper
## 384                                                        Brianna Turner misses layup
## 385                                   Bridget Carleton misses 12-foot pullup jump shot
## 386                                 Brianna Turner makes layup (Diana Taurasi assists)
## 387                                    Diana Taurasi misses 23-foot three point jumper
## 388                                                Sylvia Fowles misses 18-foot jumper
## 389                                Sophie Cunningham misses 25-foot three point jumper
## 390                                             Sylvia Fowles misses free throw 1 of 2
## 391                                              Sylvia Fowles makes free throw 2 of 2
## 392                                              Diana Taurasi makes free throw 1 of 2
## 393                                             Diana Taurasi misses free throw 2 of 2
## 394                                    Diana Taurasi misses 24-foot three point jumper
## 395                                Crystal Dangerfield misses 15-foot pullup jump shot
## 396                      Brittney Griner makes 18-foot jumper (Cierra Burdick assists)
## 397                                          Crystal Dangerfield misses two point shot
## 398                                  Skylar Diggins-Smith misses 8-foot two point shot
## 399                      Brittney Griner makes 18-foot jumper (Cierra Burdick assists)
## 400                          Cierra Burdick makes layup (Skylar Diggins-Smith assists)
## 401                                                         Sylvia Fowles misses layup
## 402                     Skylar Diggins-Smith makes 20-foot jumper (Shey Peddy assists)
## 403                                       Aerial Powers makes 15-foot pullup jump shot
## 404                                  Brittney Griner misses 10-foot step back jumpshot
## 405                                   Damiris Dantas misses 25-foot three point jumper
## 406                             Skylar Diggins-Smith misses 23-foot three point jumper
## 407                                               Shey Peddy misses three point jumper
## 408                                 Sylvia Fowles makes layup (Damiris Dantas assists)
## 409                                                Cierra Burdick misses 8-foot jumper
## 410                                              Kayla McBride makes free throw 1 of 2
## 411                                              Kayla McBride makes free throw 2 of 2
## 412                                    Aerial Powers misses 27-foot three point jumper
## 413                         Skylar Diggins-Smith makes layup (Brittney Griner assists)
## 414                                              Kayla McBride misses pullup jump shot
## 415                                                     Kia Nurse makes two point shot
## 416                                         Crystal Dangerfield makes pullup jump shot
## 417         Shey Peddy makes 24-foot three point jumper (Skylar Diggins-Smith assists)
## 418                                          Crystal Dangerfield misses two point shot
## 419                                                      Kia Nurse makes driving layup
## 420                    Kayla McBride makes driving layup (Crystal Dangerfield assists)
## 421                                   Damiris Dantas misses 24-foot three point jumper
## 422                                        Kia Nurse misses 23-foot three point jumper
## 423                                              Natalie Achonwa misses 21-foot jumper
## 424                                          Skylar Diggins-Smith misses driving layup
## 425                                                        Aerial Powers misses jumper
## 426                         Aerial Powers makes driving layup (Damiris Dantas assists)
## 427                              Brittney Griner blocks Aerial Powers 's 9-foot jumper
## 428                                    Kayla McBride blocks Kia Nurse 's 4-foot jumper
## 429                                                        Aerial Powers misses jumper
## 430                                                Damiris Dantas makes two point shot
## 431                                Brittney Griner makes layup (Diana Taurasi assists)
## 432                                    Kayla McBride misses 26-foot three point jumper
## 433                             Skylar Diggins-Smith misses 23-foot three point jumper
## 434                                    Kayla McBride misses 23-foot step back jumpshot
## 435                                                       Brittney Griner misses layup
## 436                                                     Brittney Griner makes tip shot
## 437                                Brittney Griner makes layup (Diana Taurasi assists)
## 438            Damiris Dantas makes 26-foot three point jumper (Aerial Powers assists)
## 439                                                     Kia Nurse misses driving layup
## 440                                     Aerial Powers makes 25-foot three point jumper
## 441                                              Diana Taurasi makes free throw 1 of 2
## 442                                              Diana Taurasi makes free throw 2 of 2
## 443                                   Damiris Dantas misses 23-foot three point jumper
## 444       Crystal Dangerfield makes 25-foot three point jumper (Aerial Powers assists)
## 445                                           Skylar Diggins-Smith makes driving layup
## 446                       Aerial Powers blocks Kia Nurse 's 25-foot three point jumper
## 447                                              Aerial Powers makes free throw 1 of 2
## 448                                              Aerial Powers makes free throw 2 of 2
## 449                               Skylar Diggins-Smith misses 18-foot pullup jump shot
## 450                   Sylvia Fowles makes 15-foot jumper (Crystal Dangerfield assists)
## 451                                                       Brittney Griner misses layup
## 452                            Crystal Dangerfield makes layup (Sylvia Fowles assists)
## 453                                    Diana Taurasi misses 24-foot three point jumper
## 454                                       Aerial Powers makes 15-foot pullup jump shot
## 455                                  Skylar Diggins-Smith makes 15-foot two point shot
## 456                                       Skylar Diggins-Smith makes free throw 1 of 2
## 457                                      Skylar Diggins-Smith misses free throw 2 of 2
## 458                                                     Kia Nurse makes two point shot
## 459                                                  Aerial Powers makes driving layup
## 460                                              Aerial Powers makes free throw 1 of 1
## 461                                     Diana Taurasi makes 25-foot step back jumpshot
## 462                                                Kayla McBride misses 13-foot jumper
## 463                     Crystal Dangerfield makes 2-foot layup (Kayla McBride assists)
## 464                                       Crystal Dangerfield misses free throw 1 of 1
## 465         Skylar Diggins-Smith makes 27-foot three point jumper (Shey Peddy assists)
## 466               Damiris Dantas makes 6-foot two point shot (Natalie Achonwa assists)
## 467                                       Shey Peddy misses 24-foot three point jumper
## 468                                        Kia Nurse misses 24-foot three point jumper
## 469                                            Brianna Turner misses free throw 1 of 2
## 470                                             Brianna Turner makes free throw 2 of 2
## 471                         Kayla McBride makes 19-foot jumper (Sylvia Fowles assists)
## 472                                                       Brittney Griner misses layup
## 473                                 Bridget Carleton misses 26-foot three point jumper
## 474                                              Brittney Griner misses two point shot
## 475                                            Natalie Achonwa makes free throw 1 of 2
## 476                                            Natalie Achonwa makes free throw 2 of 2
## 477                       Brianna Turner makes alley oop layup (Diana Taurasi assists)
## 478                                                Sylvia Fowles misses 18-foot jumper
## 479                                                  Kia Nurse makes free throw 1 of 2
## 480                                                 Kia Nurse misses free throw 2 of 2
## 481                               Brittney Griner makes layup (Brianna Turner assists)
## 482                         Aerial Powers makes driving layup (Damiris Dantas assists)
## 483                                                Diana Taurasi misses 10-foot jumper
## 484                                                         Aerial Powers misses layup
## 485                        Aerial Powers blocks Brianna Turner 's 6-foot driving layup
## 486                                Diana Taurasi blocks Aerial Powers 's 7-foot jumper
## 487             Rachel Banham makes 27-foot three point jumper (Aerial Powers assists)
## 488                                              Diana Taurasi makes free throw 1 of 2
## 489                                              Diana Taurasi makes free throw 2 of 2
## 490                                           Skylar Diggins-Smith makes driving layup
## 491                                     Brianna Turner makes layup (Kia Nurse assists)
## 492                      Brianna Turner blocks Damiris Dantas 's 6-foot two point shot
## 493                        Kayla McBride blocks Brianna Turner 's 5-foot driving layup
## 494                                           Damiris Dantas misses three point jumper
## 495                                                 Diana Taurasi misses driving layup
## 496                                                      Brianna Turner makes tip shot
## 497                             Brianna Turner blocks Damiris Dantas 's 17-foot jumper
## 498                   Kayla McBride makes 18-foot jumper (Crystal Dangerfield assists)
## 499                                     Skylar Diggins-Smith misses three point jumper
## 500                   Diana Taurasi blocks Crystal Dangerfield 's 7-foot driving layup
## 501                                     Sylvia Fowles blocks Kia Nurse 's 4-foot layup
## 502                                 Diana Taurasi blocks Kayla McBride's driving layup
## 503                   Crystal Dangerfield makes 17-foot jumper (Kayla McBride assists)
## 504                             Brianna Turner makes driving layup (Kia Nurse assists)
## 505                                                         Sylvia Fowles misses layup
## 506                                                         Sylvia Fowles makes jumper
## 507                                              Kayla McBride makes free throw 1 of 2
## 508                                              Kayla McBride makes free throw 2 of 2
## 509                                         Diana Taurasi misses 8-foot two point shot
## 510                                        Diana Taurasi misses 12-foot two point shot
## 511                              Crystal Dangerfield misses 24-foot three point jumper
## 512                Brianna Turner makes alley oop layup (Skylar Diggins-Smith assists)
## 513                                   Crystal Dangerfield makes 10-foot two point shot
## 514                                              Diana Taurasi makes free throw 1 of 2
## 515                                             Diana Taurasi misses free throw 2 of 2
## 516                              Brianna Turner blocks Natalie Achonwa 's 2-foot layup
## 517                             Skylar Diggins-Smith misses 26-foot three point jumper
## 518                                 Crystal Dangerfield makes 14-foot pullup jump shot
## 519                                        Kia Nurse misses 23-foot three point jumper
## 520                                  Crystal Dangerfield misses 14-foot two point shot
## 521                                    Kia Nurse makes layup (Brittney Griner assists)
## 522                                                 Kia Nurse misses free throw 1 of 1
## 523                                                          Aerial Powers makes layup
## 524                                                 Skylar Diggins-Smith misses jumper
## 525                                                Diana Taurasi misses 21-foot jumper
## 526                                              Kayla McBride makes free throw 1 of 2
## 527                                              Kayla McBride makes free throw 2 of 2
## 528                         Brittney Griner makes layup (Skylar Diggins-Smith assists)
## 529                                                         Aerial Powers misses layup
## 530                                                 Sylvia Fowles makes two point shot
## 531                                           Brittney Griner misses free throw 1 of 2
## 532                                            Brittney Griner makes free throw 2 of 2
## 533                                     Diana Taurasi makes 28-foot three point jumper
## 534                          Nneka Ogwumike makes 3-foot layup (Erica Wheeler assists)
## 535                                   Brittney Sykes misses 26-foot three point jumper
## 536                                       Allisha Gray misses 19-foot pullup jump shot
## 537                                    Erica Wheeler misses 25-foot three point jumper
## 538                                       Erica Wheeler makes 15-foot pullup jump shot
## 539                                     Kristi Toliver misses 27-foot three point shot
## 540         Moriah Jefferson makes 26-foot three point jumper (Kayla Thornton assists)
## 541                                                Brittney Sykes makes 21-foot jumper
## 542                  Charli Collier makes 2-foot two point shot (Allisha Gray assists)
## 543                      Chiney Ogwumike makes 20-foot jumper (Kristi Toliver assists)
## 544                                       Allisha Gray misses 19-foot pullup jump shot
## 545                                    Kristi Toliver makes 27-foot three point jumper
## 546                                   Brittney Sykes misses 23-foot three point jumper
## 547                                         Nia Coffey misses 11-foot pullup jump shot
## 548                                        Kristi Toliver makes 13-foot two point shot
## 549                              Isabelle Harrison makes layup (Tyasha Harris assists)
## 550                                               Te'a Cooper misses free throw 1 of 2
## 551                                                Te'a Cooper makes free throw 2 of 2
## 552                Nneka Ogwumike makes 2-foot two point shot (Kristi Toliver assists)
## 553                                            Isabelle Harrison misses 22-foot jumper
## 554                     Isabelle Harrison makes two point shot (Marina Mabrey assists)
## 555                           Nneka Ogwumike makes driving layup (Bria Holmes assists)
## 556             Marina Mabrey makes 25-foot three point jumper (Tyasha Harris assists)
## 557                                                          Bria Holmes misses jumper
## 558                                                  Te'a Cooper misses 12-foot jumper
## 559                                   Allisha Gray makes layup (Marina Mabrey assists)
## 560                                               Allisha Gray makes free throw 1 of 1
## 561                                              Chiney Ogwumike misses 13-foot jumper
## 562             Marina Mabrey makes 26-foot three point jumper (Tyasha Harris assists)
## 563                                   Jasmine Walker misses 27-foot three point jumper
## 564                                                   Te'a Cooper misses 9-foot jumper
## 565                                                    Nia Coffey makes two point shot
## 566             Chiney Ogwumike makes 27-foot three point jumper (Te'a Cooper assists)
## 567                                                  Marina Mabrey makes driving layup
## 568                                                Bria Holmes makes free throw 1 of 2
## 569                                                Bria Holmes makes free throw 2 of 2
## 570                                               Nia Coffey misses three point jumper
## 571                                               Chiney Ogwumike makes two point shot
## 572                                    Tyasha Harris misses 52-foot three point jumper
## 573                                               Allisha Gray makes free throw 1 of 1
## 574                                                   Allisha Gray makes driving layup
## 575                                             Kayla Thornton makes free throw 1 of 2
## 576                                             Kayla Thornton makes free throw 2 of 2
## 577                                 Arella Guirantes misses 25-foot three point jumper
## 578                                           Arike Ogunbowale makes free throw 1 of 3
## 579                                           Arike Ogunbowale makes free throw 2 of 3
## 580                                           Arike Ogunbowale makes free throw 3 of 3
## 581                                                           Bria Holmes misses layup
## 582                                                    Nia Coffey makes two point shot
## 583                                               Allisha Gray makes free throw 1 of 2
## 584                                               Allisha Gray makes free throw 2 of 2
## 585                      Arella Guirantes makes 2-foot layup (Chiney Ogwumike assists)
## 586                                            Erica Wheeler misses three point jumper
## 587                                     Allisha Gray misses 25-foot three point jumper
## 588                                                Nneka Ogwumike misses 9-foot jumper
## 589                               Charli Collier blocks Nneka Ogwumike 's 4-foot layup
## 590                                                         Erica Wheeler misses layup
## 591                                                      Chiney Ogwumike misses jumper
## 592                        Charli Collier makes 21-foot jumper (Tyasha Harris assists)
## 593                                             Nneka Ogwumike makes free throw 1 of 2
## 594                                             Nneka Ogwumike makes free throw 2 of 2
## 595                                                        Tyasha Harris misses jumper
## 596            Kayla Thornton makes 23-foot three point jumper (Tyasha Harris assists)
## 597                                                        Marina Mabrey misses jumper
## 598                                                       Chiney Ogwumike misses layup
## 599                                        Allisha Gray makes 14-foot pullup jump shot
## 600                                                  Erica Wheeler makes driving layup
## 601                                     Allisha Gray misses 25-foot three point jumper
## 602                                        Bella Alarie blocks Jasmine Walker's jumper
## 603                                   Jasmine Walker misses 24-foot three point jumper
## 604                            Allisha Gray makes 2-foot layup (Tyasha Harris assists)
## 605                                            Brittney Sykes misses free throw 1 of 2
## 606                                             Brittney Sykes makes free throw 2 of 2
## 607                                                 Allisha Gray misses 13-foot jumper
## 608                                       Nneka Ogwumike misses 11-foot two point shot
## 609                                       Tyasha Harris makes 12-foot pullup jump shot
## 610                                               Nneka Ogwumike misses 20-foot jumper
## 611                                 Moriah Jefferson misses 27-foot three point jumper
## 612     Kristi Toliver makes 25-foot running pullup jump shot (Brittney Sykes assists)
## 613                                               Allisha Gray makes free throw 1 of 2
## 614                                              Allisha Gray misses free throw 2 of 2
## 615                                                Nia Coffey misses free throw 1 of 2
## 616                                                Nia Coffey misses free throw 2 of 2
## 617                      Brittney Sykes makes two point shot (Kristi Tolliver assists)
## 618                                      Allisha Gray makes 18-foot step back jumpshot
## 619                                                  Te'a Cooper misses two point shot
## 620                                      Te'a Cooper misses 27-foot three point jumper
## 621                                       Erica Wheeler misses 3-foot pullup jump shot
## 622                                           Arike Ogunbowale misses pullup jump shot
## 623                       Brittney Sykes blocks Charli Collier 's 3-foot driving layup
## 624                                  Chiney Ogwumike misses 25-foot three point jumper
## 625                                Allisha Gray makes 17-foot running pullup jump shot
## 626                                         Nneka Ogwumike makes 4-foot two point shot
## 627                                             Arike Ogunbowale misses two point shot
## 628                                            Moriah Jefferson makes pullup jump shot
## 629                                   Kristi Toliver misses 25-foot three point jumper
## 630                                              Arike Ogunbowale makes two point shot
## 631                                           Arike Ogunbowale makes free throw 1 of 1
## 632                                                Nneka Ogwumike misses driving layup
## 633                                                Nneka Ogwumike makes two point shot
## 634                                            Kristi Toliver misses free throw 1 of 2
## 635                                             Kristi Toliver makes free throw 2 of 2
## 636                  Arike Ogunbowale makes 18-foot jumper (Isabelle Harrison assists)
## 637           Chiney Ogwumike makes 26-foot three point jumper (Erica Wheeler assists)
## 638                                  Arike Ogunbowale makes 25-foot three point jumper
## 639                       Arike Ogunbowale makes two point shot (Allisha Gray assists)
## 640                                             Brittney Sykes misses pullup jump shot
## 641                                             Charli Collier makes free throw 1 of 2
## 642                                             Charli Collier makes free throw 2 of 2
## 643                     Isabelle Harrison makes two point shot (Tyasha Harris assists)
## 644                                         Nia Coffey misses 17-foot pullup jump shot
## 645                                   Brittney Sykes misses 24-foot three point jumper
## 646                                    Tyasha Harris misses 24-foot three point jumper
## 647                                            Charli Collier misses free throw 1 of 2
## 648                                             Charli Collier makes free throw 2 of 2
## 649                  Te'a Cooper makes 26-foot three point jumper (Nia Coffey assists)
## 650                        Nneka Ogwumike makes driving layup (Brittney Sykes assists)
## 651                                    Marina Mabrey misses 26-foot three point jumper
## 652             Tyasha Harris makes 24-foot three point jumper (Marina Mabrey assists)
## 653               Nia Coffey makes 24-foot three point jumper (Jasmine Walker assists)
## 654                                               Kayla Thornton misses 15-foot jumper
## 655                  Nia Coffey makes 25-foot three point jumper (Bria Holmes assists)
## 656                                   Nia Coffey blocks Allisha Gray 's 15-foot jumper
## 657                                                  Allisha Gray misses driving layup
## 658                                                Charli Collier makes two point shot
## 659                                                       Te'a Cooper misses hook shot
## 660                                               Allisha Gray makes free throw 1 of 2
## 661                                               Allisha Gray makes free throw 2 of 2
## 662                                              Chiney Ogwumike misses 19-foot jumper
## 663                                         Kristi Toliver makes 8-foot two point shot
## 664                                    Marina Mabrey misses 26-foot three point jumper
## 665                                             Moriah Jefferson misses 20-foot jumper
## 666                                                    Isabelle Harrison misses jumper
## 667                               Chiney Ogwumike makes layup (Jasmine Walker assists)
## 668                                                 Marina Mabrey misses driving layup
## 669                                       Nia Coffey misses 25-foot three point jumper
## 670          Marina Mabrey makes 24-foot three point jumper (Arike Ogunbowale assists)
## 671                                                   Bria Holmes misses driving layup
## 672                                               Arike Ogunbowale makes driving layup
## 673                                          Arike Ogunbowale misses free throw 1 of 1
## 674                                    Arike Ogunbowale makes 13-foot pullup jump shot
## 675                                    Erica Wheeler misses 25-foot three point jumper
## 676                                       Arike Ogunbowale misses technical free throw
## 677                               Allisha Gray makes layup (Isabelle Harrison assists)
## 678                                      Bria Holmes misses 25-foot three point jumper
## 679                               Isabelle Harrison blocks Bria Holmes 's 4-foot layup
## 680                                              Arike Ogunbowale misses driving layup
## 681                                                        Nneka Ogwumike misses layup
## 682                       Kayla Thornton makes 3-foot layup (Moriah Jefferson assists)
## 683                                    Erica Wheeler misses 26-foot three point jumper
## 684                                              Arike Ogunbowale misses driving layup
## 685                                      Te'a Cooper misses 24-foot three point jumper
## 686                                     Allisha Gray misses 25-foot three point jumper
## 687                                                      Isabelle Harrison makes layup
## 688                                                       Chiney Ogwumike misses layup
## 689                                             Arike Ogunbowale misses 17-foot jumper
## 690                       Nneka Ogwumike makes 15-foot jumper (Brittney Sykes assists)
## 691                                               Allisha Gray makes free throw 1 of 2
## 692                                               Allisha Gray makes free throw 2 of 2
## 693                                            Brittney Sykes misses free throw 1 of 2
## 694                                             Brittney Sykes makes free throw 2 of 2
## 695                                                Charli Collier misses driving layup
## 696                                 Arike Ogunbowale misses 23-foot three point jumper
## 697                                                  Te'a Cooper misses 18-foot jumper
## 698                                       Tyasha Harris makes 14-foot pullup jump shot
## 699                                   Brittney Sykes misses 25-foot three point jumper
## 700                                                Nneka Ogwumike makes two point shot
## 701                                                   Dana Evans misses 12-foot jumper
## 702                                   Jasmine Walker misses 27-foot three point jumper
## 703                                    Chelsea Dungee makes 25-foot step back jumpshot
## 704                                                          Te'a Cooper misses jumper
## 705                      Isabelle Harrison makes two point shot (Allisha Gray assists)
## 706                                   Arella Guirantes misses 17-foot pullup jump shot
## 707                                       Arella Guirantes makes 4-foot two point shot
## 708                                     Nia Coffey blocks Bella Alarie 's 4-foot layup
## 709                                        Te'a Cooper misses running pullup jump shot
## 710                         Charli Collier makes 19-foot jumper (Allisha Gray assists)
## 711                                 Arella Guirantes misses 27-foot three point jumper
## 712              Ariel Atkins makes 27-foot three point jumper (Natasha Cloud assists)
## 713                                Ariel Atkins blocks Stefanie Dolson 's 8-foot layup
## 714                                Theresa Plaisance misses 26-foot three point jumper
## 715                                Candace Parker makes layup (Kahleah Copper assists)
## 716      Theresa Plaisance makes 27-foot three point jumper (Leilani Mitchell assists)
## 717     Candace Parker makes 27-foot three point jumper (Courtney Vandersloot assists)
## 718                                                      Diamond DeShields makes layup
## 719           Kahleah Copper makes 23-foot three point jumper (Candace Parker assists)
## 720                             Kahleah Copper makes layup (Diamond DeShields assists)
## 721                                         Tina Charles misses 16-foot two point shot
## 722                                              Stefanie Dolson misses 20-foot jumper
## 723                                Theresa Plaisance misses 25-foot three point jumper
## 724                      Diamond DeShields misses 24-foot three point pullup jump shot
## 725                  Theresa Plaisance makes 13-foot jumper (Leilani Mitchell assists)
## 726                                          Natasha Cloud makes 3-foot two point shot
## 727                                    Natasha Cloud misses 25-foot three point jumper
## 728                   Kahleah Copper makes 3-foot layup (Courtney Vandersloot assists)
## 729                                         Leilani Mitchell misses three point jumper
## 730                                                  Tina Charles makes two point shot
## 731                                              Stefanie Dolson misses 21-foot jumper
## 732                                       Kiara Leslie misses 19-foot pullup jump shot
## 733                                   Kahleah Copper misses 14-foot step back jumpshot
## 734                                     Kiara Leslie misses 25-foot three point jumper
## 735                                    Kiara Leslie makes layup (Erica McCall assists)
## 736                                           Tina Charles makes 8-foot two point shot
## 737       Allie Quigley makes 23-foot three point jumper (Brittany Boyd-Jones assists)
## 738              Tina Charles makes 27-foot three point jumper (Natasha Cloud assists)
## 739       Brittany Boyd-Jones makes 26-foot three point jumper (Allie Quigley assists)
## 740                                    Natasha Cloud misses 27-foot three point jumper
## 741                                         Ruthy Hebard misses 11-foot two point shot
## 742                                                  Erica McCall misses driving layup
## 743                              Diamond DeShields makes layup (Allie Quigley assists)
## 744                                 Shavonte Zellous misses 26-foot three point jumper
## 745                                    Allie Quigley misses driving floating jump shot
## 746                                 Leilani Mitchell misses 23-foot three point jumper
## 747                                           Shavonte Zellous makes free throw 1 of 2
## 748                                           Shavonte Zellous makes free throw 2 of 2
## 749                                Brittany Boyd-Jones misses 19-foot pullup jump shot
## 750                       Astou Ndour makes 4-foot layup (Brittany Boyd-Jones assists)
## 751                                         Tina Charles misses 10-foot two point shot
## 752                         Astou Ndour makes 3-foot layup (Diamond DeShields assists)
## 753                                              Tina Charles misses free throw 1 of 2
## 754                                               Tina Charles makes free throw 2 of 2
## 755     Candace Parker makes 27-foot three point jumper (Courtney Vandersloot assists)
## 756                                        Theresa Plaisance misses three point jumper
## 757                                     Diamond DeShields misses 6-foot two point shot
## 758                                         Tina Charles misses 10-foot two point shot
## 759                                                          Ariel Atkins misses layup
## 760                                      Courtney Vandersloot misses finger roll layup
## 761                                          Tina Charles misses 7-foot two point shot
## 762                                                  Tina Charles makes two point shot
## 763                                               Tina Charles makes free throw 1 of 1
## 764                                            Stefanie Dolson makes free throw 1 of 2
## 765                                            Stefanie Dolson makes free throw 2 of 2
## 766                                             Kahleah Copper makes free throw 1 of 2
## 767                                             Kahleah Copper makes free throw 2 of 2
## 768                                 Leilani Mitchell misses driving floating jump shot
## 769                                              Stefanie Dolson misses 19-foot jumper
## 770                                 Leilani Mitchell misses 24-foot three point jumper
## 771                                                Kahleah Copper misses driving layup
## 772                                             Candace Parker makes free throw 1 of 2
## 773                                             Candace Parker makes free throw 2 of 2
## 774                        Candace Parker blocks Natasha Cloud 's 8-foot driving layup
## 775                       Kahleah Copper makes two point shot (Candace Parker assists)
## 776                           Ariel Atkins misses 25-foot three point pullup jump shot
## 777                                Candace Parker blocks Ariel Atkins 's 6-foot jumper
## 778                                                        Kahleah Copper misses layup
## 779        Candace Parker makes 26-foot three point jumper (Diamond DeShields assists)
## 780                                              Natasha Cloud makes free throw 1 of 2
## 781                                              Natasha Cloud makes free throw 2 of 2
## 782                                             Kahleah Copper makes free throw 1 of 2
## 783                                            Kahleah Copper misses free throw 2 of 2
## 784                                        Natasha Cloud misses 15-foot two point shot
## 785                                              Allie Quigley makes free throw 1 of 2
## 786                                              Allie Quigley makes free throw 2 of 2
## 787                                                          Tina Charles misses layup
## 788                                       Stefanie Dolson misses 8-foot two point shot
## 789                                             Tina Charles misses three point jumper
## 790                                      Allie Quigley misses 18-foot pullup jump shot
## 791                                          Tina Charles misses 9-foot two point shot
## 792                                        Candace Parker misses 8-foot two point shot
## 793                                          Erica McCall misses 8-foot two point shot
## 794                                              Tina Charles misses free throw 1 of 2
## 795                                               Tina Charles makes free throw 2 of 2
## 796                                               Candace Parker misses 22-foot jumper
## 797                                         Allie Quigley misses 9-foot two point shot
## 798                                                  Tina Charles misses driving layup
## 799                       Kahleah Copper makes two point shot (Candace Parker assists)
## 800                                             Kahleah Copper makes free throw 1 of 1
## 801                                              Natasha Cloud makes free throw 1 of 2
## 802                                              Natasha Cloud makes free throw 2 of 2
## 803                                   Candace Parker misses 23-foot three point jumper
## 804          Theresa Plaisance makes 16-foot two point shot (Leilani Mitchell assists)
## 805                                   Kahleah Copper misses 26-foot three point jumper
## 806                             Courtney Vandersloot misses 25-foot three point jumper
## 807                                Theresa Plaisance misses 28-foot three point jumper
## 808                                                  Ariel Atkins makes two point shot
## 809                                               Candace Parker misses 23-foot jumper
## 810                                  Theresa Plaisance misses 18-foot pullup jump shot
## 811                                                 Natasha Cloud makes two point shot
## 812                                            Candace Parker misses free throw 1 of 2
## 813                                             Candace Parker makes free throw 2 of 2
## 814                                    Natasha Cloud misses 28-foot three point jumper
## 815                          Theresa Plaisance blocks Stefanie Dolson 's 12-foot layup
## 816                                                 Courtney Vandersloot misses jumper
## 817                           Theresa Plaisance blocks Stefanie Dolson 's 8-foot layup
## 818                                Theresa Plaisance misses 26-foot three point jumper
## 819                                    Natasha Cloud misses 28-foot three point jumper
## 820                                     Tina Charles misses 26-foot three point jumper
## 821                                                         Natasha Cloud misses layup
## 822                                                Astou Ndour makes free throw 1 of 2
## 823                                                Astou Ndour makes free throw 2 of 2
## 824                                   Stella Johnson misses 27-foot three point jumper
## 825           Stella Johnson blocks Allie Quigley 's 5-foot driving floating jump shot
## 826                                                Astou Ndour makes free throw 1 of 2
## 827                                                Astou Ndour makes free throw 2 of 2
## 828                                          Tina Charles misses 6-foot two point shot
## 829                                   Erica McCall makes layup (Natasha Cloud assists)
## 830                                    Allie Quigley misses 26-foot three point jumper
## 831                                       Ariel Atkins misses 17-foot pullup jump shot
## 832                                           Stella Johnson misses three point jumper
## 833                                  Diamond DeShields misses 14-foot pullup jump shot
## 834                           Tina Charles makes two point shot (Ariel Atkins assists)
## 835  Courtney Vandersloot makes 23-foot three point jumper (Diamond DeShields assists)
## 836                                         Tina Charles misses 14-foot two point shot
## 837        Diamond DeShields makes 24-foot three point jumper (Candace Parker assists)
## 838                                      Natasha Cloud misses 20-foot pullup jump shot
## 839                      Diamond DeShields misses 25-foot three point pullup jump shot
## 840                                   Stella Johnson misses driving floating jump shot
## 841                                     Ariel Atkins misses 25-foot three point jumper
## 842                Allie Quigley makes 16-foot two point shot (Kahleah Copper assists)
## 843                                Theresa Plaisance misses 27-foot three point jumper
## 844                                Stefanie Dolson makes layup (Allie Quigley assists)
## 845          Theresa Plaisance makes 12-foot pullup jump shot (Stella Johnson assists)
## 846                    Brittany Boyd-Jones misses 26-foot three point pullup jump shot
## 847                       Leilani Mitchell misses 26-foot three point pullup jump shot
## 848                                                          Erica McCall misses layup
## 849                                                           Erica McCall makes layup
## 850                                    Allie Quigley misses 25-foot three point jumper
## 851                  Kahleah Copper makes two point shot (Brittany Boyd-Jones assists)
## 852                               Erica McCall makes layup (Theresa Plaisance assists)
## 853                                        Allie Quigley misses 17-foot two point shot
## 854                                 Leilani Mitchell misses 24-foot three point jumper
## 855                                     Kahleah Copper misses 16-foot pullup jump shot
## 856                                        Theresa Plaisance misses three point jumper
## 857                                             Kahleah Copper makes free throw 1 of 2
## 858                                             Kahleah Copper makes free throw 2 of 2
## 859                                              Jillian Alleyne misses 18-foot jumper
## 860                                      Astou Ndour misses 27-foot three point jumper
## 861                                               Kiara Leslie makes free throw 1 of 2
## 862                                               Kiara Leslie makes free throw 2 of 2
## 863                        Ruthy Hebard makes 5-foot layup (Diamond DeShields assists)
## 864                                               Kiara Leslie makes free throw 1 of 2
## 865                                               Kiara Leslie makes free throw 2 of 2
## 866                          Candace Parker makes layup (Courtney Vandersloot assists)
## 867                                     Erica McCall misses 26-foot three point jumper
## 868                                       Candace Parker misses 14-foot two point shot
## 869                                   Shavonte Zellous misses 16-foot pullup jump shot
## 870                                              Ruthy Hebard misses free throw 1 of 2
## 871                                               Ruthy Hebard makes free throw 2 of 2
## 872                                    Stella Johnson makes 29-foot three point jumper
## 873                                                 Ruthy Hebard misses 10-foot jumper
## 874                                               Erica McCall makes free throw 1 of 2
## 875                                               Erica McCall makes free throw 2 of 2
## 876                                                     Diamond DeShields misses layup
## 877                                       Stella Johnson misses 14-foot two point shot
## 878                                            Diamond DeShields misses 21-foot jumper
## 879                                     Sydney Wiese misses 25-foot three point jumper
## 880                                       Jillian Alleyne misses 5-foot two point shot
## 881                                   Shavonte Zellous misses 16-foot pullup jump shot
## 882                                              Erica McCall misses free throw 1 of 2
## 883                                               Erica McCall makes free throw 2 of 2
## 884                                                          Liz Cambage misses jumper
## 885                                                Liz Cambage makes free throw 1 of 2
## 886                                                Liz Cambage makes free throw 2 of 2
## 887                                  Breanna Stewart misses 24-foot three point jumper
## 888                                     Jackie Young misses 26-foot three point jumper
## 889                A'ja Wilson makes 25-foot three point jumper (Jackie Young assists)
## 890                                                        Candice Dupree misses layup
## 891                                  Liz Cambage makes layup (Riquna Williams assists)
## 892                           Candice Dupree makes 7-foot jumper (Jewell Loyd assists)
## 893                                                  A'ja Wilson misses 17-foot jumper
## 894                                               Candice Dupree misses 20-foot jumper
## 895                                 Jackie Young blocks Candice Dupree 's 2-foot layup
## 896                                                         Candice Dupree makes layup
## 897                                                  A'ja Wilson misses 20-foot jumper
## 898                                               Candice Dupree misses 20-foot jumper
## 899                                                  Jackie Young makes 17-foot jumper
## 900                                            Breanna Stewart makes free throw 1 of 2
## 901                                            Breanna Stewart makes free throw 2 of 2
## 902                         A'ja Wilson makes 19-foot jumper (Riquna Williams assists)
## 903                                      Jewell Loyd misses 25-foot three point jumper
## 904                                                    Jisu Park misses 20-foot jumper
## 905                                  Breanna Stewart misses 23-foot three point jumper
## 906                                             Jisu Park makes 17-foot jump bank shot
## 907                                 Jackie Young makes layup (Riquna Williams assists)
## 908                                             Candice Dupree misses 8-foot hook shot
## 909                                                            Jewell Loyd makes layup
## 910                            A'ja Wilson makes 20-foot jumper (Chelsea Gray assists)
## 911                                            Sue Bird makes 20-foot pullup jump shot
## 912                                          Riquna Williams misses three point jumper
## 913                                 Breanna Stewart makes hook shot (Sue Bird assists)
## 914                                              Jisu Park makes 3-foot jump bank shot
## 915                                                    Jewell Loyd makes driving layup
## 916                                                 Chelsea Gray misses 13-foot jumper
## 917                                                            A'ja Wilson makes layup
## 918                                                A'ja Wilson makes free throw 1 of 1
## 919                                                    Jewell Loyd makes driving layup
## 920                                           Liz Cambage misses 8-foot two point shot
## 921                   Ezi Magbegor makes 24-foot three point jumper (Sue Bird assists)
## 922                 A'ja Wilson makes 11-foot step back jumpshot (Kelsey Plum assists)
## 923                     Ezi Magbegor makes 6-foot two point shot (Jewell Loyd assists)
## 924                                       Jewell Loyd makes 15-foot step back jumpshot
## 925                                                  Jackie Young misses 3-foot jumper
## 926                                     Chelsea Gray misses 24-foot three point jumper
## 927                                 Candice Dupree makes layup (Jordin Canada assists)
## 928                                                  Jackie Young makes 12-foot jumper
## 929                                         Jordin Canada makes 13-foot jump bank shot
## 930                                    Dearica Hamby misses 24-foot three point jumper
## 931            Stephanie Talbot makes 23-foot three point jumper (Jewell Loyd assists)
## 932                                        Ezi Magbegor blocks Liz Cambage's hook shot
## 933                                      Kelsey Plum misses 24-foot three point jumper
## 934                                                            Liz Cambage makes layup
## 935                                                  Jordin Canada makes 5-foot jumper
## 936                                              Jordin Canada makes free throw 1 of 1
## 937                                                 Chelsea Gray misses 18-foot jumper
## 938                                               Candice Dupree misses 21-foot jumper
## 939                                Candice Dupree blocks Dearica Hamby 's 2-foot layup
## 940                                                         Dearica Hamby misses layup
## 941                                             Jordin Canada misses free throw 1 of 2
## 942                                              Jordin Canada makes free throw 2 of 2
## 943                                                       Riquna Williams misses layup
## 944                                               Breanna Stewart misses 8-foot jumper
## 945                                                         Ezi Magbegor misses jumper
## 946                                     Chelsea Gray makes layup (Kelsey Plum assists)
## 947                                   Breanna Stewart makes 18-foot step back jumpshot
## 948                                                   A'ja Wilson misses 7-foot jumper
## 949           Breanna Stewart makes 24-foot three point jumper (Jordin Canada assists)
## 950                                                A'ja Wilson makes free throw 1 of 2
## 951                                                A'ja Wilson makes free throw 2 of 2
## 952                                               Breanna Stewart misses 4-foot jumper
## 953                                                     Jisu Park misses 3-foot jumper
## 954                                 Stephanie Talbot misses 27-foot three point jumper
## 955                                                   A'ja Wilson misses 7-foot jumper
## 956                                           Breanna Stewart misses free throw 1 of 2
## 957                                            Breanna Stewart makes free throw 2 of 2
## 958                                        Kelsey Plum misses 17-foot pullup jump shot
## 959                                                  A'ja Wilson misses 17-foot jumper
## 960                Sue Bird makes 27-foot three point jumper (Breanna Stewart assists)
## 961                                                 Jackie Young misses 19-foot jumper
## 962                    Sue Bird makes 26-foot three point jumper (Jewell Loyd assists)
## 963                              Liz Cambage makes 4-foot jumper (A'ja Wilson assists)
## 964                                               Liz Cambage misses free throw 1 of 1
## 965                                     Liz Cambage makes layup (Jackie Young assists)
## 966                                               Candice Dupree misses 21-foot jumper
## 967                                            A'ja Wilson makes 7-foot two point shot
## 968                                Liz Cambage blocks Breanna Stewart 's 6-foot jumper
## 969                                              Riquna Williams misses 16-foot jumper
## 970                                               Candice Dupree misses 20-foot jumper
## 971                                                  Chelsea Gray misses driving layup
## 972                                                           Jackie Young makes layup
## 973                                                           Liz Cambage misses layup
## 974            Katie Lou Samuelson makes 23-foot three point jumper (Sue Bird assists)
## 975                    Jewell Loyd makes 25-foot three point jumper (Sue Bird assists)
## 976                                                  Chelsea Gray misses 8-foot jumper
## 977                                         Sue Bird misses 25-foot three point jumper
## 978                                                          Liz Cambage misses jumper
## 979                                        Breanna Stewart makes 6-foot two point shot
## 980                                     Ezi Magbegor makes layup (Jewell Loyd assists)
## 981                                     Jackie Young misses 25-foot three point jumper
## 982                                   Breanna Stewart makes 22-foot step back jumpshot
## 983                                                 Jackie Young misses 19-foot jumper
## 984                                  Breanna Stewart misses 25-foot three point jumper
## 985                               Breanna Stewart blocks A'ja Wilson 's 18-foot jumper
## 986                                       Breanna Stewart misses 4-foot jump bank shot
## 987                            Jackie Young makes 10-foot jumper (A'ja Wilson assists)
## 988                    Breanna Stewart makes 14-foot two point shot (Sue Bird assists)
## 989                                Candice Dupree blocks Jackie Young 's 7-foot jumper
## 990                Kelsey Plum makes 23-foot three point jumper (Chelsea Gray assists)
## 991                                                Candice Dupree misses 8-foot jumper
## 992                                        Jackie Young makes 20-foot pullup jump shot
## 993                                         Sue Bird misses 25-foot three point jumper
## 994                                                A'ja Wilson makes free throw 1 of 2
## 995                                                A'ja Wilson makes free throw 2 of 2
## 996                                  Stephanie Talbot makes 24-foot step back jumpshot
## 997                                                Jewell Loyd makes free throw 1 of 2
## 998                                                Jewell Loyd makes free throw 2 of 2
## 999                               Kelsey Plum makes 2-foot layup (A'ja Wilson assists)
## 1000                                Riquna Williams makes jumper (A'ja Wilson assists)
## 1001                            Jewell Loyd makes 1-foot layup (Jordin Canada assists)
## 1002                                 Riquna Williams misses 25-foot three point jumper
## 1003                                                 Kelsey Plum misses two point shot
## 1004                       Candice Dupree makes 10-foot jumper (Jordin Canada assists)
## 1005                                                Jackie Young misses 19-foot jumper
## 1006                                           Breanna Stewart makes free throw 1 of 2
## 1007                                           Breanna Stewart makes free throw 2 of 2
## 1008                                                Jackie Young misses 21-foot jumper
## 1009                                Stephanie Talbot misses 24-foot three point jumper
## 1010                                     Kelsey Plum misses 25-foot three point jumper
## 1011                                                Jordin Canada misses driving layup
## 1012                                     A'ja Wilson makes layup (Kelsey Plum assists)
## 1013                                     Jewell Loyd misses 26-foot three point jumper
## 1014                        A'ja Wilson makes 21-foot jumper (Riquna Williams assists)
## 1015                                            Jordin Canada misses free throw 1 of 2
## 1016                                            Jordin Canada misses free throw 2 of 2
## 1017                                    Liz Cambage makes layup (Jackie Young assists)
## 1018                               Riquna Williams blocks Jewell Loyd 's 3-foot jumper
## 1019                                               Kelsey Plum makes free throw 1 of 2
## 1020                                               Kelsey Plum makes free throw 2 of 2
## 1021                                 Breanna Stewart makes layup (Jewell Loyd assists)
## 1022                                 Riquna Williams misses 26-foot three point jumper
## 1023                          Liz Cambage makes 13-foot jumper (Dearica Hamby assists)
## 1024                                                  Jewell Loyd misses 6-foot jumper
## 1025                                                          Kelsey Plum misses layup
## 1026                                           Breanna Stewart makes free throw 1 of 2
## 1027                                           Breanna Stewart makes free throw 2 of 2
## 1028                                                Jackie Young misses 18-foot jumper
## 1029                                 Breanna Stewart misses 24-foot three point jumper
## 1030                            Breanna Stewart makes driving layup (Sue Bird assists)
## 1031                             Liz Cambage makes 3-foot jumper (Kelsey Plum assists)
## 1032                                                Dearica Hamby makes two point shot
## 1033                    Candice Dupree makes 20-foot jumper (Stephanie Talbot assists)
## 1034                                                 Dearica Hamby makes driving layup
## 1035                                   Jewell Loyd makes layup (Jordin Canada assists)
## 1036                                             Dearica Hamby makes free throw 1 of 2
## 1037                                            Dearica Hamby misses free throw 2 of 2
## 1038                                         Breanna Stewart misses three point jumper
## 1039                                         A'ja Wilson misses 11-foot two point shot
## 1040                                                Jordin Canada misses driving layup
## 1041             Chelsea Gray makes 29-foot three point jumper (Dearica Hamby assists)
## 1042              Jewell Loyd makes 25-foot three point jumper (Jordin Canada assists)
## 1043                               Kelsey Plum makes 3-foot jumper (Jisu Park assists)
## 1044                                                 Jewell Loyd misses 19-foot jumper
## 1045                                                Candice Dupree makes driving layup
## 1046                                                        Dearica Hamby misses layup
## 1047                                        Sue Bird misses 23-foot three point jumper
## 1048                        Katie Lou Samuelson blocks Dearica Hamby 's 19-foot jumper
## 1049                                Katie Lou Samuelson makes layup (Sue Bird assists)
## 1050                                                Kelsey Plum makes pullup jump shot
## 1051                                     Katie Lou Samuelson misses three point jumper
## 1052                                                        Jewell Loyd makes tip shot
## 1053                                        Dearica Hamby makes 12-foot two point shot
## 1054                                              Candice Dupree misses 14-foot jumper
## 1055                                     Jewell Loyd misses 28-foot three point jumper
## 1056                                               Dearica Hamby misses two point shot
## 1057           Sue Bird makes 23-foot three point jumper (Katie Lou Samuelson assists)
## 1058                                    A'ja Wilson makes layup (Chelsea Gray assists)
## 1059                                     Jewell Loyd misses 23-foot three point jumper
## 1060                                   Chelsea Gray makes layup (Jackie Young assists)
## 1061                               A'ja Wilson blocks Breanna Stewart 's 7-foot jumper
## 1062                                                 Kelsey Plum misses two point shot
## 1063               Breanna Stewart makes 24-foot three point jumper (Sue Bird assists)
## 1064                                 Kelsey Mitchell misses 27-foot three point jumper
## 1065                                     Kylee Shook misses 11-foot step back jumpshot
## 1066                                              Teaira McCowan misses 12-foot jumper
## 1067                                            Betnijah Laney makes free throw 1 of 2
## 1068                                            Betnijah Laney makes free throw 2 of 2
## 1069                                Victoria Vivians misses 24-foot three point jumper
## 1070                                            Michaela Onyenwere makes driving layup
## 1071                                        Michaela Onyenwere makes free throw 1 of 1
## 1072                   Sami Whitcomb blocks Danielle Robinson 's 2-foot two point shot
## 1073                   Kelsey Mitchell makes 19-foot jumper (Victoria Vivians assists)
## 1074                                  Betnijah Laney misses 25-foot three point jumper
## 1075                                     Danielle Robinson makes 6-foot two point shot
## 1076                                     Kylee Shook misses 27-foot three point jumper
## 1077                    Teaira McCowan makes 2-foot jumper (Danielle Robinson assists)
## 1078                                       Sabrina Ionescu makes 26-foot three pointer
## 1079                                           Kelsey Mitchell makes free throw 1 of 2
## 1080                                           Kelsey Mitchell makes free throw 2 of 2
## 1081                       Michaela Onyenwere makes 3-foot layup (Kylee Shook assists)
## 1082                           Jantel Lavender makes layup (Danielle Robinson assists)
## 1083                                                Betnijah Laney makes driving layup
## 1084                                            Betnijah Laney makes free throw 1 of 1
## 1085                                         Sami Whitcomb makes 4-foot two point shot
## 1086                                           Teaira McCowan misses free throw 1 of 2
## 1087                                           Teaira McCowan misses free throw 2 of 2
## 1088                             Betnijah Laney makes jumper (Sabrina Ionescu assists)
## 1089                  Kelsey Mitchell makes two point shot (Danielle Robinson assists)
## 1090                                       Sabrina Ionescu makes 25-foot three pointer
## 1091       Kelsey Mitchell makes 26-foot three point jumper (Tiffany Mitchell assists)
## 1092       Michaela Onyenwere makes 25-foot three point jumper (Sami Whitcomb assists)
## 1093                      Tiffany Mitchell misses 25-foot three point pullup jump shot
## 1094                        Reshanda Gray makes two point shot (Sami Whitcomb assists)
## 1095                                   Sami Whitcomb misses 28-foot three point jumper
## 1096                                           Teaira McCowan misses free throw 1 of 2
## 1097                                           Teaira McCowan misses free throw 2 of 2
## 1098                                         Tiffany Mitchell misses free throw 1 of 2
## 1099                                          Tiffany Mitchell makes free throw 2 of 2
## 1100                                             Tiffany Mitchell misses driving layup
## 1101                                  Betnijah Laney misses 13-foot step back jumpshot
## 1102                                   Lindsay Allen misses 26-foot three point jumper
## 1103                                            Betnijah Laney makes free throw 1 of 2
## 1104                                            Betnijah Laney makes free throw 2 of 2
## 1105                                                     Jessica Breland misses jumper
## 1106           Betnijah Laney makes 19-foot pullup jump shot (Sabrina Ionescu assists)
## 1107                                     Rebecca Allen misses 19-foot pullup jump shot
## 1108                                                Lindsay Allen misses 6-foot jumper
## 1109                                     Rebecca Allen misses 27-foot three point shot
## 1110                                   Kelsey Mitchell misses 18-foot pullup jump shot
## 1111                                 Jazmine Jones makes layup (Sami Whitcomb assists)
## 1112                       Teaira McCowan makes 2-foot layup (Jessica Breland assists)
## 1113                                                Kylee Shook misses alley oop layup
## 1114                                     Lindsay Allen misses running pullup jump shot
## 1115                                   Kylee Shook makes layup (Jazmine Jones assists)
## 1116                                Kysre Gondrezick misses 28-foot three point jumper
## 1117                                      Kelsey Mitchell blocks Jazmine Jones's layup
## 1118                                               Jazmine Jones misses two point shot
## 1119          Kelsey Mitchell makes 20-foot pullup jump shot (Jantel Lavender assists)
## 1120            Rebecca Allen makes 26-foot three point jumper (Jazmine Jones assists)
## 1121                                           Danielle Robinson misses two point shot
## 1122                                  Kysre Gondrezick misses 16-foot pullup jump shot
## 1123            Sami Whitcomb makes 26-foot three point jumper (Rebecca Allen assists)
## 1124                                 Danielle Robinson misses 19-foot pullup jump shot
## 1125                                   Rebecca Allen misses 26-foot three point jumper
## 1126                                 Kelsey Mitchell misses 28-foot three point jumper
## 1127                                                DiDi Richards misses 6-foot jumper
## 1128                  Danielle Robinson makes two point shot (Kelsey Mitchell assists)
## 1129                                       Betnijah Laney misses 7-foot two point shot
## 1130                                             Kysre Gondrezick misses driving layup
## 1131                 Danielle Robinson makes 18-foot jumper (Kysre Gondrezick assists)
## 1132      Victoria Vivians makes 28-foot three point jumper (Kysre Gondrezick assists)
## 1133                                            Betnijah Laney makes free throw 1 of 2
## 1134                                           Betnijah Laney misses free throw 2 of 2
## 1135                                   Victoria Vivians makes 19-foot pullup jump shot
## 1136                                             Sabrina Ionescu misses two point shot
## 1137                                            Danielle Robinson makes two point shot
## 1138                                   Sami Whitcomb misses 25-foot three point jumper
## 1139                                  Betnijah Laney misses 26-foot three point jumper
## 1140                                      Danielle Robinson makes technical free throw
## 1141                                             Chelsey Perry makes free throw 1 of 2
## 1142                                            Chelsey Perry misses free throw 2 of 2
## 1143                                              Betnijah Laney misses two point shot
## 1144                              Sami Whitcomb blocks Teaira McCowan 's 1-foot jumper
## 1145                               Danielle Robinson misses 27-foot three point jumper
## 1146                      Victoria Vivians misses 27-foot three point pullup jump shot
## 1147                                 Danielle Robinson misses 18-foot pullup jump shot
## 1148                                 Sabrina Ionescu misses 26-foot three point jumper
## 1149                                   Rebecca Allen misses 27-foot three point jumper
## 1150                                   Kelsey Mitchell misses 21-foot pullup jump shot
## 1151                                        Sabrina Ionescu makes technical free throw
## 1152                                   Lindsay Allen misses 26-foot three point jumper
## 1153                                               Chelsey Perry misses 15-foot jumper
## 1154                                Teaira McCowan makes layup (Lindsay Allen assists)
## 1155                                           Teaira McCowan misses free throw 1 of 1
## 1156                                Victoria Vivians misses 23-foot three point jumper
## 1157                                                   Michaela Onyenwere misses layup
## 1158                                Victoria Vivians misses 24-foot three point jumper
## 1159                                         Danielle Robinson makes free throw 1 of 2
## 1160                                         Danielle Robinson makes free throw 2 of 2
## 1161                                  Victoria Vivians misses running pullup jump shot
## 1162                                   Sami Whitcomb misses 23-foot three point jumper
## 1163                                   Kelsey Mitchell misses 17-foot pullup jump shot
## 1164                                               Sami Whitcomb misses two point shot
## 1165           Jazmine Jones makes 28-foot three point jumper (Betnijah Laney assists)
## 1166                                      Betnijah Laney misses 24-foot jump bank shot
## 1167                                       Michaela Onyenwere misses free throw 1 of 2
## 1168                                        Michaela Onyenwere makes free throw 2 of 2
## 1169                   Jantel Lavender makes 19-foot jumper (Tiffany Mitchell assists)
## 1170                                 Kelsey Mitchell misses 25-foot three point jumper
## 1171                                                     Tiffany Mitchell misses layup
## 1172                                  Kylee Shook makes layup (Betnijah Laney assists)
## 1173                                             Jantel Lavender misses 18-foot jumper
## 1174                               Teaira McCowan blocks Reshanda Gray's driving layup
## 1175           Betnijah Laney makes 25-foot three point jumper (Sami Whitcomb assists)
## 1176                                  Danielle Robinson makes 18-foot pullup jump shot
## 1177                                              Kelsey Mitchell makes two point shot
## 1178                                  Tiffany Mitchell misses 19-foot pullup jump shot
## 1179                                             Tiffany Mitchell misses driving layup
## 1180                                             Sabrina Ionescu misses two point shot
## 1181                                 Danielle Robinson misses 19-foot pullup jump shot
## 1182                              Jazmine Jones blocks Kelsey Mitchell 's 1-foot layup
## 1183                                Tiffany Mitchell misses 25-foot three point jumper
## 1184                                              Jantel Lavender makes two point shot
## 1185                                    Michaela Onyenwere makes 8-foot two point shot
## 1186                                 Sabrina Ionescu misses driving floating jump shot
## 1187                                        Betnijah Laney makes 8-foot two point shot
## 1188                                             Jantel Lavender misses 18-foot jumper
## 1189                                             Tiffany Mitchell misses driving layup
## 1190                                    Betnijah Laney misses 21-foot pullup jump shot
## 1191                                           Danielle Robinson misses two point shot
## 1192                                Reshanda Gray makes layup (Betnijah Laney assists)
## 1193                                                Jazmine Jones makes two point shot
## 1194         Jessica Breland makes 18-foot pullup jump shot (Kysre Gondrezick assists)
## 1195                                          Tiffany Mitchell makes free throw 1 of 2
## 1196                                          Tiffany Mitchell makes free throw 2 of 2
## 1197                                            Kysre Gondrezick misses 12-foot jumper
## 1198                                     Tiffany Mitchell makes 13-foot two point shot
## 1199                                               Jazmine Jones misses two point shot
## 1200                      Kysre Gondrezick misses 26-foot three point pullup jump shot
## 1201                                Kysre Gondrezick misses 25-foot step back jumpshot
## 1202            Jazmine Jones makes 24-foot three point jumper (Rebecca Allen assists)
## 1203                                       Tiffany Mitchell makes technical free throw
## 1204                                                 Lindsay Allen makes driving layup
## 1205                               DiDi Richards makes layup (Sabrina Ionescu assists)
## 1206                                               Sabrina Ionescu makes driving layup
## 1207                                           Sabrina Ionescu makes free throw 1 of 1
## 1208                                    Betnijah Laney misses 18-foot pullup jump shot
## 1209                                              Tiffany Mitchell makes driving layup
## 1210                                    Sabrina Ionescu misses 8-foot pullup jump shot
## 1211                                      Teaira McCowan misses 10-foot two point shot
## 1212                                   Rebecca Allen misses 27-foot three point jumper
## 1213                                                 Kylee Shook misses two point shot
## 1214                                                       Teaira McCowan misses layup
## 1215                                        Sabrina Ionescu makes technical free throw
## 1216                                    Betnijah Laney misses 16-foot pullup jump shot
## 1217                                             Kelsey Mitchell misses two point shot
## 1218                       Kelsey Mitchell misses 25-foot three point pullup jump shot
## 1219               Kylee Shook makes 10-foot pullup jump shot (Betnijah Laney assists)
## 1220                                           Danielle Robinson misses two point shot
## 1221                   Jessica Breland blocks DiDi Richards 's 6-foot pullup jump shot
## 1222                                  Betnijah Laney misses 26-foot three point jumper
## 1223                  Tiffany Mitchell makes driving layup (Danielle Robinson assists)
## 1224                                 Sabrina Ionescu misses 26-foot three point jumper
## 1225      Kelsey Mitchell makes 25-foot three point jumper (Danielle Robinson assists)
## 1226         Betnijah Laney makes 23-foot three point jumper (Sabrina Ionescu assists)
## 1227                                 Jantel Lavender misses 28-foot three point jumper
## 1228                                          Tiffany Mitchell makes free throw 1 of 2
## 1229                                          Tiffany Mitchell makes free throw 2 of 2
## 1230                              Michaela Onyenwere misses 26-foot three point jumper
## 1231                                             Jessica Breland misses 19-foot jumper
## 1232                                           Michaela Onyenwere misses driving layup
## 1233                                    Kelsey Mitchell misses 7-foot pullup jump shot
## 1234                                              Jantel Lavender makes two point shot
## 1235                                           Sabrina Ionescu makes free throw 1 of 2
## 1236                                          Sabrina Ionescu misses free throw 2 of 2
## 1237                                              Kelsey Mitchell misses driving layup
## 1238               Jessica Breland blocks Betnijah Laney 's 26-foot three point jumper
## 1239                                   Kelsey Mitchell misses 21-foot pullup jump shot
## 1240                                       Kia Nurse misses 25-foot three point jumper
## 1241                                   Jonquel Jones misses 26-foot three point jumper
## 1242                                      Diana Taurasi makes 26-foot three point shot
## 1243                                      DeWanna Bonner misses 10-foot two point shot
## 1244                                                      Brittney Griner misses layup
## 1245                                                     Brianna Turner makes tip shot
## 1246                                 Jonquel Jones makes layup (Brionna Jones assists)
## 1247                            Skylar Diggins-Smith misses 26-foot three point jumper
## 1248                                           DeWanna Bonner makes step back jumpshot
## 1249                                   DeWanna Bonner blocks Kia Nurse's driving layup
## 1250                                        Briann January makes 24-foot three pointer
## 1251                                        Skylar Diggins-Smith misses two point shot
## 1252               Kia Nurse makes 23-foot three point jumper (Brianna Turner assists)
## 1253                                        Jonquel Jones misses 5-foot two point shot
## 1254                       Diana Taurasi makes 21-foot jumper (Brianna Turner assists)
## 1255                                    Briann January misses running pullup jump shot
## 1256                  Jonquel Jones blocks Diana Taurasi 's 24-foot three point jumper
## 1257                                                       DeWanna Bonner misses layup
## 1258                                               DeWanna Bonner makes two point shot
## 1259              Diana Taurasi makes 13-foot two point shot (Brittney Griner assists)
## 1260                                                Brionna Jones misses driving layup
## 1261                                                     DeWanna Bonner makes tip shot
## 1262                               Jonquel Jones blocks Brianna Turner's driving layup
## 1263      Skylar Diggins-Smith makes 25-foot three point jumper (Megan Walker assists)
## 1264                                            DeWanna Bonner makes free throw 1 of 2
## 1265                                            DeWanna Bonner makes free throw 2 of 2
## 1266               Brittney Griner makes 11-foot two point shot (Megan Walker assists)
## 1267                            Brittney Griner blocks Brionna Jones 's 17-foot jumper
## 1268                            Brianna Turner makes 2-foot layup (Shey Peddy assists)
## 1269                           Megan Walker makes layup (Skylar Diggins-Smith assists)
## 1270                                                Alanna Smith misses 19-foot jumper
## 1271                                    Briann January misses 19-foot pullup jump shot
## 1272                                    Megan Walker misses 24-foot three point jumper
## 1273                                        Jonquel Jones makes 14-foot two point shot
## 1274                                    Alanna Smith misses 25-foot three point jumper
## 1275                                               DeWanna Bonner makes two point shot
## 1276                                   Kaila Charles misses 23-foot three point jumper
## 1277                         Diana Taurasi misses 25-foot three point pullup jump shot
## 1278                                Natisha Hiedeman misses 24-foot three point jumper
## 1279                                               Brionna Jones misses 18-foot jumper
## 1280                                              DeWanna Bonner misses two point shot
## 1281        DeWanna Bonner makes 23-foot three point jumper (Natisha Hiedeman assists)
## 1282                                     Brittney Griner misses 12-foot two point shot
## 1283                                      Natisha Hiedeman makes 23-foot three pointer
## 1284                                       Kia Nurse misses driving floating jump shot
## 1285           Jonquel Jones makes 24-foot step back jumpshot (Briann January assists)
## 1286                            Skylar Diggins-Smith misses 25-foot three point jumper
## 1287                         Brittney Griner blocks DiJonai Carrington's driving layup
## 1288                                                 Kia Nurse makes free throw 1 of 2
## 1289                                                Kia Nurse misses free throw 2 of 2
## 1290                                                      Brittney Griner misses layup
## 1291                                      Skylar Diggins-Smith makes free throw 1 of 2
## 1292                                      Skylar Diggins-Smith makes free throw 2 of 2
## 1293                                       Jonquel Jones misses 15-foot two point shot
## 1294                                               Briann January makes 20-foot jumper
## 1295                                           Brittney Griner misses pullup jump shot
## 1296                    Brittney Griner blocks DeWanna Bonner 's 4-foot two point shot
## 1297                                            DeWanna Bonner makes free throw 1 of 2
## 1298                                            DeWanna Bonner makes free throw 2 of 2
## 1299                  Brianna Turner makes 5-foot layup (Skylar Diggins-Smith assists)
## 1300                              DiJonai Carrington misses 24-foot three point jumper
## 1301                     Brianna Turner blocks DeWanna Bonner 's 2-foot two point shot
## 1302          DeWanna Bonner makes 24-foot three point jumper (Briann January assists)
## 1303                                      Brittney Griner misses 4-foot two point shot
## 1304                                       Jonquel Jones misses 10-foot two point shot
## 1305             Megan Walker makes 25-foot three point jumper (Diana Taurasi assists)
## 1306                     Natisha Hiedeman makes 14-foot jumper (Brionna Jones assists)
## 1307                         Diana Taurasi misses 25-foot three point pullup jump shot
## 1308                                      Skylar Diggins-Smith makes free throw 1 of 2
## 1309                                      Skylar Diggins-Smith makes free throw 2 of 2
## 1310                                               Jonquel Jones misses two point shot
## 1311           Natisha Hiedeman makes 10-foot pullup jump shot (Brionna Jones assists)
## 1312                                             Diana Taurasi makes free throw 1 of 2
## 1313                                             Diana Taurasi makes free throw 2 of 2
## 1314                  Brittney Griner blocks Natisha Hiedeman 's 2-foot two point shot
## 1315                                               Brionna Jones misses 10-foot jumper
## 1316        Natisha Hiedeman makes 26-foot three point jumper (DeWanna Bonner assists)
## 1317                                           Brittney Griner makes free throw 1 of 2
## 1318                                           Brittney Griner makes free throw 2 of 2
## 1319                                   Brionna Jones misses 25-foot three point jumper
## 1320                                                Brionna Jones makes two point shot
## 1321                  Brianna Turner makes 1-foot layup (Skylar Diggins-Smith assists)
## 1322                                         Natisha Hiedeman misses free throw 1 of 3
## 1323                                          Natisha Hiedeman makes free throw 2 of 3
## 1324                                          Natisha Hiedeman makes free throw 3 of 3
## 1325                                   Diana Taurasi misses 28-foot three point jumper
## 1326                                Jonquel Jones makes layup (Briann January assists)
## 1327                                             Jonquel Jones makes free throw 1 of 1
## 1328                                             Diana Taurasi makes free throw 1 of 2
## 1329                                             Diana Taurasi makes free throw 2 of 2
## 1330                                 Brittney Griner misses driving floating jump shot
## 1331                                  DeWanna Bonner misses 24-foot three point jumper
## 1332                                                    Kia Nurse misses driving layup
## 1333                     Brianna Turner blocks DeWanna Bonner 's 3-foot two point shot
## 1334                                           DeWanna Bonner misses free throw 1 of 2
## 1335                                            DeWanna Bonner makes free throw 2 of 2
## 1336                            Skylar Diggins-Smith misses 25-foot three point jumper
## 1337                                            DeWanna Bonner makes free throw 1 of 2
## 1338                                            DeWanna Bonner makes free throw 2 of 2
## 1339                                    Megan Walker misses 23-foot three point jumper
## 1340                     Natisha Hiedeman makes two point shot (Jonquel Jones assists)
## 1341                                    DeWanna Bonner misses 19-foot pullup jump shot
## 1342                                    Natisha Hiedeman misses 10-foot two point shot
## 1343                    Skylar Diggins-Smith makes two point shot (Shey Peddy assists)
## 1344                                       Jonquel Jones misses 16-foot two point shot
## 1345                                           Brittney Griner makes free throw 1 of 2
## 1346                                           Brittney Griner makes free throw 2 of 2
## 1347                                               Brionna Jones misses 17-foot jumper
## 1348           Megan Walker makes 3-foot two point shot (Skylar Diggins-Smith assists)
## 1349                                            Briann January makes free throw 1 of 2
## 1350                                            Briann January makes free throw 2 of 2
## 1351                 Brittney Griner makes 12-foot two point shot (Shey Peddy assists)
## 1352                          Beatrice Mompremier makes layup (Briann January assists)
## 1353                                    Megan Walker misses 24-foot three point jumper
## 1354                Shey Peddy makes 23-foot three point jumper (Alanna Smith assists)
## 1355                                  DeWanna Bonner misses 25-foot three point jumper
## 1356                                          Beatrice Mompremier makes two point shot
## 1357                                           Brittney Griner makes free throw 1 of 2
## 1358                                           Brittney Griner makes free throw 2 of 2
## 1359                                            Brionna Jones misses free throw 1 of 2
## 1360                                             Brionna Jones makes free throw 2 of 2
## 1361                                    Megan Walker misses 24-foot three point jumper
## 1362              Brittney Griner makes 12-foot two point shot (Diana Taurasi assists)
## 1363                                  Briann January misses driving floating jump shot
## 1364                     Brittney Griner makes two point shot (Brianna Turner assists)
## 1365                                Natisha Hiedeman misses 24-foot three point jumper
## 1366                                     Briann January makes 21-foot pullup jump shot
## 1367                                              Megan Walker makes free throw 1 of 2
## 1368                                             Megan Walker misses free throw 2 of 2
## 1369     Skylar Diggins-Smith makes 23-foot three point jumper (Diana Taurasi assists)
## 1370                                               DeWanna Bonner misses driving layup
## 1371        Natisha Hiedeman makes 25-foot three point jumper (DeWanna Bonner assists)
## 1372                              Brittney Griner makes jumper (Diana Taurasi assists)
## 1373                                   Jonquel Jones misses 25-foot three point jumper
## 1374           Diana Taurasi makes 24-foot three point jumper (Brianna Turner assists)
## 1375                         Brionna Jones makes 3-foot layup (Briann January assists)
## 1376                                    Diana Taurasi makes 23-foot three point jumper
## 1377                                            Natisha Hiedeman misses two point shot
## 1378                                                Brionna Jones misses driving layup
## 1379                                                  Skylar Diggins-Smith makes layup
## 1380                                      Skylar Diggins-Smith makes free throw 1 of 1
## 1381                        Jonquel Jones makes driving layup (DeWanna Bonner assists)
## 1382                                     Diana Taurasi misses 18-foot pullup jump shot
## 1383                                            DeWanna Bonner makes free throw 1 of 2
## 1384                                           DeWanna Bonner misses free throw 2 of 2
## 1385                                   Diana Taurasi misses 23-foot three point jumper
## 1386                         Brionna Jones makes 2-foot layup (DeWanna Bonner assists)
## 1387                                     Brittney Griner misses 12-foot two point shot
## 1388                                    Kia Nurse makes jumper (Diana Taurasi assists)
## 1389                                             Jonquel Jones makes free throw 1 of 2
## 1390                                             Jonquel Jones makes free throw 2 of 2
## 1391             Skylar Diggins-Smith blocks Natisha Hiedeman 's 3-foot two point shot
## 1392          DeWanna Bonner makes 23-foot three point jumper (Briann January assists)
## 1393                                   Diana Taurasi misses 23-foot three point jumper
## 1394                                            DeWanna Bonner makes free throw 1 of 2
## 1395                                            DeWanna Bonner makes free throw 2 of 2
## 1396                                        Briann January misses technical free throw
## 1397                                            Briann January makes free throw 1 of 2
## 1398                                            Briann January makes free throw 2 of 2
## 1399                                         Skylar Diggins-Smith makes two point shot
## 1400                                        Jonquel Jones misses 9-foot two point shot
## 1401                                             Diana Taurasi makes free throw 1 of 2
## 1402                                             Diana Taurasi makes free throw 2 of 2
## 1403                                     Briann January makes 21-foot pullup jump shot
## 1404                                       Kia Nurse misses 23-foot three point jumper
## 1405                                               DeWanna Bonner misses driving layup
## 1406                                                      Brionna Jones makes tip shot
## 1407                                       Kia Nurse misses 21-foot step back jumpshot
## 1408                                     Skylar Diggins-Smith misses free throw 1 of 3
## 1409                                      Skylar Diggins-Smith makes free throw 2 of 3
## 1410                                     Skylar Diggins-Smith misses free throw 3 of 3
## 1411                                            Briann January makes free throw 1 of 2
## 1412                                            Briann January makes free throw 2 of 2
## 1413                              Skylar Diggins-Smith misses running pullup jump shot
## 1414                 Sylvia Fowles makes 4-foot two point shot (Aerial Powers assists)
## 1415                              Michaela Onyenwere misses 26-foot three point jumper
## 1416                                                Aerial Powers misses driving layup
## 1417                                               Aerial Powers misses two point shot
## 1418              Kayla McBride makes 19-foot pullup jump shot (Aerial Powers assists)
## 1419                                           Sabrina Ionescu makes free throw 1 of 2
## 1420                                           Sabrina Ionescu makes free throw 2 of 2
## 1421                                           Michaela Onyenwere misses driving layup
## 1422                         Aerial Powers misses 24-foot three point pullup jump shot
## 1423         Betnijah Laney makes 25-foot three point jumper (Sabrina Ionescu assists)
## 1424                                   Aerial Powers misses 24-foot three point jumper
## 1425            Kylee Shook makes 25-foot three point jumper (Sabrina Ionescu assists)
## 1426                           Kylee Shook makes 3-foot layup (Betnijah Laney assists)
## 1427                     Aerial Powers blocks Sabrina Ionescu 's 4-foot two point shot
## 1428                 Sabrina Ionescu makes 32-foot three pointer (Kylee Shook assists)
## 1429                             Crystal Dangerfield misses 26-foot step back jumpshot
## 1430                                     Betnijah Laney makes 17-foot pullup jump shot
## 1431                                 Crystal Dangerfield misses 10-foot two point shot
## 1432         Damiris Dantas makes 12-foot two point shot (Crystal Dangerfield assists)
## 1433                       Betnijah Laney makes 4-foot layup (Sabrina Ionescu assists)
## 1434                                  Damiris Dantas misses 25-foot three point jumper
## 1435                                     Kayla McBride misses 25-foot three point shot
## 1436           Damiris Dantas makes 25-foot three point jumper (Kayla McBride assists)
## 1437                                    Betnijah Laney misses 18-foot pullup jump shot
## 1438                                       Damiris Dantas makes 13-foot two point shot
## 1439                                 Sabrina Ionescu misses 25-foot three point jumper
## 1440           Sylvia Fowles makes 3-foot two point shot (Crystal Dangerfield assists)
## 1441                                 Sabrina Ionescu misses 26-foot three point jumper
## 1442                                   Rachel Banham misses 25-foot three point jumper
## 1443                                              Jessica Shepard makes two point shot
## 1444                                           Jessica Shepard makes free throw 1 of 1
## 1445                                               Jazmine Jones misses 18-foot jumper
## 1446                                                Rachel Banham makes two point shot
## 1447             Betnijah Laney makes 18-foot pullup jump shot (Jazmine Jones assists)
## 1448           Sylvia Fowles makes 2-foot two point shot (Crystal Dangerfield assists)
## 1449                              Michaela Onyenwere misses 25-foot three point jumper
## 1450                                            Rebecca Allen misses free throw 1 of 3
## 1451                                             Rebecca Allen makes free throw 2 of 3
## 1452                                             Rebecca Allen makes free throw 3 of 3
## 1453                                             Sylvia Fowles makes free throw 1 of 2
## 1454                                            Sylvia Fowles misses free throw 2 of 2
## 1455                        DiDi Richards makes 3-foot layup (Sabrina Ionescu assists)
## 1456                                   Rachel Banham misses 39-foot three point jumper
## 1457                       Jazmine Jones blocks Rachel Banham 's 2-foot two point shot
## 1458                                         Crystal Dangerfield misses two point shot
## 1459                                        Kylee Shook misses 7-foot pullup jump shot
## 1460            Sami Whitcomb makes 25-foot three point jumper (Rebecca Allen assists)
## 1461                                        Sylvia Fowles misses 5-foot two point shot
## 1462                                   Kayla McBride misses 22-foot three point jumper
## 1463                                               Rachel Banham misses two point shot
## 1464                        Rachel Banham blocks Jazmine Jones 's 7-foot driving layup
## 1465                                                 Aerial Powers makes driving layup
## 1466                                             Aerial Powers makes free throw 1 of 1
## 1467                                           Sabrina Ionescu makes free throw 1 of 2
## 1468                                           Sabrina Ionescu makes free throw 2 of 2
## 1469                                     Aerial Powers misses 12-foot pullup jump shot
## 1470                                                Sylvia Fowles makes two point shot
## 1471                              Michaela Onyenwere misses 19-foot step back jumpshot
## 1472                                        Aerial Powers misses 4-foot two point shot
## 1473            Sabrina Ionescu makes 24-foot three point jumper (Kylee Shook assists)
## 1474                                             Kayla McBride makes free throw 1 of 3
## 1475                                             Kayla McBride makes free throw 2 of 3
## 1476                                             Kayla McBride makes free throw 3 of 3
## 1477                                       Betnijah Laney makes 13-foot two point shot
## 1478                                  Bridget Carleton misses 14-foot pullup jump shot
## 1479                                         Sylvia Fowles makes 3-foot two point shot
## 1480                                   Kayla McBride misses 24-foot three point jumper
## 1481                                     Sami Whitcomb misses 25-foot three point shot
## 1482                                              Bridget Carleton makes driving layup
## 1483                              Michaela Onyenwere misses 22-foot three point jumper
## 1484                                  Bridget Carleton misses running pullup jump shot
## 1485                                   Sabrina Ionescu misses running pullup jump shot
## 1486                                           Sabrina Ionescu makes free throw 1 of 2
## 1487                                           Sabrina Ionescu makes free throw 2 of 2
## 1488                                          Crystal Dangerfield misses driving layup
## 1489                Sylvia Fowles makes 17-foot two point shot (Aerial Powers assists)
## 1490                        Sami Whitcomb makes 3-foot layup (Sabrina Ionescu assists)
## 1491        Kayla McBride makes 17-foot pullup jump shot (Crystal Dangerfield assists)
## 1492                                   Sami Whitcomb misses 27-foot three point jumper
## 1493                                            Sylvia Fowles misses free throw 1 of 2
## 1494                                             Sylvia Fowles makes free throw 2 of 2
## 1495                   Michaela Onyenwere makes driving layup (Betnijah Laney assists)
## 1496          Kayla McBride makes 24-foot three point jumper (Jessica Shepard assists)
## 1497                              Aerial Powers blocks Sabrina Ionescu 's 4-foot layup
## 1498                                    Sabrina Ionescu makes 12-foot pullup jump shot
## 1499                Sylvia Fowles makes 7-foot two point shot (Damiris Dantas assists)
## 1500                                            Sylvia Fowles misses free throw 1 of 1
## 1501                                     Aerial Powers misses running pullup jump shot
## 1502                                                          Kiah Stokes misses layup
## 1503                                             Sylvia Fowles makes free throw 1 of 2
## 1504                                             Sylvia Fowles makes free throw 2 of 2
## 1505                                  Michaela Onyenwere misses 10-foot two point shot
## 1506                                  Crystal Dangerfield misses 7-foot two point shot
## 1507                     Sabrina Ionescu makes two point shot (Betnijah Laney assists)
## 1508                                      Betnijah Laney misses 11-foot two point shot
## 1509                                    Betnijah Laney misses 11-foot pullup jump shot
## 1510                                               Damiris Dantas misses driving layup
## 1511                   Michaela Onyenwere makes 2-foot layup (Sabrina Ionescu assists)
## 1512                                               Kayla McBride misses 20-foot jumper
## 1513                                                Betnijah Laney makes driving layup
## 1514                                   Aerial Powers misses 25-foot three point jumper
## 1515                                 Sabrina Ionescu misses 17-foot step back jumpshot
## 1516                                               Sylvia Fowles misses 13-foot jumper
## 1517                                     Sabrina Ionescu misses 11-foot two point shot
## 1518                                  Damiris Dantas misses 25-foot three point jumper
## 1519                  Kayla McBride makes two point shot (Crystal Dangerfield assists)
## 1520                                   Sami Whitcomb misses 26-foot three point jumper
## 1521                                        Sylvia Fowles misses 5-foot two point shot
## 1522                                   Rebecca Allen misses 23-foot three point jumper
## 1523                Sabrina Ionescu blocks Bridget Carleton 's 9-foot pullup jump shot
## 1524         Betnijah Laney makes 23-foot three point jumper (Sabrina Ionescu assists)
## 1525                             Crystal Dangerfield misses 28-foot three point jumper
## 1526                                             Rebecca Allen makes free throw 1 of 2
## 1527                                             Rebecca Allen makes free throw 2 of 2
## 1528                                               Sylvia Fowles misses two point shot
## 1529                                           Jessica Shepard makes free throw 1 of 2
## 1530                                           Jessica Shepard makes free throw 2 of 2
## 1531                       Rebecca Allen makes driving layup (Sabrina Ionescu assists)
## 1532                                           Jessica Shepard makes free throw 1 of 2
## 1533                                           Jessica Shepard makes free throw 2 of 2
## 1534            Kylee Shook makes 25-foot three point jumper (Sabrina Ionescu assists)
## 1535                                                 Aerial Powers makes driving layup
## 1536                                     Rebecca Allen misses running pullup jump shot
## 1537                                   Rachel Banham misses 25-foot three point jumper
## 1538                                       Sabrina Ionescu makes 5-foot two point shot
## 1539                                          Sabrina Ionescu misses free throw 1 of 1
## 1540                               Sylvia Fowles makes layup (Jessica Shepard assists)
## 1541            Sabrina Ionescu makes 24-foot three point jumper (Kylee Shook assists)
## 1542                                              Sabrina Ionescu misses driving layup
## 1543                                                   Michaela Onyenwere misses layup
## 1544                                     Aerial Powers misses 10-foot pullup jump shot
## 1545                                               Rebecca Allen misses 21-foot jumper
## 1546                                   Sami Whitcomb misses 25-foot three point jumper
## 1547                                   Kayla McBride misses driving floating jump shot
## 1548                                               Sylvia Fowles misses 17-foot jumper
## 1549                 Rebecca Allen blocks Damiris Dantas 's 25-foot three point jumper
## 1550                                    Damiris Dantas misses 16-foot pullup jump shot
## 1551                                   Rebecca Allen misses 25-foot three point jumper
## 1552                 Kayla McBride makes 9-foot two point shot (Sylvia Fowles assists)
## 1553                                   Jazmine Jones misses 25-foot three point jumper
## 1554                                             Kayla McBride makes free throw 1 of 2
## 1555                                             Kayla McBride makes free throw 2 of 2
## 1556              Sami Whitcomb makes 12-foot two point shot (Sabrina Ionescu assists)
## 1557                 Sylvia Fowles makes 4-foot two point shot (Rachel Banham assists)
## 1558                                              Sabrina Ionescu misses driving layup
## 1559                                     Kayla McBride misses running pullup jump shot
## 1560                                      Rebecca Allen misses 8-foot pullup jump shot
## 1561                        Jazmine Jones makes two point shot (Rebecca Allen assists)
## 1562         Bridget Carleton makes 14-foot pullup jump shot (Jessica Shepard assists)
## 1563          Sami Whitcomb makes 24-foot three point jumper (Sabrina Ionescu assists)
## 1564                                       Damiris Dantas misses 4-foot two point shot
## 1565                         Michaela Onyenwere blocks Jessica Shepard 's 8-foot layup
## 1566                                              Jessica Shepard makes two point shot
## 1567           Sami Whitcomb makes 23-foot three point jumper (Betnijah Laney assists)
## 1568                                                Sylvia Fowles misses driving layup
## 1569     Sabrina Ionescu makes 24-foot three point jumper (Michaela Onyenwere assists)
## 1570                                   Kayla McBride misses 25-foot three point jumper
## 1571     Michaela Onyenwere makes 23-foot three point jumper (Sabrina Ionescu assists)
## 1572                                      Betnijah Laney misses 15-foot two point shot
## 1573                 Sylvia Fowles makes 3-foot two point shot (Aerial Powers assists)
## 1574                                                Betnijah Laney makes driving layup
## 1575                                           Sabrina Ionescu makes free throw 1 of 2
## 1576                                           Sabrina Ionescu makes free throw 2 of 2
## 1577                                                 Sylvia Fowles makes driving layup
## 1578                                   Sami Whitcomb misses 25-foot three point jumper
## 1579                                  Damiris Dantas misses 25-foot three point jumper
## 1580                                   Sami Whitcomb misses 24-foot three point jumper
## 1581                  Rachel Banham makes 17-foot jumper (Crystal Dangerfield assists)
## 1582                                            Betnijah Laney makes free throw 1 of 2
## 1583                                            Betnijah Laney makes free throw 2 of 2
## 1584                             Crystal Dangerfield misses 25-foot three point jumper
## 1585                                             Rachel Banham makes free throw 1 of 2
## 1586                                            Rachel Banham misses free throw 2 of 2
## 1587                  Damiris Dantas blocks Michaela Onyenwere 's 4-foot driving layup
## 1588          Jessica Shepard makes 25-foot three point jumper (Rachel Banham assists)
## 1589                           Kylee Shook makes 3-foot layup (Betnijah Laney assists)
## 1590                                  Damiris Dantas misses 25-foot step back jumpshot
## 1591               Kia Nurse makes 25-foot three point jumper (Brianna Turner assists)
## 1592                                    Tina Charles misses 28-foot three point jumper
## 1593                                      Brittney Griner misses 8-foot two point shot
## 1594                             Kia Nurse misses 24-foot three point pullup jump shot
## 1595                                      Ariel Atkins misses 11-foot pullup jump shot
## 1596                                  Theresa Plaisance misses 9-foot pullup jump shot
## 1597                                         Diana Taurasi makes 25-foot three pointer
## 1598                      Leilani Mitchell misses 27-foot three point pullup jump shot
## 1599                        Brittney Griner makes layup (Skylar Diggins-Smith assists)
## 1600                               Theresa Plaisance misses 28-foot three point jumper
## 1601                      Tina Charles makes two point shot (Leilani Mitchell assists)
## 1602                                             Brittney Griner misses 18-foot jumper
## 1603                     Natasha Cloud makes driving layup (Theresa Plaisance assists)
## 1604                         Natasha Cloud misses 27-foot three point pullup jump shot
## 1605                               Tina Charles makes hook shot (Ariel Atkins assists)
## 1606                            Skylar Diggins-Smith misses 24-foot three point jumper
## 1607                                                 Natasha Cloud makes driving layup
## 1608                Diana Taurasi makes 25-foot three pointer (Brianna Turner assists)
## 1609                                            Diana Taurasi misses free throw 1 of 1
## 1610                        Tina Charles makes 3-foot layup (Leilani Mitchell assists)
## 1611                                             Brittney Griner misses 16-foot jumper
## 1612                                    Tina Charles misses 26-foot three point jumper
## 1613                                           Theresa Plaisance misses 12-foot jumper
## 1614                                       Kia Nurse misses 24-foot three point jumper
## 1615        Skylar Diggins-Smith makes 25-foot three point jumper (Shey Peddy assists)
## 1616                                    Ariel Atkins misses 26-foot three point jumper
## 1617            Ariel Atkins blocks Skylar Diggins-Smith 's 24-foot three point jumper
## 1618                                                Tina Charles misses 22-foot jumper
## 1619                                      Shey Peddy misses driving floating jump shot
## 1620                               Tina Charles makes hook shot (Sydney Wiese assists)
## 1621      Megan Walker makes 25-foot three point jumper (Skylar Diggins-Smith assists)
## 1622                                              Sydney Wiese makes free throw 1 of 2
## 1623                                              Sydney Wiese makes free throw 2 of 2
## 1624                            Erica McCall blocks Shey Peddy 's 7-foot driving layup
## 1625                                              Megan Walker makes free throw 1 of 2
## 1626                                              Megan Walker makes free throw 2 of 2
## 1627                                         Kiara Leslie misses 3-foot two point shot
## 1628                                                         Megan Walker misses layup
## 1629                                              Brianna Turner misses two point shot
## 1630                                   Diana Taurasi misses 25-foot three point jumper
## 1631                               Tina Charles makes layup (Leilani Mitchell assists)
## 1632                                    Megan Walker misses 28-foot three point jumper
## 1633                                                         Megan Walker misses layup
## 1634                                                         Alanna Smith misses layup
## 1635                                                          Alanna Smith makes layup
## 1636                                              Erica McCall makes free throw 1 of 2
## 1637                                              Erica McCall makes free throw 2 of 2
## 1638                                  Leilani Mitchell misses running pullup jump shot
## 1639                                                             Kia Nurse makes layup
## 1640                                   Theresa Plaisance misses 16-foot two point shot
## 1641                                          Brittney Griner misses free throw 1 of 2
## 1642                                           Brittney Griner makes free throw 2 of 2
## 1643                                           Theresa Plaisance misses 20-foot jumper
## 1644                                    Ariel Atkins misses 26-foot three point jumper
## 1645                                       Kia Nurse misses 26-foot three point jumper
## 1646                                    Tina Charles misses 17-foot step back jumpshot
## 1647            Theresa Plaisance blocks Skylar Diggins-Smith 's 2-foot two point shot
## 1648                                      Skylar Diggins-Smith makes free throw 1 of 2
## 1649                                     Skylar Diggins-Smith misses free throw 2 of 2
## 1650                                Brianna Turner blocks Ariel Atkins 's 4-foot layup
## 1651                                  Brittney Griner makes jumper (Kia Nurse assists)
## 1652                                Leilani Mitchell misses 29-foot three point jumper
## 1653                                                 Ariel Atkins misses driving layup
## 1654                                                 Erica McCall makes two point shot
## 1655                                     Brittney Griner misses 10-foot two point shot
## 1656            Ariel Atkins makes 16-foot pullup jump shot (Leilani Mitchell assists)
## 1657                                Leilani Mitchell misses 26-foot three point jumper
## 1658                                      Brittney Griner misses 9-foot two point shot
## 1659                  Natasha Cloud makes 29-foot three pointer (Tina Charles assists)
## 1660                                   Diana Taurasi misses 24-foot three point jumper
## 1661          Diana Taurasi makes 15-foot pullup jump shot (Sophie Cunningham assists)
## 1662                          Tina Charles misses 26-foot three point pullup jump shot
## 1663                                              Tina Charles makes free throw 1 of 2
## 1664                                             Tina Charles misses free throw 2 of 2
## 1665                                        Tina Charles misses 15-foot two point shot
## 1666                                Sophie Cunningham makes layup (Shey Peddy assists)
## 1667                                                Erica McCall misses two point shot
## 1668                                                  Shey Peddy misses two point shot
## 1669                                               Brianna Turner makes two point shot
## 1670                                              Tina Charles makes free throw 1 of 2
## 1671                                              Tina Charles makes free throw 2 of 2
## 1672               Shey Peddy makes 24-foot three point jumper (Diana Taurasi assists)
## 1673                            Erica McCall makes 3-foot layup (Tina Charles assists)
## 1674                                              Alanna Smith makes free throw 1 of 2
## 1675                                             Alanna Smith misses free throw 2 of 2
## 1676                                              Tina Charles makes free throw 1 of 2
## 1677                                              Tina Charles makes free throw 2 of 2
## 1678                                         Tina Charles misses 5-foot two point shot
## 1679                                             Diana Taurasi makes free throw 1 of 2
## 1680                                             Diana Taurasi makes free throw 2 of 2
## 1681              Sydney Wiese makes 27-foot three point jumper (Erica McCall assists)
## 1682                                            Brianna Turner makes free throw 1 of 2
## 1683                                            Brianna Turner makes free throw 2 of 2
## 1684                                      Ariel Atkins misses 18-foot pullup jump shot
## 1685                                                         Tina Charles misses layup
## 1686                                    Alanna Smith misses 25-foot three point jumper
## 1687     Diana Taurasi makes 23-foot three point jumper (Skylar Diggins-Smith assists)
## 1688                                                 Natasha Cloud makes driving layup
## 1689                                       Ariel Atkins makes 13-foot pullup jump shot
## 1690                                      Brittney Griner misses 8-foot two point shot
## 1691                                                       Brittney Griner makes layup
## 1692                                        Tina Charles misses 17-foot two point shot
## 1693                                   Diana Taurasi misses 27-foot three point jumper
## 1694                   Theresa Plaisance makes 6-foot layup (Leilani Mitchell assists)
## 1695                              Brianna Turner makes layup (Brittney Griner assists)
## 1696                                    Ariel Atkins misses 24-foot three point jumper
## 1697                                      Ariel Atkins misses 14-foot pullup jump shot
## 1698                                      Skylar Diggins-Smith makes free throw 1 of 2
## 1699                                      Skylar Diggins-Smith makes free throw 2 of 2
## 1700             Natasha Cloud makes 23-foot three point jumper (Ariel Atkins assists)
## 1701                       Natasha Cloud makes 3-foot layup (Leilani Mitchell assists)
## 1702                                Skylar Diggins-Smith misses 13-foot two point shot
## 1703                                              Tina Charles makes free throw 1 of 2
## 1704                                             Tina Charles misses free throw 2 of 2
## 1705              Diana Taurasi makes 17-foot two point shot (Brittney Griner assists)
## 1706                                           Brittney Griner makes free throw 1 of 2
## 1707                                           Brittney Griner makes free throw 2 of 2
## 1708                  Tina Charles makes 2-foot two point shot (Natasha Cloud assists)
## 1709                                          Brittney Griner misses free throw 1 of 2
## 1710                                           Brittney Griner makes free throw 2 of 2
## 1711                         Natasha Cloud misses 25-foot three point pullup jump shot
## 1712                                    Tina Charles misses 24-foot three point jumper
## 1713                           Brittney Griner makes layup (Sophie Cunningham assists)
## 1714                                        Natasha Cloud misses 7-foot two point shot
## 1715         Brianna Turner makes 4-foot two point shot (Skylar Diggins-Smith assists)
## 1716                                         Erica McCall misses 4-foot two point shot
## 1717                                                         Ariel Atkins misses layup
## 1718             Ariel Atkins makes 24-foot three point jumper (Natasha Cloud assists)
## 1719                                                 Diana Taurasi makes driving layup
## 1720                                           Sydney Wiese makes technical free throw
## 1721                        Erica McCall makes 3-foot layup (Leilani Mitchell assists)
## 1722                 Kia Nurse makes 27-foot three point jumper (Alanna Smith assists)
## 1723                                  Shavonte Zellous misses 19-foot pullup jump shot
## 1724                               Sophie Cunningham misses 26-foot three point jumper
## 1725                                 Sophie Cunningham makes layup (Kia Nurse assists)
## 1726                                         Sophie Cunningham makes free throw 1 of 1
## 1727                                                     Shavonte Zellous misses layup
## 1728                       Sophie Cunningham makes two point shot (Shey Peddy assists)
## 1729                                Leilani Mitchell misses 25-foot three point jumper
## 1730                                              Sydney Wiese makes free throw 1 of 2
## 1731                                              Sydney Wiese makes free throw 2 of 2
## 1732                             Theresa Plaisance blocks Alanna Smith 's 6-foot layup
## 1733                                            Alanna Smith misses three point jumper
## 1734                Alanna Smith makes 28-foot three point jumper (Shey Peddy assists)
## 1735                                   Natasha Cloud misses 24-foot three point jumper
## 1736                               Brittney Griner blocks Tina Charles 's 2-foot layup
## 1737                                   Natasha Cloud misses 25-foot three point jumper
## 1738                                    Alanna Smith misses 26-foot three point jumper
## 1739                                              Kia Nurse makes technical free throw
## 1740                                       Kia Nurse misses 29-foot three point jumper
## 1741           Sophie Cunningham makes 26-foot three point jumper (Shey Peddy assists)
## 1742              Ariel Atkins makes 27-foot three point jumper (Tina Charles assists)
## 1743                                           Brittney Griner misses 6-foot hook shot
## 1744                          Ariel Atkins misses 24-foot three point pullup jump shot
## 1745                                              Ariel Atkins makes free throw 1 of 2
## 1746                                              Ariel Atkins makes free throw 2 of 2
## 1747                                                      Brittney Griner misses layup
## 1748                                    Ariel Atkins misses 25-foot three point jumper
## 1749                                                 Ariel Atkins misses 7-foot jumper
## 1750                                                    Theresa Plaisance misses layup
## 1751                                    Ariel Atkins misses 27-foot three point jumper
## 1752                                        Kia Nurse makes 27-foot three point jumper
## 1753                                              Tina Charles makes free throw 1 of 2
## 1754                                              Tina Charles makes free throw 2 of 2
## 1755                                      Skylar Diggins-Smith makes free throw 1 of 2
## 1756                                      Skylar Diggins-Smith makes free throw 2 of 2
## 1757                                                 Natasha Cloud makes driving layup
## 1758                               Theresa Plaisance misses 25-foot three point jumper
## 1759                                    Megan Walker misses 30-foot three point jumper
## 1760                               Theresa Plaisance misses 23-foot three point jumper
## 1761                                          Skylar Diggins-Smith makes driving layup
## 1762                        Brianna Turner blocks Tina Charles 's 7-foot driving layup
## 1763                                                          Tina Charles makes layup
## 1764                                        Tina Charles misses 13-foot two point shot
## 1765                              Brittney Griner makes layup (Brianna Turner assists)
## 1766                                    Sydney Wiese misses 25-foot three point jumper
## 1767               Brianna Turner makes alley oop layup (Skylar Diggins-Smith assists)
## 1768                                             Natasha Cloud makes free throw 1 of 2
## 1769                                             Natasha Cloud makes free throw 2 of 2
## 1770                                         Sophie Cunningham makes free throw 1 of 2
## 1771                                         Sophie Cunningham makes free throw 2 of 2
## 1772                                  Shavonte Zellous misses 16-foot pullup jump shot
## 1773                           Cierra Burdick makes driving layup (Shey Peddy assists)
## 1774                                                Alanna Smith misses two point shot
## 1775                                      Kiara Leslie misses 20-foot pullup jump shot
## 1776                               Sophie Cunningham misses 25-foot three point jumper
## 1777                                    Alanna Smith misses 28-foot three point jumper
## 1778                    Liz Cambage makes 8-foot two point shot (Chelsea Gray assists)
## 1779                             Katie Lou Samuelson misses 28-foot three point jumper
## 1780                                   Chelsea Gray makes jumper (A'ja Wilson assists)
## 1781                                                  Jewell Loyd makes 21-foot jumper
## 1782                                    A'ja Wilson makes layup (Chelsea Gray assists)
## 1783                                 Breanna Stewart misses 25-foot three point jumper
## 1784                                     Jewell Loyd misses 23-foot three point jumper
## 1785                                    Riquna Williams makes 18-foot pullup jump shot
## 1786                                              Jackie Young makes free throw 1 of 2
## 1787                                              Jackie Young makes free throw 2 of 2
## 1788                                     Jewell Loyd misses 19-foot step back jumpshot
## 1789                                                  Liz Cambage misses 8-foot jumper
## 1790                    Breanna Stewart makes 8-foot two point shot (Sue Bird assists)
## 1791                                                 A'ja Wilson misses two point shot
## 1792                                                 Jackie Young misses 6-foot jumper
## 1793                                              Jackie Young makes free throw 1 of 2
## 1794                                              Jackie Young makes free throw 2 of 2
## 1795                                  A'ja Wilson blocks Ezi Magbegor's two point shot
## 1796                                                 Chelsea Gray makes 18-foot jumper
## 1797                                Katie Lou Samuelson makes 13-foot pullup jump shot
## 1798                                      A'ja Wilson misses 8-foot step back jumpshot
## 1799                       Breanna Stewart makes three point jumper (Sue Bird assists)
## 1800                                              Jackie Young makes free throw 1 of 2
## 1801                                              Jackie Young makes free throw 2 of 2
## 1802        Katie Lou Samuelson makes 23-foot three point jumper (Jewell Loyd assists)
## 1803                     Breanna Stewart makes 14-foot jumper (Candice Dupree assists)
## 1804                                              Jackie Young makes free throw 1 of 2
## 1805                                              Jackie Young makes free throw 2 of 2
## 1806                                                 Jewell Loyd misses 10-foot jumper
## 1807                     Breanna Stewart blocks Dearica Hamby 's 3-foot two point shot
## 1808                                 Breanna Stewart misses 24-foot three point jumper
## 1809                                   Dearica Hamby misses 24-foot three point jumper
## 1810                   A'ja Wilson makes 9-foot two point shot (Dearica Hamby assists)
## 1811                                               A'ja Wilson makes free throw 1 of 1
## 1812                                      Kelsey Plum makes 24-foot step back jumpshot
## 1813                                              Jewell Loyd misses free throw 1 of 2
## 1814                                              Jewell Loyd misses free throw 2 of 2
## 1815               Chelsea Gray makes 24-foot three point jumper (Kelsey Plum assists)
## 1816                                   Liz Cambage blocks Jewell Loyd 's 4-foot jumper
## 1817                                                  Kelsey Plum misses 8-foot jumper
## 1818                                Stephanie Talbot misses 25-foot three point jumper
## 1819                                                   Liz Cambage makes 4-foot jumper
## 1820                                  Dearica Hamby makes layup (Chelsea Gray assists)
## 1821                                  Liz Cambage blocks Jewell Loyd 's 13-foot jumper
## 1822                                     Kelsey Plum misses 24-foot three point jumper
## 1823                                             Breanna Stewart misses two point shot
## 1824                                                        Jackie Young misses jumper
## 1825                                              Stephanie Talbot makes driving layup
## 1826                                         A'ja Wilson misses 14-foot two point shot
## 1827                                               Jordin Canada misses 20-foot jumper
## 1828                                       Jackie Young makes 12-foot pullup jump shot
## 1829                    Candice Dupree makes 21-foot jumper (Stephanie Talbot assists)
## 1830                                   Dearica Hamby makes layup (A'ja Wilson assists)
## 1831                                              Candice Dupree misses 11-foot jumper
## 1832                        A'ja Wilson makes two point shot (Riquna Williams assists)
## 1833                                  Candice Dupree misses 24-foot three point jumper
## 1834                                 Breanna Stewart misses 18-foot step back jumpshot
## 1835                                    Jackie Young misses 24-foot three point jumper
## 1836                                          A'ja Wilson misses 8-foot two point shot
## 1837                                 Breanna Stewart misses 25-foot three point jumper
## 1838                                     A'ja Wilson makes layup (Kelsey Plum assists)
## 1839                                     Kelsey Plum misses 24-foot three point jumper
## 1840    Katie Lou Samuelson makes 27-foot three point jumper (Breanna Stewart assists)
## 1841                                 Riquna Williams misses 31-foot three point jumper
## 1842                                                      Breanna Stewart misses layup
## 1843                                                       Candice Dupree misses layup
## 1844                                        Sue Bird misses 25-foot three point jumper
## 1845                                                 Ezi Magbegor misses 3-foot jumper
## 1846                                  A'ja Wilson blocks Ezi Magbegor 's 3-foot jumper
## 1847                                Breanna Stewart makes layup (Ezi Magbegor assists)
## 1848                                               A'ja Wilson makes free throw 1 of 2
## 1849                                              A'ja Wilson misses free throw 2 of 2
## 1850                                         Chelsea Gray blocks Ezi Magbegor's jumper
## 1851                                                 A'ja Wilson misses 16-foot jumper
## 1852                                        Sue Bird misses 28-foot three point jumper
## 1853                                     Jewell Loyd misses 26-foot three point jumper
## 1854                                          A'ja Wilson misses 7-foot two point shot
## 1855           Riquna Williams makes 24-foot three point jumper (Chelsea Gray assists)
## 1856                                   Ezi Magbegor makes jumper (Jewell Loyd assists)
## 1857                                                Chelsea Gray misses 20-foot jumper
## 1858                                                Jackie Young misses 11-foot jumper
## 1859                                          Ezi Magbegor makes 5-foot two point shot
## 1860                                   Jewell Loyd blocks A'ja Wilson 's 8-foot jumper
## 1861                            Ezi Magbegor makes driving layup (Jewell Loyd assists)
## 1862                                                  Chelsea Gray makes 2-foot jumper
## 1863                                       Ezi Magbegor makes layup (Sue Bird assists)
## 1864                                                  A'ja Wilson misses 5-foot jumper
## 1865                                     Jewell Loyd misses 18-foot step back jumpshot
## 1866                                                  Jewell Loyd makes 18-foot jumper
## 1867                                      Jewell Loyd makes 18-foot step back jumpshot
## 1868                                               Jewell Loyd makes free throw 1 of 2
## 1869                                               Jewell Loyd makes free throw 2 of 2
## 1870                                     Liz Cambage makes layup (A'ja Wilson assists)
## 1871                                      Jewell Loyd makes 25-foot three point jumper
## 1872                     Liz Cambage makes 3-foot two point shot (A'ja Wilson assists)
## 1873                                           Breanna Stewart makes free throw 1 of 2
## 1874                                           Breanna Stewart makes free throw 2 of 2
## 1875                                              Jackie Young makes free throw 1 of 2
## 1876                                              Jackie Young makes free throw 2 of 2
## 1877                                          Jewell Loyd misses 6-foot two point shot
## 1878           Breanna Stewart makes 24-foot three point jumper (Ezi Magbegor assists)
## 1879                                    Chelsea Gray misses 15-foot step back jumpshot
## 1880                                                         Ezi Magbegor misses layup
## 1881            Riquna Williams makes 27-foot three point jumper (Liz Cambage assists)
## 1882                                    Ezi Magbegor misses 23-foot three point jumper
## 1883                                 Riquna Williams misses 24-foot three point jumper
## 1884                                           Liz Cambage makes 3-foot jump bank shot
## 1885         Breanna Stewart makes 3-foot two point shot (Katie Lou Samuelson assists)
## 1886                                      Breanna Stewart makes 15-foot two point shot
## 1887                                                Jackie Young misses 12-foot jumper
## 1888                                              Breanna Stewart misses 3-foot jumper
## 1889                                 Breanna Stewart misses 25-foot three point jumper
## 1890                                                Jackie Young misses 16-foot jumper
## 1891                                           Breanna Stewart makes free throw 1 of 2
## 1892                                           Breanna Stewart makes free throw 2 of 2
## 1893                           A'ja Wilson makes 16-foot jumper (Chelsea Gray assists)
## 1894                                          Jewell Loyd makes 12-foot two point shot
## 1895                                                        Dearica Hamby misses layup
## 1896                                                     Breanna Stewart misses jumper
## 1897                    A'ja Wilson makes 2-foot two point shot (Chelsea Gray assists)
## 1898                                     Jewell Loyd misses 24-foot three point jumper
## 1899                                          Jackie Young makes 6-foot two point shot
## 1900                                               Jewell Loyd makes free throw 1 of 2
## 1901                                               Jewell Loyd makes free throw 2 of 2
## 1902                                    Chelsea Gray misses 26-foot three point jumper
## 1903                                                Jordin Canada makes 20-foot jumper
## 1904                              Breanna Stewart blocks Jackie Young 's 9-foot jumper
## 1905                                       Jackie Young makes 13-foot pullup jump shot
## 1906                                           Katie Lou Samuelson makes driving layup
## 1907                                     Liz Cambage misses 25-foot three point jumper
## 1908                                                         Dearica Hamby makes layup
## 1909                                 Breanna Stewart misses 24-foot three point jumper
## 1910                                             Riquna Williams misses 21-foot jumper
## 1911   Katie Lou Samuelson makes 39-foot three point jumper (Stephanie Talbot assists)
## 1912                                               Liz Cambage makes free throw 1 of 2
## 1913                                              Liz Cambage misses free throw 2 of 2
## 1914                                          Katie Lou Samuelson misses 9-foot jumper
## 1915                                                 Kelsey Plum misses 10-foot jumper
## 1916                            Liz Cambage makes 2-foot jumper (Jackie Young assists)
## 1917                                     Jewell Loyd misses 24-foot three point jumper
## 1918                            Kelsey Plum makes driving layup (Jackie Young assists)
## 1919                                   Jordin Canada misses 24-foot three point jumper
## 1920                     Liz Cambage makes 4-foot jump bank shot (Kelsey Plum assists)
## 1921                                               Liz Cambage makes free throw 1 of 1
## 1922                                                 Jordin Canada makes 4-foot jumper
## 1923                                      Kelsey Plum makes 28-foot three point jumper
## 1924                                               Jordin Canada misses 19-foot jumper
## 1925                                  Ezi Magbegor blocks A'ja Wilson 's 4-foot jumper
## 1926                               Breanna Stewart makes layup (Jordin Canada assists)
## 1927                               A'ja Wilson makes hook shot (Dearica Hamby assists)
## 1928                                   Jordin Canada misses 23-foot three point jumper
## 1929                               Dearica Hamby makes layup (Riquna Williams assists)
## 1930                                              Breanna Stewart makes 13-foot jumper
## 1931                                      Kelsey Plum makes 19-foot step back jumpshot
## 1932                                        Jewell Loyd makes layup (Sue Bird assists)
## 1933                       Jackie Young makes 19-foot jumper (Riquna Williams assists)
## 1934                  Ezi Magbegor makes 24-foot three point jumper (Sue Bird assists)
## 1935                     Breanna Stewart makes hook shot (Katie Lou Samuelson assists)
## 1936                                               A'ja Wilson makes free throw 1 of 2
## 1937                                               A'ja Wilson makes free throw 2 of 2
## 1938                                                 Jewell Loyd misses 16-foot jumper
## 1939                                           Liz Cambage makes 4-foot two point shot
## 1940                                             Breanna Stewart misses 17-foot jumper
## 1941                                     Kelsey Plum misses 25-foot three point jumper
## 1942                                                         Ezi Magbegor misses layup
## 1943                                                          Ezi Magbegor makes layup
## 1944                           Chelsea Gray makes 12-foot jumper (A'ja Wilson assists)
## 1945                                           A'ja Wilson blocks Ezi Magbegor's layup
## 1946                                             Ezi Magbegor misses free throw 1 of 2
## 1947                                              Ezi Magbegor makes free throw 2 of 2
## 1948              Jackie Young makes 23-foot three point jumper (Chelsea Gray assists)
## 1949                                   Liz Cambage blocks Jewell Loyd 's 5-foot jumper
## 1950                        Riquna Williams makes 19-foot jumper (Emma Cannon assists)
## 1951                                  Kiana Williams misses 24-foot three point jumper
## 1952                                    Kennedy Burke makes 20-foot step back jumpshot
## 1953                                     Astou Ndour blocks Elizabeth Williams's layup
## 1954                           Ruthy Hebard blocks Elizabeth Williams's two point shot
## 1955                                        Diamond DeShields misses free throw 1 of 2
## 1956                                         Diamond DeShields makes free throw 2 of 2
## 1957                   Kahleah Copper makes two point shot (Diamond DeShields assists)
## 1958                                                 Ruthy Hebard misses 9-foot jumper
## 1959                                                 Ruthy Hebard makes two point shot
## 1960                                               Kahleah Copper makes two point shot
## 1961                                   Diamond DeShields misses 17-foot two point shot
## 1962  Chennedy Carter makes 5-foot driving floating jump shot (Tianna Hawkins assists)
## 1963                                                        Ruthy Hebard misses jumper
## 1964                                  Tianna Hawkins misses 24-foot three point jumper
## 1965                    Astou Ndour makes driving layup (Courtney Vandersloot assists)
## 1966                                 Courtney Williams misses 21-foot pullup jump shot
## 1967                          Elizabeth Williams makes layup (Chennedy Carter assists)
## 1968                  Elizabeth Williams blocks Kahleah Copper 's 5-foot driving layup
## 1969                                        Courtney Vandersloot misses two point shot
## 1970                                              Chennedy Carter misses driving layup
## 1971                            Courtney Vandersloot misses 24-foot three point jumper
## 1972                                                Ruthy Hebard misses two point shot
## 1973                                           Courtney Williams misses 23-foot jumper
## 1974                                          Courtney Vandersloot makes driving layup
## 1975                                 Astou Ndour blocks Tianna Hawkins's driving layup
## 1976                              Tianna Hawkins makes layup (Chennedy Carter assists)
## 1977           Ruthy Hebard makes 11-foot jump bank shot (Brittany Boyd-Jones assists)
## 1978                                              Chennedy Carter makes two point shot
## 1979                                     Astou Ndour misses 26-foot three point jumper
## 1980                                 Diamond DeShields misses 17-foot pullup jump shot
## 1981                                                 Astou Ndour misses two point shot
## 1982                                    Odyssey Sims misses 23-foot three point jumper
## 1983                     Diamond DeShields misses 23-foot three point pullup jump shot
## 1984                                             Odyssey Sims misses free throw 1 of 2
## 1985                                              Odyssey Sims makes free throw 2 of 2
## 1986                         Kahleah Copper makes driving layup (Ruthy Hebard assists)
## 1987                                         Monique Billings misses free throw 1 of 2
## 1988                                         Monique Billings misses free throw 2 of 2
## 1989                                                Odyssey Sims misses two point shot
## 1990                                                 Courtney Williams misses tip shot
## 1991                                                Odyssey Sims misses two point shot
## 1992                                   Stephanie Watts misses running pullup jump shot
## 1993                                                 Ruthy Hebard makes two point shot
## 1994                                                Aari McDonald misses driving layup
## 1995                                  Kahleah Copper misses 23-foot three point jumper
## 1996                       Odyssey Sims makes pullup jump shot (Aari McDonald assists)
## 1997                 Kahleah Copper makes driving layup (Courtney Vandersloot assists)
## 1998       Courtney Vandersloot makes 14-foot jump bank shot (Stephanie Watts assists)
## 1999                                         Courtney Williams makes free throw 1 of 2
## 2000                                        Courtney Williams misses free throw 2 of 2
## 2001                  Ruthy Hebard makes 16-foot jumper (Courtney Vandersloot assists)
## 2002                                          Courtney Vandersloot makes driving layup
## 2003                                 Ruthy Hebard blocks Tiffany Hayes's driving layup
## 2004      Crystal Bradford makes 24-foot three point jumper (Monique Billings assists)
## 2005                              Courtney Vandersloot misses 12-foot pullup jump shot
## 2006                                      Courtney Vandersloot makes free throw 1 of 2
## 2007                                      Courtney Vandersloot makes free throw 2 of 2
## 2008                         Aari McDonald misses 24-foot three point pullup jump shot
## 2009                                            Diamond DeShields misses driving layup
## 2010                                                       Astou Ndour misses tip shot
## 2011                                                       Astou Ndour misses tip shot
## 2012                                               Astou Ndour makes free throw 1 of 2
## 2013                                               Astou Ndour makes free throw 2 of 2
## 2014                       Astou Ndour makes three point jumper (Ruthy Hebard assists)
## 2015                                           Elizabeth Williams misses driving layup
## 2016                                            Kahleah Copper makes free throw 1 of 2
## 2017                                            Kahleah Copper makes free throw 2 of 2
## 2018                                                Tiffany Hayes misses driving layup
## 2019                   Kahleah Copper makes two point shot (Diamond DeShields assists)
## 2020                                            Kahleah Copper makes free throw 1 of 1
## 2021                                               Tiffany Hayes misses two point shot
## 2022                                       Elizabeth Williams misses free throw 1 of 2
## 2023                                       Elizabeth Williams misses free throw 2 of 2
## 2024                                       Brittany Boyd-Jones makes free throw 1 of 2
## 2025                                      Brittany Boyd-Jones misses free throw 2 of 2
## 2026                                                Tiffany Hayes misses driving layup
## 2027                                           Elizabeth Williams makes two point shot
## 2028                                 Diamond DeShields misses 18-foot pullup jump shot
## 2029                                   Tiffany Hayes misses 24-foot three point jumper
## 2030                      Monique Billings blocks Natasha Mack 's 2-foot driving layup
## 2031                          Courtney Williams makes 15-foot running pullup jump shot
## 2032                       Monique Billings blocks Brittany Boyd-Jones's driving layup
## 2033                                           Courtney Williams misses two point shot
## 2034                                                  Monique Billings misses tip shot
## 2035                                         Ruthy Hebard misses 9-foot two point shot
## 2036                                       Elizabeth Williams misses free throw 1 of 2
## 2037                                        Elizabeth Williams makes free throw 2 of 2
## 2038                           Natasha Mack makes layup (Courtney Vandersloot assists)
## 2039                                       Elizabeth Williams misses free throw 1 of 2
## 2040                                       Elizabeth Williams misses free throw 2 of 2
## 2041                                                Ruthy Hebard misses 11-foot jumper
## 2042         Ruthy Hebard blocks Courtney Williams 's 16-foot running pullup jump shot
## 2043                            Courtney Vandersloot misses 25-foot three point jumper
## 2044                    Courtney Williams makes two point shot (Aari McDonald assists)
## 2045                                          Courtney Vandersloot makes driving layup
## 2046                                   Crystal Bradford makes 12-foot pullup jump shot
## 2047                                               Aari McDonald misses two point shot
## 2048                                             Crystal Bradford makes two point shot
## 2049                                             Astou Ndour misses three point jumper
## 2050                                          Ruthy Hebard makes 8-foot two point shot
## 2051                            Courtney Vandersloot misses driving floating jump shot
## 2052                                              Ruthy Hebard makes free throw 1 of 2
## 2053                                              Ruthy Hebard makes free throw 2 of 2
## 2054                                 Courtney Williams misses 15-foot pullup jump shot
## 2055                                    Kahleah Copper misses 17-foot pullup jump shot
## 2056                                  Courtney Williams makes 19-foot pullup jump shot
## 2057                                               Chennedy Carter makes driving layup
## 2058                                          Diamond DeShields makes pullup jump shot
## 2059                                               Chennedy Carter makes driving layup
## 2060                 Elizabeth Williams makes 1-foot layup (Courtney Williams assists)
## 2061                            Kahleah Copper makes layup (Diamond DeShields assists)
## 2062                                  Tianna Hawkins misses 25-foot three point jumper
## 2063                                   Chennedy Carter misses 16-foot pullup jump shot
## 2064                                              Kahleah Copper misses two point shot
## 2065      Kahleah Copper makes 13-foot pullup jump shot (Courtney Vandersloot assists)
## 2066                                   Tiffany Hayes misses driving floating jump shot
## 2067                                              Ruthy Hebard makes free throw 1 of 2
## 2068                                              Ruthy Hebard makes free throw 2 of 2
## 2069                                                Tiffany Hayes misses driving layup
## 2070                                          Stephanie Watts misses free throw 1 of 2
## 2071                                           Stephanie Watts makes free throw 2 of 2
## 2072                                           Diamond DeShields misses two point shot
## 2073                         Courtney Williams makes 5-foot driving floating jump shot
## 2074                                        Courtney Williams misses free throw 1 of 1
## 2075                                              Ruthy Hebard makes free throw 1 of 2
## 2076                                             Ruthy Hebard misses free throw 2 of 2
## 2077                                                        Tiffany Hayes misses layup
## 2078                                            Courtney Williams makes 19-foot jumper
## 2079                            Courtney Vandersloot misses 24-foot three point jumper
## 2080                                             Courtney Williams makes driving layup
## 2081                                                           Astou Ndour makes layup
## 2082                                   Chennedy Carter misses 20-foot pullup jump shot
## 2083                                         Diamond DeShields makes free throw 1 of 2
## 2084                                         Diamond DeShields makes free throw 2 of 2
## 2085                   Monique Billings makes 13-foot jumper (Chennedy Carter assists)
## 2086                                              Ruthy Hebard misses 6-foot hook shot
## 2087                                           Chennedy Carter makes free throw 1 of 2
## 2088                                           Chennedy Carter makes free throw 2 of 2
## 2089                                  Tianna Hawkins misses 25-foot three point jumper
## 2090                                         Diamond DeShields makes free throw 1 of 2
## 2091                                         Diamond DeShields makes free throw 2 of 2
## 2092                                     Diamond DeShields misses technical free throw
## 2093                                        Courtney Williams misses free throw 1 of 2
## 2094                                         Courtney Williams makes free throw 2 of 2
## 2095                        Chennedy Carter makes driving layup (Odyssey Sims assists)
## 2096                              Ruthy Hebard makes layup (Diamond DeShields assists)
## 2097      Courtney Williams makes 23-foot three point jumper (Chennedy Carter assists)
## 2098                                           Chennedy Carter makes free throw 1 of 2
## 2099                                           Chennedy Carter makes free throw 2 of 2
## 2100                                                   Diamond DeShields misses jumper
## 2101                                              Stephanie Watts misses driving layup
## 2102                   Courtney Williams makes driving layup (Chennedy Carter assists)
## 2103                                 Stephanie Watts misses 24-foot three point jumper
## 2104                                Crystal Bradford misses 25-foot step back jumpshot
## 2105                                 Chennedy Carter misses driving floating jump shot
## 2106                                    Odyssey Sims misses 23-foot three point jumper
## 2107                                    Ruthy Hebard misses 24-foot three point jumper
## 2108                                             Monique Billings misses driving layup
## 2109                                                         Ruthy Hebard misses layup
## 2110                                    Odyssey Sims misses driving floating jump shot
## 2111                                             Ruthy Hebard misses free throw 1 of 2
## 2112                                              Ruthy Hebard makes free throw 2 of 2
## 2113        Courtney Williams makes 25-foot three point jumper (Tiffany Hayes assists)
## 2114                                              Kahleah Copper misses two point shot
## 2115                                Crystal Bradford misses 25-foot three point jumper
## 2116                                            Diamond DeShields makes two point shot
## 2117                                              Chennedy Carter makes 18-foot jumper
## 2118                   Chennedy Carter makes two point shot (Crystal Bradford assists)
## 2119                                           Chennedy Carter makes free throw 1 of 1
## 2120                                 Courtney Williams misses running pullup jump shot
## 2121                                   Chennedy Carter misses 19-foot pullup jump shot
## 2122                         Kahleah Copper makes driving layup (Ruthy Hebard assists)
## 2123                                            Kahleah Copper makes free throw 1 of 1
## 2124        Tiffany Hayes makes 24-foot three point jumper (Courtney Williams assists)
## 2125                                  Kahleah Copper misses 23-foot three point jumper
## 2126             Crystal Bradford makes 26-foot jump bank shot (Tiffany Hayes assists)
## 2127                                             Crystal Bradford misses driving layup
## 2128                                         Monique Billings misses free throw 1 of 2
## 2129                                          Monique Billings makes free throw 2 of 2
## 2130                                 Stephanie Watts misses 24-foot three point jumper
## 2131                               Courtney Williams misses 24-foot three point jumper
## 2132                    Kahleah Copper makes driving layup (Diamond DeShields assists)
## 2133                                   Chennedy Carter misses 20-foot pullup jump shot
## 2134                                           Kahleah Copper misses free throw 1 of 2
## 2135                                            Kahleah Copper makes free throw 2 of 2
## 2136                           Tiffany Hayes blocks Diamond DeShields's two point shot
## 2137                           Crystal Bradford blocks Kahleah Copper 's 15-foot layup
## 2138                                            Monique Billings misses two point shot
## 2139                                             Tiffany Hayes makes free throw 1 of 2
## 2140                                             Tiffany Hayes makes free throw 2 of 2
## 2141                            Astou Ndour makes layup (Courtney Vandersloot assists)
## 2142                                               Astou Ndour makes free throw 1 of 1
## 2143           Astou Ndour makes 11-foot two point shot (Courtney Vandersloot assists)
## 2144        Courtney Williams makes 18-foot pullup jump shot (Chennedy Carter assists)
## 2145                                   Courtney Williams blocks Kahleah Copper's layup
## 2146                               Astou Ndour blocks Monique Billings 's 6-foot layup
## 2147                            Monique Billings blocks Kahleah Copper's driving layup
## 2148   Diamond DeShields makes 14-foot pullup jump shot (Courtney Vandersloot assists)
## 2149                                                Tiffany Hayes misses driving layup
## 2150                                                   Chennedy Carter misses tip shot
## 2151                                               Astou Ndour makes free throw 1 of 2
## 2152                                              Astou Ndour misses free throw 2 of 2
## 2153                                 Courtney Williams misses 14-foot pullup jump shot
## 2154                                             Crystal Bradford makes two point shot
## 2155                                           Stephanie Watts makes free throw 1 of 2
## 2156                                           Stephanie Watts makes free throw 2 of 2
## 2157                                               Chennedy Carter makes driving layup
## 2158                                      Courtney Vandersloot makes free throw 1 of 2
## 2159                                      Courtney Vandersloot makes free throw 2 of 2
## 2160                                               DeWanna Bonner misses driving layup
## 2161                                            Danielle Robinson makes two point shot
## 2162                                        Jonquel Jones misses 9-foot two point shot
## 2163                        DeWanna Bonner makes 3-foot layup (Jasmine Thomas assists)
## 2164                     Jantel Lavender makes 17-foot jumper (Teaira McCowan assists)
## 2165                                  Briann January misses 23-foot three point jumper
## 2166                          Kelsey Mitchell makes 14-foot driving floating jump shot
## 2167                                               Brionna Jones misses 21-foot jumper
## 2168                                  Kelsey Mitchell makes 24-foot step back jumpshot
## 2169           DeWanna Bonner makes 24-foot three point jumper (Jonquel Jones assists)
## 2170                                          Victoria Vivians makes free throw 1 of 2
## 2171                                          Victoria Vivians makes free throw 2 of 2
## 2172                                            Danielle Robinson makes two point shot
## 2173                                    DeWanna Bonner misses 14-foot pullup jump shot
## 2174                                   Jantel Lavender misses 21-foot pullup jump shot
## 2175                        Brionna Jones makes 8-foot jumper (Briann January assists)
## 2176                                              Teaira McCowan misses two point shot
## 2177                                 Brionna Jones makes layup (Jonquel Jones assists)
## 2178                                Victoria Vivians misses 24-foot three point jumper
## 2179                        Briann January misses 24-foot three point pullup jump shot
## 2180          Danielle Robinson makes 24-foot jump bank shot (Jantel Lavender assists)
## 2181                                               Brionna Jones misses two point shot
## 2182                                 Brionna Jones makes layup (Jonquel Jones assists)
## 2183                                               Teaira McCowan misses 8-foot jumper
## 2184                                              Teaira McCowan misses two point shot
## 2185        Natisha Hiedeman makes 23-foot three point jumper (Briann January assists)
## 2186            Teaira McCowan makes 7-foot pullup jump shot (Jantel Lavender assists)
## 2187           Jonquel Jones makes 24-foot three point jumper (Briann January assists)
## 2188                      Victoria Vivians misses 24-foot three point pullup jump shot
## 2189                         Jonquel Jones makes 2-foot layup (DeWanna Bonner assists)
## 2190                                 Danielle Robinson misses 14-foot pullup jump shot
## 2191         Natisha Hiedeman makes 24-foot three point jumper (Brionna Jones assists)
## 2192                                              Jessica Breland misses driving layup
## 2193                                     Danielle Robinson makes 4-foot two point shot
## 2194                                Brionna Jones makes layup (DeWanna Bonner assists)
## 2195                                   Kelsey Mitchell misses 22-foot pullup jump shot
## 2196                                      Natisha Hiedeman makes 1-foot two point shot
## 2197                                 Danielle Robinson misses running pullup jump shot
## 2198                                              Tiffany Mitchell makes driving layup
## 2199                                Natisha Hiedeman misses 23-foot step back jumpshot
## 2200                                 Jessica Breland misses 18-foot step back jumpshot
## 2201                                            Kysre Gondrezick misses two point shot
## 2202                         Brionna Jones makes 7-foot layup (Briann January assists)
## 2203                                 Jessica Breland misses 12-foot step back jumpshot
## 2204                              Jonquel Jones blocks Teaira McCowan's two point shot
## 2205                             DeWanna Bonner makes layup (Natisha Hiedeman assists)
## 2206                                            DeWanna Bonner makes free throw 1 of 1
## 2207                                             Lindsay Allen makes free throw 1 of 2
## 2208                                             Lindsay Allen makes free throw 2 of 2
## 2209           Tiffany Mitchell makes 13-foot two point shot (Jessica Breland assists)
## 2210        Jasmine Thomas makes 23-foot three point jumper (Natisha Hiedeman assists)
## 2211                                Kysre Gondrezick misses 25-foot three point jumper
## 2212           Jonquel Jones makes 23-foot three point jumper (Briann January assists)
## 2213                                   Lindsay Allen misses 24-foot three point jumper
## 2214                         Jasmine Thomas makes 2-foot layup (Jonquel Jones assists)
## 2215                                                     Tiffany Mitchell misses layup
## 2216                                  Jasmine Thomas misses 23-foot three point jumper
## 2217                        Jonquel Jones makes driving layup (Jasmine Thomas assists)
## 2218                                             Natisha Hiedeman makes two point shot
## 2219                                Natisha Hiedeman misses 24-foot three point jumper
## 2220                                                Brionna Jones makes two point shot
## 2221                                            Brionna Jones misses free throw 1 of 1
## 2222           DeWanna Bonner makes 24-foot three point jumper (Jonquel Jones assists)
## 2223                                 Bernadett Hatar misses 14-foot step back jumpshot
## 2224                                           Jantel Lavender makes free throw 1 of 2
## 2225                                          Jantel Lavender misses free throw 2 of 2
## 2226                                    Jasmine Thomas misses 21-foot pullup jump shot
## 2227                                Victoria Vivians misses 24-foot three point jumper
## 2228                                Natisha Hiedeman misses driving floating jump shot
## 2229                                     Kelsey Mitchell misses 19-foot two point shot
## 2230                                          Victoria Vivians makes free throw 1 of 2
## 2231                                          Victoria Vivians makes free throw 2 of 2
## 2232                                  DeWanna Bonner misses 20-foot step back jumpshot
## 2233                  Bernadett Hatar makes two point shot (Danielle Robinson assists)
## 2234                                                      Kelsey Mitchell misses layup
## 2235                                               Bernadett Hatar makes 5-foot jumper
## 2236                                     Bernadett Hatar misses 10-foot two point shot
## 2237                        Brionna Jones makes driving layup (DeWanna Bonner assists)
## 2238                               Danielle Robinson misses 14-foot step back jumpshot
## 2239                                                       Teaira McCowan misses layup
## 2240                            Kelsey Mitchell makes 20-foot running pullup jump shot
## 2241                                              Briann January misses 21-foot jumper
## 2242                                    Briann January misses 22-foot pullup jump shot
## 2243                                Victoria Vivians misses 23-foot three point jumper
## 2244                       Brionna Jones makes 3-foot layup (Natisha Hiedeman assists)
## 2245                       Kelsey Mitchell misses 23-foot three point pullup jump shot
## 2246                                Victoria Vivians misses 26-foot three point jumper
## 2247                    DeWanna Bonner makes two point shot (Natisha Hiedeman assists)
## 2248                                               Kelsey Mitchell makes driving layup
## 2249                         Jonquel Jones makes 3-foot layup (Jasmine Thomas assists)
## 2250                                  Victoria Vivians misses 19-foot pullup jump shot
## 2251                                 Jessica Breland misses 14-foot step back jumpshot
## 2252         Jonquel Jones makes 25-foot three point jumper (Natisha Hiedeman assists)
## 2253                                Tiffany Mitchell misses 20-foot step back jumpshot
## 2254                                                    Teaira McCowan misses tip shot
## 2255                            Tiffany Mitchell makes layup (Kelsey Mitchell assists)
## 2256       Danielle Robinson makes 24-foot three point jumper (Teaira McCowan assists)
## 2257                                  DeWanna Bonner misses 24-foot step back jumpshot
## 2258                        Jasmine Thomas makes driving layup (Kaila Charles assists)
## 2259                                            Jasmine Thomas makes free throw 1 of 1
## 2260         Kaila Charles makes 23-foot three point jumper (Natisha Hiedeman assists)
## 2261                 Teaira McCowan makes 2-foot hook shot (Danielle Robinson assists)
## 2262                       Teaira McCowan blocks Brionna Jones 's 2-foot driving layup
## 2263                                             Jessica Breland misses 19-foot jumper
## 2264                        Jonquel Jones makes 14-foot jumper (Brionna Jones assists)
## 2265                     Kaila Charles blocks Tiffany Mitchell 's 2-foot driving layup
## 2266                                   Kaila Charles misses 24-foot three point jumper
## 2267                              Teaira McCowan makes layup (Jessica Breland assists)
## 2268           Jessica Breland makes 7-foot two point shot (Danielle Robinson assists)
## 2269                                         Natisha Hiedeman misses free throw 1 of 2
## 2270                                         Natisha Hiedeman misses free throw 2 of 2
## 2271                                Natisha Hiedeman misses 26-foot three point jumper
## 2272                            Jessica Breland blocks Stephanie Jones 's 6-foot layup
## 2273                                  Teaira McCowan blocks Stephanie Jones's tip shot
## 2274                             Teaira McCowan blocks Stephanie Jones 's 3-foot layup
## 2275                                            Teaira McCowan makes free throw 1 of 2
## 2276                                            Teaira McCowan makes free throw 2 of 2
## 2277                                        DiJonai Carrington makes free throw 1 of 2
## 2278                                        DiJonai Carrington makes free throw 2 of 2
## 2279                                 Jessica Breland misses 12-foot step back jumpshot
## 2280                 Stephanie Jones makes two point shot (DiJonai Carrington assists)
## 2281                   Stephanie Jones makes 2-foot layup (DiJonai Carrington assists)
## 2282                                      Jessica Breland misses 8-foot two point shot
## 2283                                       Kaila Charles misses 11-foot two point shot
## 2284                                             Bernadett Hatar misses 18-foot jumper
## 2285                                     Kaila Charles misses 16-foot pullup jump shot
## 2286               Beatrice Mompremier makes 3-foot layup (DiJonai Carrington assists)
## 2287                                           DiJonai Carrington misses driving layup
## 2288                                Kysre Gondrezick misses 23-foot three point jumper
## 2289                                 Stephanie Jones misses 25-foot three point jumper
## 2290                                             Natisha Hiedeman makes two point shot
## 2291                                   Lindsay Allen misses driving floating jump shot
## 2292                               Lindsay Allen makes layup (Bernadett Hatar assists)
## 2293                                          Tiffany Mitchell makes free throw 1 of 2
## 2294                                          Tiffany Mitchell makes free throw 2 of 2
## 2295                                                 Beatrice Mompremier misses jumper
## 2296                                   Kysre Gondrezick makes 15-foot pullup jump shot
## 2297                                      Natisha Hiedeman makes 24-foot three pointer
## 2298                                                       Teaira McCowan misses layup
## 2299                                              Natisha Hiedeman makes driving layup
## 2300                     Kaila Charles blocks Tiffany Mitchell 's 2-foot driving layup
## 2301                  Beatrice Mompremier makes two point shot (Kaila Charles assists)
## 2302                               Bernadett Hatar makes layup (Lindsay Allen assists)
## 2303                                Kysre Gondrezick misses 22-foot three point jumper
## 2304                                             Natisha Hiedeman misses driving layup
## 2305                                Natisha Hiedeman misses 24-foot three point jumper
## 2306                     Lindsay Allen makes 14-foot jumper (Kysre Gondrezick assists)
## 2307                                            DiJonai Carrington makes driving layup
## 2308      Kysre Gondrezick makes 23-foot three point jumper (Tiffany Mitchell assists)
## 2309                                Natisha Hiedeman misses 26-foot three point jumper
## 2310                                          Victoria Vivians makes free throw 1 of 2
## 2311                                          Victoria Vivians makes free throw 2 of 2
## 2312                                              Natisha Hiedeman makes driving layup
## 2313                                            Kysre Gondrezick misses 22-foot jumper
## 2314                                          Tiffany Mitchell makes free throw 1 of 2
## 2315                                          Tiffany Mitchell makes free throw 2 of 2
## 2316                                        Sue Bird misses 23-foot three point jumper
## 2317                                 Sylvia Fowles makes layup (Aerial Powers assists)
## 2318                                            Sylvia Fowles misses free throw 1 of 1
## 2319                                  Stephanie Talbot misses 18-foot pullup jump shot
## 2320                   Jewell Loyd makes 23-foot three point jumper (Sue Bird assists)
## 2321               Damiris Dantas makes 15-foot two point shot (Kayla McBride assists)
## 2322           Damiris Dantas makes 25-foot three point jumper (Kayla McBride assists)
## 2323                                                Aerial Powers misses driving layup
## 2324                                Stephanie Talbot misses 24-foot three point jumper
## 2325                                            Sylvia Fowles misses free throw 1 of 2
## 2326                                             Sylvia Fowles makes free throw 2 of 2
## 2327                                   Kayla McBride misses 24-foot three point jumper
## 2328                                 Breanna Stewart misses 24-foot three point jumper
## 2329                                 Sylvia Fowles makes layup (Aerial Powers assists)
## 2330                            Candice Dupree makes 19-foot jumper (Sue Bird assists)
## 2331                                                 Sylvia Fowles makes driving layup
## 2332                                      Breanna Stewart misses 4-foot two point shot
## 2333                   Sue Bird makes 23-foot three point jumper (Jewell Loyd assists)
## 2334                                                Aerial Powers makes 15-foot jumper
## 2335            Jewell Loyd makes 25-foot three point jumper (Breanna Stewart assists)
## 2336              Crystal Dangerfield makes pullup jump shot (Jessica Shepard assists)
## 2337                                              Breanna Stewart misses 9-foot jumper
## 2338                             Candice Dupree blocks Jessica Shepard 's 2-foot layup
## 2339                                              Jessica Shepard makes two point shot
## 2340                                                Jordin Canada misses driving layup
## 2341                                            Damiris Dantas makes free throw 1 of 2
## 2342                                            Damiris Dantas makes free throw 2 of 2
## 2343              Jewell Loyd makes 23-foot three point jumper (Jordin Canada assists)
## 2344                                          Crystal Dangerfield makes two point shot
## 2345               Candice Dupree makes 15-foot pullup jump shot (Jewell Loyd assists)
## 2346                               Sylvia Fowles makes layup (Jessica Shepard assists)
## 2347                  Sylvia Fowles makes 14-foot jumper (Crystal Dangerfield assists)
## 2348                           Jewell Loyd misses 23-foot three point pullup jump shot
## 2349                                               Rachel Banham misses 10-foot jumper
## 2350                                 Jessica Shepard misses 24-foot three point jumper
## 2351                                             Aerial Powers makes free throw 1 of 2
## 2352                                            Aerial Powers misses free throw 2 of 2
## 2353                                               Kennedy Burke misses two point shot
## 2354                                        Kennedy Burke misses 3-foot two point shot
## 2355                                     Jewell Loyd misses 25-foot three point jumper
## 2356                                                        Aerial Powers misses layup
## 2357                                  Jewell Loyd blocks Sylvia Fowles 's 2-foot layup
## 2358                   Crystal Dangerfield makes driving layup (Aerial Powers assists)
## 2359                                    Mercedes Russell misses 10-foot two point shot
## 2360                                                     Sue Bird makes two point shot
## 2361                                               Rachel Banham misses 13-foot jumper
## 2362                                             Jordin Canada makes free throw 1 of 2
## 2363                                             Jordin Canada makes free throw 2 of 2
## 2364                        Sylvia Fowles makes 15-foot jumper (Aerial Powers assists)
## 2365                                                Sue Bird misses three point jumper
## 2366                                  Crystal Dangerfield misses 1-foot two point shot
## 2367                                   Crystal Dangerfield makes 3-foot two point shot
## 2368                                                Jordin Canada makes 10-foot jumper
## 2369                      Bridget Carleton makes 1-foot layup (Damiris Dantas assists)
## 2370                                      Breanna Stewart misses 7-foot two point shot
## 2371                                   Kayla McBride misses 24-foot three point jumper
## 2372                                  Stephanie Talbot misses 20-foot pullup jump shot
## 2373                                               Breanna Stewart makes driving layup
## 2374                                  Damiris Dantas misses 24-foot three point jumper
## 2375                                 Breanna Stewart misses 24-foot step back jumpshot
## 2376     Crystal Dangerfield makes 27-foot three point jumper (Damiris Dantas assists)
## 2377                               Ezi Magbegor blocks Natalie Achonwa's driving layup
## 2378                                             Aerial Powers makes free throw 1 of 2
## 2379                                             Aerial Powers makes free throw 2 of 2
## 2380                                         Jewell Loyd misses 15-foot two point shot
## 2381                                              Candice Dupree misses 20-foot jumper
## 2382            Kayla McBride makes 25-foot three point jumper (Aerial Powers assists)
## 2383                    Candice Dupree makes 19-foot jumper (Stephanie Talbot assists)
## 2384                          Stephanie Talbot blocks Bridget Carleton 's 3-foot layup
## 2385                                              Candice Dupree misses 19-foot jumper
## 2386                                             Aerial Powers makes free throw 1 of 2
## 2387                                            Aerial Powers misses free throw 2 of 2
## 2388                                               Aerial Powers misses 14-foot jumper
## 2389                                        Sylvia Fowles misses 9-foot two point shot
## 2390                  Jewell Loyd makes 7-foot two point shot (Candice Dupree assists)
## 2391                                             Aerial Powers makes free throw 1 of 2
## 2392                                             Aerial Powers makes free throw 2 of 2
## 2393                Sue Bird makes 24-foot three point jumper (Candice Dupree assists)
## 2394                                   Crystal Dangerfield makes 6-foot two point shot
## 2395                               Breanna Stewart makes layup (Kennedy Burke assists)
## 2396                                 Jessica Shepard misses 26-foot three point jumper
## 2397                                               Kayla McBride misses 17-foot jumper
## 2398                                        Sue Bird misses 24-foot three point jumper
## 2399                                                     Sue Bird makes 18-foot jumper
## 2400                                             Sylvia Fowles makes free throw 1 of 2
## 2401                                            Sylvia Fowles misses free throw 2 of 2
## 2402               Breanna Stewart makes 25-foot three point jumper (Sue Bird assists)
## 2403                                                        Sylvia Fowles misses layup
## 2404                                                        Sylvia Fowles misses layup
## 2405                                    Ezi Magbegor misses 23-foot three point jumper
## 2406                                Bridget Carleton misses 26-foot three point jumper
## 2407                             Crystal Dangerfield misses 26-foot three point jumper
## 2408                                      Aerial Powers makes 16-foot pullup jump shot
## 2409                   Jewell Loyd makes 25-foot three point jumper (Sue Bird assists)
## 2410                               Ezi Magbegor makes layup (Stephanie Talbot assists)
## 2411                                                        Aerial Powers misses layup
## 2412                                                        Aerial Powers misses layup
## 2413                                                         Ezi Magbegor misses layup
## 2414                                             Breanna Stewart misses two point shot
## 2415                                   Crystal Dangerfield makes 6-foot two point shot
## 2416                                 Breanna Stewart misses 27-foot three point jumper
## 2417                                         Crystal Dangerfield misses 12-foot jumper
## 2418                                              Breanna Stewart misses driving layup
## 2419                   Sue Bird makes 26-foot three point jumper (Jewell Loyd assists)
## 2420                                 Jessica Shepard misses 25-foot three point jumper
## 2421      Kayla McBride makes 27-foot three point jumper (Crystal Dangerfield assists)
## 2422                                     Jewell Loyd misses 25-foot three point jumper
## 2423                                       Damiris Dantas misses 7-foot two point shot
## 2424                         Crystal Dangerfield makes layup (Jessica Shepard assists)
## 2425                                             Jordin Canada makes free throw 1 of 2
## 2426                                            Jordin Canada misses free throw 2 of 2
## 2427                     Candice Dupree makes 22-foot jumper (Breanna Stewart assists)
## 2428                                     Kayla McBride misses 15-foot pullup jump shot
## 2429                         Jessica Shepard makes layup (Crystal Dangerfield assists)
## 2430                                                   Jewell Loyd makes driving layup
## 2431                                 Breanna Stewart makes layup (Jewell Loyd assists)
## 2432   Crystal Dangerfield makes 24-foot three point jumper (Bridget Carleton assists)
## 2433                                 Jessica Shepard misses 24-foot three point jumper
## 2434                                          Breanna Stewart misses free throw 1 of 2
## 2435                                          Breanna Stewart misses free throw 2 of 2
## 2436                         Sylvia Fowles blocks Jewell Loyd 's 4-foot two point shot
## 2437                                   Kennedy Burke misses 27-foot three point jumper
## 2438                Bridget Carleton makes driving layup (Crystal Dangerfield assists)
## 2439                                             Breanna Stewart misses 18-foot jumper
## 2440                   Crystal Dangerfield makes driving layup (Aerial Powers assists)
## 2441            Kennedy Burke makes 26-foot three point jumper (Jordin Canada assists)
## 2442                        Kennedy Burke blocks Sylvia Fowles 's 4-foot driving layup
## 2443                              Candice Dupree makes 2-foot layup (Sue Bird assists)
## 2444           Sylvia Fowles makes 2-foot two point shot (Crystal Dangerfield assists)
## 2445                                        Sue Bird misses 24-foot three point jumper
## 2446                        Bridget Carleton makes layup (Crystal Dangerfield assists)
## 2447                                             Jordin Canada makes free throw 1 of 2
## 2448                                             Jordin Canada makes free throw 2 of 2
## 2449                                                      Damiris Dantas misses jumper
## 2450                Sue Bird makes 27-foot three point jumper (Candice Dupree assists)
## 2451                                    Sue Bird blocks Rachel Banham 's 8-foot jumper
## 2452                   Sue Bird makes 17-foot pullup jump shot (Jordin Canada assists)
## 2453                                                     Bridget Carleton misses layup
## 2454                                             Jordin Canada makes free throw 1 of 2
## 2455                                             Jordin Canada makes free throw 2 of 2
## 2456                               Sylvia Fowles makes layup (Jessica Shepard assists)
## 2457                                                Jordin Canada misses driving layup
## 2458                               Sylvia Fowles makes layup (Jessica Shepard assists)
## 2459                             Breanna Stewart makes 1-foot layup (Sue Bird assists)
## 2460                                             Jordin Canada makes free throw 1 of 2
## 2461                                             Jordin Canada makes free throw 2 of 2
## 2462                                                 Jordin Canada makes driving layup
## 2463                                            Sylvia Fowles misses free throw 1 of 2
## 2464                                            Sylvia Fowles misses free throw 2 of 2
## 2465                                           Breanna Stewart makes free throw 1 of 2
## 2466                                           Breanna Stewart makes free throw 2 of 2
## 2467                                         Crystal Dangerfield misses two point shot
## 2468                   Jewell Loyd makes 25-foot three point jumper (Sue Bird assists)
## 2469                                   Kayla McBride misses 24-foot three point jumper
## 2470                                   Mercedes Russell makes layup (Sue Bird assists)
## 2471                                  Damiris Dantas misses 24-foot three point jumper
## 2472                                                           Jewell Loyd makes layup
## 2473                                                  Crystal Dangerfield misses layup
## 2474                                             Jordin Canada makes free throw 1 of 2
## 2475                                             Jordin Canada makes free throw 2 of 2
## 2476                                          Bridget Carleton makes free throw 1 of 2
## 2477                                          Bridget Carleton makes free throw 2 of 2
## 2478                                               Jewell Loyd makes free throw 1 of 2
## 2479                                               Jewell Loyd makes free throw 2 of 2
## 2480                                         Bridget Carleton misses free throw 1 of 2
## 2481                                          Bridget Carleton makes free throw 2 of 2
## 2482                                             Jordin Canada makes free throw 1 of 2
## 2483                                            Jordin Canada misses free throw 2 of 2
## 2484                                         Jewell Loyd misses 14-foot two point shot
## 2485                                                  Crystal Dangerfield misses layup
## 2486                                         Sue Bird makes 24-foot three point jumper
## 2487                                   Aerial Powers misses 24-foot step back jumpshot
## 2488                                   Tiffany Hayes misses 23-foot three point jumper
## 2489                                 Kelsey Mitchell misses 24-foot three point jumper
## 2490                                             Chennedy Carter misses two point shot
## 2491                                             Jessica Breland misses 19-foot jumper
## 2492                         Tiffany Hayes misses 26-foot three point pullup jump shot
## 2493                                 Courtney Williams misses 20-foot pullup jump shot
## 2494                                  Chennedy Carter makes 13-foot step back jumpshot
## 2495                                               Tiffany Hayes misses two point shot
## 2496                                            Danielle Robinson misses driving layup
## 2497                                   Chennedy Carter misses 21-foot pullup jump shot
## 2498                                   Kelsey Mitchell misses running pullup jump shot
## 2499                   Tiffany Hayes makes three point jumper (Tianna Hawkins assists)
## 2500                               Danielle Robinson misses 27-foot three point jumper
## 2501                                     Tianna Hawkins blocks Jessica Breland's layup
## 2502                                    Chennedy Carter makes 18-foot pullup jump shot
## 2503                             Teaira McCowan makes layup (Tiffany Mitchell assists)
## 2504                                              Chennedy Carter makes two point shot
## 2505            Kelsey Mitchell makes 1-foot two point shot (Tiffany Mitchell assists)
## 2506                                           Kelsey Mitchell makes free throw 1 of 1
## 2507                                    Courtney Williams misses 5-foot two point shot
## 2508                                    Kelsey Mitchell makes 19-foot pullup jump shot
## 2509        Courtney Williams makes 14-foot pullup jump shot (Chennedy Carter assists)
## 2510                                            Danielle Robinson makes two point shot
## 2511                     Courtney Williams misses 26-foot three point pullup jump shot
## 2512                                                       Teaira McCowan misses layup
## 2513                                   Chennedy Carter misses 19-foot pullup jump shot
## 2514                          Teaira McCowan blocks Elizabeth Williams's driving layup
## 2515                                 Courtney Williams misses 12-foot pullup jump shot
## 2516                                           Danielle Robinson misses two point shot
## 2517                    Jantel Lavender makes 19-foot jumper (Kelsey Mitchell assists)
## 2518                                Kalani Brown makes layup (Chennedy Carter assists)
## 2519                                         Kelsey Mitchell misses three point jumper
## 2520                                                Kalani Brown misses two point shot
## 2521                           Tiffany Mitchell makes 17-foot running pullup jump shot
## 2522                          Bernadett Hatar blocks Monique Billings's two point shot
## 2523                                 Odyssey Sims makes jumper (Tiffany Hayes assists)
## 2524                       Kelsey Mitchell misses 26-foot three point pullup jump shot
## 2525                                         Monique Billings misses free throw 1 of 2
## 2526                                          Monique Billings makes free throw 2 of 2
## 2527                      Jantel Lavender makes 17-foot jumper (Lindsay Allen assists)
## 2528                                                Odyssey Sims misses 18-foot jumper
## 2529                                Tiffany Mitchell misses 27-foot three point jumper
## 2530         Kysre Gondrezick makes 26-foot three point jumper (Lindsay Allen assists)
## 2531                                          Odyssey Sims makes 8-foot two point shot
## 2532         Lindsay Allen makes 23-foot three point jumper (Victoria Vivians assists)
## 2533                      Crystal Bradford misses 28-foot three point pullup jump shot
## 2534                                              Teaira McCowan misses 20-foot jumper
## 2535                                                 Tiffany Hayes makes driving layup
## 2536                                     Lindsay Allen misses 18-foot pullup jump shot
## 2537                  Monique Billings makes two point shot (Crystal Bradford assists)
## 2538                                             Tiffany Hayes makes free throw 1 of 2
## 2539                                             Tiffany Hayes makes free throw 2 of 2
## 2540           Kysre Gondrezick makes 18-foot pullup jump shot (Lindsay Allen assists)
## 2541                                Crystal Bradford misses 23-foot three point jumper
## 2542                             Bernadett Hatar makes layup (Jantel Lavender assists)
## 2543                     Chennedy Carter makes two point shot (Tianna Hawkins assists)
## 2544                    Bernadett Hatar makes 15-foot jumper (Jantel Lavender assists)
## 2545                                           Chennedy Carter makes free throw 1 of 2
## 2546                                           Chennedy Carter makes free throw 2 of 2
## 2547                                  Tianna Hawkins misses 28-foot three point jumper
## 2548                                   Kelsey Mitchell misses 17-foot pullup jump shot
## 2549                                                    Jessica Breland makes tip shot
## 2550                                                Kalani Brown misses 19-foot jumper
## 2551                                          Jessica Breland misses free throw 1 of 2
## 2552                                           Jessica Breland makes free throw 2 of 2
## 2553                       Tiffany Hayes makes driving layup (Chennedy Carter assists)
## 2554                                     Bernadett Hatar misses 11-foot two point shot
## 2555                               Chennedy Carter makes layup (Tiffany Hayes assists)
## 2556                                               Jessica Breland makes 8-foot jumper
## 2557                                               Tianna Hawkins misses driving layup
## 2558                                            Tiffany Hayes misses free throw 1 of 2
## 2559                                             Tiffany Hayes makes free throw 2 of 2
## 2560             Crystal Bradford makes three point jumper (Courtney Williams assists)
## 2561                                 Kelsey Mitchell misses 28-foot three point jumper
## 2562                                             Monique Billings misses driving layup
## 2563                                            Danielle Robinson misses driving layup
## 2564                           Crystal Bradford blocks Jessica Breland's driving layup
## 2565                                                      Jessica Breland makes jumper
## 2566     Courtney Williams makes 23-foot three point jumper (Monique Billings assists)
## 2567                                             Jessica Breland misses 20-foot jumper
## 2568                                             Tiffany Hayes makes free throw 1 of 2
## 2569                                             Tiffany Hayes makes free throw 2 of 2
## 2570                                              Kelsey Mitchell misses driving layup
## 2571                                   Chennedy Carter misses 19-foot pullup jump shot
## 2572                                    Jessica Breland makes 19-foot pullup jump shot
## 2573                                      Chennedy Carter misses 3-foot two point shot
## 2574                                              Chennedy Carter misses driving layup
## 2575          Tiffany Mitchell makes 18-foot pullup jump shot (Teaira McCowan assists)
## 2576                                              Tianna Hawkins misses 20-foot jumper
## 2577                                               Tiffany Hayes misses two point shot
## 2578                    Danielle Robinson makes 3-foot layup (Jessica Breland assists)
## 2579                     Teaira McCowan blocks Chennedy Carter 's 3-foot driving layup
## 2580                       Elizabeth Williams blocks Tiffany Mitchell's two point shot
## 2581                           Tianna Hawkins blocks Danielle Robinson's driving layup
## 2582                                  Kelsey Mitchell makes 15-foot step back jumpshot
## 2583                                        Odyssey Sims misses 11-foot two point shot
## 2584   Courtney Williams makes 25-foot three point jumper (Elizabeth Williams assists)
## 2585     Danielle Robinson makes 25-foot three point jumper (Tiffany Mitchell assists)
## 2586                                    Odyssey Sims misses 27-foot three point jumper
## 2587                                              Tiffany Mitchell makes driving layup
## 2588                               Courtney Williams misses 24-foot three point jumper
## 2589                                              Tianna Hawkins misses two point shot
## 2590                                  Tianna Hawkins misses 23-foot three point jumper
## 2591                  Kelsey Mitchell makes two point shot (Danielle Robinson assists)
## 2592           Odyssey Sims makes driving floating jump shot (Chennedy Carter assists)
## 2593                   Jessica Breland makes 17-foot jumper (Tiffany Mitchell assists)
## 2594                                     Chennedy Carter makes 9-foot pullup jump shot
## 2595                                                   Elizabeth Williams misses layup
## 2596                                   Kelsey Mitchell misses 13-foot pullup jump shot
## 2597                                 Kelsey Mitchell misses 24-foot three point jumper
## 2598                                 Courtney Williams misses 18-foot pullup jump shot
## 2599                                             Jessica Breland misses 17-foot jumper
## 2600                                        Odyssey Sims misses 12-foot two point shot
## 2601      Chennedy Carter makes 26-foot three point jumper (Courtney Williams assists)
## 2602                              Jantel Lavender makes jumper (Lindsay Allen assists)
## 2603        Shekinna Stricklen makes 26-foot three point jumper (Odyssey Sims assists)
## 2604                                    Kelsey Mitchell makes 21-foot pullup jump shot
## 2605    Shekinna Stricklen makes 26-foot three point jumper (Monique Billings assists)
## 2606                                           Bernadett Hatar makes free throw 1 of 2
## 2607                                           Bernadett Hatar makes free throw 2 of 2
## 2608                                           Chennedy Carter makes free throw 1 of 2
## 2609                                          Chennedy Carter misses free throw 2 of 2
## 2610                                             Lindsay Allen makes free throw 1 of 2
## 2611                                            Lindsay Allen misses free throw 2 of 2
## 2612                                Monique Billings misses driving floating jump shot
## 2613                                              Chennedy Carter makes two point shot
## 2614               Kysre Gondrezick makes three point jumper (Kelsey Mitchell assists)
## 2615                           Bernadett Hatar blocks Monique Billings 's 3-foot layup
## 2616                                             Jessica Breland misses 17-foot jumper
## 2617                               Shekinna Stricklen makes 23-foot three point jumper
## 2618                         Lindsay Allen misses 25-foot three point pullup jump shot
## 2619                                                Tiffany Hayes misses driving layup
## 2620                Monique Billings blocks Jessica Breland 's 9-foot pullup jump shot
## 2621                              Shekinna Stricklen misses 27-foot three point jumper
## 2622                                  Kelsey Mitchell makes 23-foot step back jumpshot
## 2623                                      Chennedy Carter misses 4-foot two point shot
## 2624                                            Monique Billings misses two point shot
## 2625                               Bernadett Hatar makes layup (Lindsay Allen assists)
## 2626                                             Tiffany Hayes makes free throw 1 of 2
## 2627                                             Tiffany Hayes makes free throw 2 of 2
## 2628                                          Tiffany Mitchell misses pullup jump shot
## 2629                     Courtney Williams misses 26-foot three point pullup jump shot
## 2630                                 Danielle Robinson misses 17-foot pullup jump shot
## 2631                                                      Bernadett Hatar misses layup
## 2632         Courtney Williams makes 24-foot three point jumper (Odyssey Sims assists)
## 2633                                           Jessica Breland makes free throw 1 of 2
## 2634                                           Jessica Breland makes free throw 2 of 2
## 2635                                             Crystal Bradford misses driving layup
## 2636     Courtney Williams makes 25-foot three point jumper (Crystal Bradford assists)
## 2637                       Kelsey Mitchell misses 26-foot three point pullup jump shot
## 2638     Crystal Bradford makes 26-foot three point jumper (Courtney Williams assists)
## 2639                                            Tiffany Mitchell misses two point shot
## 2640                 Crystal Bradford makes two point shot (Courtney Williams assists)
## 2641                  Chennedy Carter blocks Danielle Robinson 's 2-foot driving layup
## 2642                            Jessica Breland makes layup (Tiffany Mitchell assists)
## 2643                  Monique Billings makes 11-foot jumper (Crystal Bradford assists)
## 2644                                           Kelsey Mitchell makes free throw 1 of 2
## 2645                                           Kelsey Mitchell makes free throw 2 of 2
## 2646                                  Courtney Williams makes 19-foot pullup jump shot
## 2647                    Bernadett Hatar makes 14-foot jumper (Jessica Breland assists)
## 2648                                             Crystal Bradford misses driving layup
## 2649                                           Bernadett Hatar makes free throw 1 of 2
## 2650                                           Bernadett Hatar makes free throw 2 of 2
## 2651                                               Chennedy Carter makes driving layup
## 2652       Kelsey Mitchell makes 23-foot three point jumper (Tiffany Mitchell assists)
## 2653                                 Courtney Williams misses 17-foot pullup jump shot
## 2654                                          Crystal Bradford misses 5-foot hook shot
## 2655                                Tiffany Mitchell misses 24-foot three point jumper
## 2656                       Kelsey Mitchell misses 31-foot three point pullup jump shot
## 2657                                          Chennedy Carter misses free throw 1 of 2
## 2658                                           Chennedy Carter makes free throw 2 of 2
## 2659                                              Tina Charles misses 3-foot hook shot
## 2660             Ariel Atkins makes 25-foot three point jumper (Natasha Cloud assists)
## 2661                                  Betnijah Laney misses 24-foot three point jumper
## 2662                                                Ariel Atkins misses two point shot
## 2663                                                   Michaela Onyenwere misses layup
## 2664                                         Natasha Cloud makes 23-foot three pointer
## 2665                                  Tina Charles makes layup (Natasha Cloud assists)
## 2666                          Kylee Shook makes 3-foot layup (Sabrina Ionescu assists)
## 2667                                               Natasha Cloud misses two point shot
## 2668                 Michaela Onyenwere makes two point shot (Sabrina Ionescu assists)
## 2669                                     Natasha Cloud misses 19-foot pullup jump shot
## 2670                                       Betnijah Laney makes 11-foot two point shot
## 2671             Ariel Atkins makes 24-foot three point jumper (Natasha Cloud assists)
## 2672     Michaela Onyenwere makes 24-foot three point jumper (Sabrina Ionescu assists)
## 2673                           Kylee Shook makes 4-foot layup (Betnijah Laney assists)
## 2674                           Ariel Atkins makes 3-foot layup (Natasha Cloud assists)
## 2675                                Ariel Atkins blocks Betnijah Laney 's 5-foot layup
## 2676                                      Betnijah Laney misses 12-foot two point shot
## 2677         Sabrina Ionescu makes 29-foot three point jumper (Betnijah Laney assists)
## 2678                      Leilani Mitchell misses 24-foot three point pullup jump shot
## 2679                              Michaela Onyenwere misses 25-foot three point jumper
## 2680                                     Natasha Cloud misses 16-foot pullup jump shot
## 2681                                              Betnijah Laney misses 20-foot jumper
## 2682                                           Ariel Atkins makes technical free throw
## 2683                                Leilani Mitchell misses 24-foot three point jumper
## 2684                                              Tina Charles misses 3-foot hook shot
## 2685                   Tina Charles blocks Michaela Onyenwere 's 5-foot two point shot
## 2686              Tina Charles makes 25-foot three point jumper (Ariel Atkins assists)
## 2687                                   Rebecca Allen misses 27-foot three point jumper
## 2688             Ariel Atkins makes 25-foot three point jumper (Natasha Cloud assists)
## 2689                                             Sabrina Ionescu misses two point shot
## 2690                                              Tina Charles makes free throw 1 of 2
## 2691                                              Tina Charles makes free throw 2 of 2
## 2692                                        Tina Charles misses 13-foot two point shot
## 2693         Sydney Wiese makes 25-foot three point jumper (Theresa Plaisance assists)
## 2694                                                     Shavonte Zellous misses layup
## 2695                                                          Erica McCall makes layup
## 2696                                     Jazmine Jones misses 18-foot pullup jump shot
## 2697                                   Shavonte Zellous makes 21-foot pullup jump shot
## 2698                                             Jazmine Jones makes free throw 1 of 2
## 2699                                            Jazmine Jones misses free throw 2 of 2
## 2700                           Betnijah Laney makes 2-foot layup (Kylee Shook assists)
## 2701                                    Sydney Wiese misses 25-foot three point jumper
## 2702           Sami Whitcomb makes 25-foot three point jumper (Betnijah Laney assists)
## 2703                      Shavonte Zellous makes 18-foot jumper (Erica McCall assists)
## 2704                          Kylee Shook makes 1-foot layup (Sabrina Ionescu assists)
## 2705                                    Sydney Wiese misses 23-foot three point jumper
## 2706                                    Sami Whitcomb makes 27-foot three point jumper
## 2707                                                      Tina Charles makes hook shot
## 2708                                     Kylee Shook misses 27-foot three point jumper
## 2709              Tina Charles makes 13-foot two point shot (Shavonte Zellous assists)
## 2710                                               Sabrina Ionescu makes driving layup
## 2711                                                Betnijah Laney makes driving layup
## 2712                                        Betnijah Laney blocks Erica McCall's layup
## 2713                                   Rebecca Allen misses 24-foot three point jumper
## 2714                                    Tina Charles misses 26-foot three point jumper
## 2715                                  Betnijah Laney misses 26-foot three point jumper
## 2716              Tina Charles makes 23-foot three point jumper (Ariel Atkins assists)
## 2717           Betnijah Laney makes 23-foot three point jumper (Jazmine Jones assists)
## 2718                                    Ariel Atkins misses 25-foot three point jumper
## 2719                                Leilani Mitchell misses 25-foot three point jumper
## 2720                          Tina Charles makes 4-foot jumper (Natasha Cloud assists)
## 2721           Sami Whitcomb makes 25-foot three point jumper (Betnijah Laney assists)
## 2722                                              Tina Charles misses 8-foot hook shot
## 2723             Betnijah Laney makes 28-foot three point jumper (Kylee Shook assists)
## 2724                                              Tina Charles makes free throw 1 of 2
## 2725                                              Tina Charles makes free throw 2 of 2
## 2726              Ariel Atkins makes 27-foot three point jumper (Tina Charles assists)
## 2727                              Ariel Atkins blocks Sabrina Ionescu 's 10-foot layup
## 2728                                                       Sabrina Ionescu makes layup
## 2729                                              Ariel Atkins makes free throw 1 of 2
## 2730                                              Ariel Atkins makes free throw 2 of 2
## 2731                                               Betnijah Laney makes two point shot
## 2732                             Betnijah Laney makes 19-foot running pullup jump shot
## 2733                                    Tina Charles misses 23-foot three point jumper
## 2734                                 Shavonte Zellous makes 24-foot step back jumpshot
## 2735                                   Sami Whitcomb misses 26-foot three point jumper
## 2736                                             Shavonte Zellous makes two point shot
## 2737               Betnijah Laney makes 10-foot two point shot (Jazmine Jones assists)
## 2738                                    Ariel Atkins misses 23-foot three point jumper
## 2739                                   Sabrina Ionescu misses running pullup jump shot
## 2740                      Jazmine Jones blocks Natasha Cloud 's 10-foot two point shot
## 2741                                 Sabrina Ionescu misses 25-foot three point jumper
## 2742                                          Ariel Atkins makes 4-foot two point shot
## 2743                                              Betnijah Laney misses two point shot
## 2744                                                  Ariel Atkins makes driving layup
## 2745                       Sabrina Ionescu misses 26-foot three point pullup jump shot
## 2746                                           Sabrina Ionescu makes free throw 1 of 2
## 2747                                           Sabrina Ionescu makes free throw 2 of 2
## 2748                                        Sabrina Ionescu makes technical free throw
## 2749     Theresa Plaisance makes 27-foot three point jumper (Leilani Mitchell assists)
## 2750              Tina Charles makes 25-foot three point jumper (Ariel Atkins assists)
## 2751                           Kylee Shook makes 2-foot layup (Betnijah Laney assists)
## 2752                                          Tina Charles makes 3-foot two point shot
## 2753                                 Sabrina Ionescu misses 27-foot three point jumper
## 2754                              Michaela Onyenwere misses 23-foot three point jumper
## 2755                                    Tina Charles misses 28-foot three point jumper
## 2756                                           Michaela Onyenwere misses driving layup
## 2757                               Theresa Plaisance misses 27-foot three point jumper
## 2758                                          Kylee Shook misses 6-foot two point shot
## 2759             Sydney Wiese makes 26-foot step back jumpshot (Natasha Cloud assists)
## 2760                                    Betnijah Laney misses 16-foot pullup jump shot
## 2761                                  Kylee Shook blocks Natasha Cloud 's 5-foot layup
## 2762                                                         Sydney Wiese misses layup
## 2763                                     Rebecca Allen misses running pullup jump shot
## 2764                     Tina Charles makes three point jumper (Natasha Cloud assists)
## 2765              Rebecca Allen makes 24-foot three point jumper (Kylee Shook assists)
## 2766                                   Natasha Cloud misses 27-foot three point jumper
## 2767                                        Tina Charles misses 18-foot two point shot
## 2768              Kylee Shook makes 24-foot three point jumper (Sami Whitcomb assists)
## 2769             Natasha Cloud makes 27-foot three point jumper (Erica McCall assists)
## 2770                                                        DiDi Richards misses layup
## 2771                                               Betnijah Laney makes two point shot
## 2772                                   Jazmine Jones misses 24-foot three point jumper
## 2773                   Rebecca Allen blocks Sydney Wiese 's 26-foot three point jumper
## 2774                                         Theresa Plaisance makes free throw 1 of 2
## 2775                                         Theresa Plaisance makes free throw 2 of 2
## 2776                                              Erica McCall makes free throw 1 of 2
## 2777                                             Erica McCall misses free throw 2 of 2
## 2778                                           Theresa Plaisance misses two point shot
## 2779                                                     Theresa Plaisance misses dunk
## 2780            Rebecca Allen makes 28-foot three point jumper (DiDi Richards assists)
## 2781                             Sami Whitcomb blocks Leilani Mitchell 's 6-foot layup
## 2782                                                         Erica McCall misses layup
## 2783                                                         Jazmine Jones makes layup
## 2784                               Erica McCall makes layup (Leilani Mitchell assists)
## 2785                                             Erica McCall misses free throw 1 of 1
## 2786                                              Tina Charles makes free throw 1 of 2
## 2787                                              Tina Charles makes free throw 2 of 2
## 2788                                                          Tina Charles makes layup
## 2789                         Rebecca Allen misses 27-foot three point pullup jump shot
## 2790                                           Ariel Atkins makes technical free throw
## 2791                                Tina Charles makes dunk (Leilani Mitchell assists)
## 2792                                    Betnijah Laney misses 16-foot pullup jump shot
## 2793                                       Natasha Cloud misses 10-foot two point shot
## 2794          Ariel Atkins makes 24-foot three point jumper (Leilani Mitchell assists)
## 2795                                       Betnijah Laney misses 3-foot two point shot
## 2796                                             Natasha Cloud misses pullup jump shot
## 2797                                   Rebecca Allen misses 27-foot three point jumper
## 2798                        Tina Charles makes 5-foot hook shot (Ariel Atkins assists)
## 2799                                                         Erica McCall misses layup
## 2800                                                Tina Charles misses two point shot
## 2801                                                 Erica McCall makes two point shot
## 2802          Rebecca Allen makes 23-foot three point jumper (Sabrina Ionescu assists)
## 2803                                      Ariel Atkins misses 17-foot pullup jump shot
## 2804                                                Jazmine Jones misses driving layup
## 2805                                           Rebecca Allen misses three point jumper
## 2806                                 Leilani Mitchell makes 28-foot three point jumper
## 2807                                                         DiDi Richards makes layup
## 2808                                Leilani Mitchell misses 30-foot three point jumper
## 2809                                   Sami Whitcomb misses 26-foot three point jumper
## 2810                                          Shavonte Zellous makes free throw 1 of 2
## 2811                                          Shavonte Zellous makes free throw 2 of 2
## 2812                                                Jazmine Jones misses driving layup
## 2813                                                Sami Whitcomb misses driving layup
## 2814                                                Stella Johnson makes driving layup
## 2815                                                DiDi Richards misses driving layup
## 2816                                     Kiara Leslie makes 17-foot step back jumpshot
## 2817                                 DiDi Richards makes layup (Jazmine Jones assists)
## 2818                                  Stella Johnson misses 27-foot three point jumper
## 2819                                            DiDi Richards misses free throw 1 of 2
## 2820                                             DiDi Richards makes free throw 2 of 2
## 2821                                            Leilani Mitchell misses two point shot
## 2822        Natisha Hiedeman makes 27-foot three point jumper (Jasmine Thomas assists)
## 2823                            Skylar Diggins-Smith misses driving floating jump shot
## 2824                      Natisha Hiedeman misses 26-foot three point pullup jump shot
## 2825                         Brionna Jones makes 4-foot layup (DeWanna Bonner assists)
## 2826                                      Brianna Turner misses 10-foot two point shot
## 2827           Jonquel Jones makes 26-foot three point jumper (Jasmine Thomas assists)
## 2828             DeWanna Bonner makes 27-foot three point shot (Jonquel Jones assists)
## 2829                                        Diana Taurasi misses 6-foot two point shot
## 2830                                  DeWanna Bonner misses 31-foot three point jumper
## 2831                Brianna Turner makes two point shot (Skylar Diggins-Smith assists)
## 2832                                Jonquel Jones makes layup (Jasmine Thomas assists)
## 2833                               Brittney Griner makes layup (Diana Taurasi assists)
## 2834           Jasmine Thomas makes 25-foot three point jumper (Jonquel Jones assists)
## 2835         Kia Nurse makes 28-foot three point jumper (Skylar Diggins-Smith assists)
## 2836                         Brionna Jones makes 5-foot layup (DeWanna Bonner assists)
## 2837                                   Diana Taurasi misses 25-foot three point jumper
## 2838                                             Brittney Griner misses two point shot
## 2839                                  DeWanna Bonner misses 32-foot three point jumper
## 2840        Jasmine Thomas makes 23-foot three point jumper (Natisha Hiedeman assists)
## 2841         Skylar Diggins-Smith makes 25-foot three point jumper (Kia Nurse assists)
## 2842                               Sophie Cunningham misses 26-foot three point jumper
## 2843                                        Brionna Jones misses 8-foot two point shot
## 2844                                                Brionna Jones makes two point shot
## 2845                            Skylar Diggins-Smith misses driving floating jump shot
## 2846                                      Skylar Diggins-Smith makes free throw 1 of 2
## 2847                                      Skylar Diggins-Smith makes free throw 2 of 2
## 2848     Brittney Griner blocks Jasmine Thomas 's 25-foot three point pullup jump shot
## 2849                                               Jasmine Thomas misses driving layup
## 2850                                           Sophie Cunningham misses two point shot
## 2851                        Brittney Griner blocks Beatrice Mompremier 's 3-foot layup
## 2852                      Skylar Diggins-Smith makes 4-foot driving floating jump shot
## 2853                                  Jasmine Thomas misses 29-foot three point jumper
## 2854             Shey Peddy makes 24-foot three point jumper (Brittney Griner assists)
## 2855                                                Kaila Charles misses driving layup
## 2856                                     Diana Taurasi misses 26-foot three point shot
## 2857                 Beatrice Mompremier makes 11-foot jumper (DeWanna Bonner assists)
## 2858                                   Diana Taurasi misses 24-foot three point jumper
## 2859                                            Alanna Smith misses three point jumper
## 2860                              DiJonai Carrington misses 24-foot three point jumper
## 2861                                    Megan Walker misses 23-foot three point jumper
## 2862                                   Jonquel Jones misses 27-foot three point jumper
## 2863                                              Natisha Hiedeman makes driving layup
## 2864    Diana Taurasi makes 7-foot driving floating jump shot (Brianna Turner assists)
## 2865                                             Diana Taurasi makes free throw 1 of 1
## 2866                                Natisha Hiedeman misses 31-foot three point jumper
## 2867                                                Kaila Charles misses 7-foot jumper
## 2868                                          DiJonai Carrington misses 12-foot jumper
## 2869                                         Skylar Diggins-Smith makes two point shot
## 2870              Beatrice Mompremier makes driving layup (DiJonai Carrington assists)
## 2871                                             Diana Taurasi makes free throw 1 of 2
## 2872                                            Diana Taurasi misses free throw 2 of 2
## 2873                                                Jonquel Jones makes two point shot
## 2874                                         Diana Taurasi makes 8-foot two point shot
## 2875            Kaila Charles makes 24-foot three point jumper (Jonquel Jones assists)
## 2876                                                       Brianna Turner misses layup
## 2877             Beatrice Mompremier makes two point shot (DiJonai Carrington assists)
## 2878                                                Kaila Charles makes two point shot
## 2879                                      Brittney Griner misses 9-foot two point shot
## 2880                                               DeWanna Bonner makes 20-foot jumper
## 2881                            Skylar Diggins-Smith misses driving floating jump shot
## 2882                                  Jasmine Thomas misses 25-foot step back jumpshot
## 2883                                                Jonquel Jones makes two point shot
## 2884                                                   Kia Nurse misses two point shot
## 2885                                                    Brianna Turner misses tip shot
## 2886                                      Skylar Diggins-Smith makes free throw 1 of 2
## 2887                                     Skylar Diggins-Smith misses free throw 2 of 2
## 2888                                               Brionna Jones misses 23-foot jumper
## 2889                               Sophie Cunningham misses 25-foot three point jumper
## 2890                                            DeWanna Bonner makes free throw 1 of 2
## 2891                                            DeWanna Bonner makes free throw 2 of 2
## 2892                                       Kia Nurse misses 23-foot three point jumper
## 2893                                   Natisha Hiedeman makes 11-foot pullup jump shot
## 2894                                          Natisha Hiedeman makes free throw 1 of 2
## 2895                                          Natisha Hiedeman makes free throw 2 of 2
## 2896                    Diana Taurasi makes 4-foot two point shot (Shey Peddy assists)
## 2897                      Skylar Diggins-Smith makes 3-foot driving floating jump shot
## 2898                                       DeWanna Bonner misses 7-foot two point shot
## 2899                                                         Brionna Jones misses dunk
## 2900                    Brittney Griner blocks DeWanna Bonner 's 5-foot two point shot
## 2901                Jonquel Jones blocks Skylar Diggins-Smith 's 5-foot two point shot
## 2902                                       Brittney Griner makes 8-foot two point shot
## 2903                                       Jonquel Jones misses 11-foot two point shot
## 2904                                       Jonquel Jones misses 13-foot two point shot
## 2905                Kia Nurse makes 24-foot three point jumper (Diana Taurasi assists)
## 2906                                                Jasmine Thomas makes driving layup
## 2907                                    Diana Taurasi makes 30-foot three point jumper
## 2908                                Natisha Hiedeman misses 25-foot three point jumper
## 2909                             Kia Nurse misses 26-foot three point pullup jump shot
## 2910                                Natisha Hiedeman misses 24-foot three point jumper
## 2911                                                 Diana Taurasi makes driving layup
## 2912                                                        Brionna Jones misses layup
## 2913                                  Brittney Griner blocks DeWanna Bonner's tip shot
## 2914                       Jonquel Jones makes two point shot (DeWanna Bonner assists)
## 2915                                             Brittney Griner misses 21-foot jumper
## 2916        Natisha Hiedeman makes 29-foot three point jumper (DeWanna Bonner assists)
## 2917                                      Skylar Diggins-Smith makes free throw 1 of 2
## 2918                                      Skylar Diggins-Smith makes free throw 2 of 2
## 2919         Jonquel Jones makes 26-foot three point jumper (Natisha Hiedeman assists)
## 2920                                     Brittney Griner misses 12-foot two point shot
## 2921                                      Skylar Diggins-Smith makes free throw 1 of 2
## 2922                                      Skylar Diggins-Smith makes free throw 2 of 2
## 2923                                         DeWanna Bonner makes technical free throw
## 2924                                   Jonquel Jones misses 25-foot three point jumper
## 2925                                      Brittney Griner misses 4-foot two point shot
## 2926                                             Brittney Griner misses 12-foot jumper
## 2927                                      Shey Peddy misses 27-foot three point jumper
## 2928                                                         Jonquel Jones makes layup
## 2929                                             Megan Walker misses free throw 1 of 2
## 2930                                              Megan Walker makes free throw 2 of 2
## 2931                                        Jonquel Jones misses 9-foot two point shot
## 2932                               Brionna Jones blocks Cierra Burdick 's 3-foot layup
## 2933                            Skylar Diggins-Smith misses 29-foot three point jumper
## 2934                                Natisha Hiedeman misses 25-foot three point jumper
## 2935                     Brionna Jones makes 20-foot jumper (Natisha Hiedeman assists)
## 2936                                                  Shey Peddy misses two point shot
## 2937                                                        Jonquel Jones misses layup
## 2938                                             Brittney Griner misses two point shot
## 2939                                    Megan Walker misses 27-foot three point jumper
## 2940                        Megan Walker makes two point shot (Brianna Turner assists)
## 2941              Brianna Turner blocks Natisha Hiedeman 's 24-foot step back jumpshot
## 2942                                   Kaila Charles misses 24-foot three point jumper
## 2943                                            DiJonai Carrington makes driving layup
## 2944                                     Diana Taurasi misses 21-foot pullup jump shot
## 2945                                     Diana Taurasi misses 15-foot pullup jump shot
## 2946                                          DiJonai Carrington misses two point shot
## 2947                                         Beatrice Mompremier misses two point shot
## 2948                      Brittney Griner makes 17-foot jumper (Diana Taurasi assists)
## 2949                    DiJonai Carrington makes driving layup (Brionna Jones assists)
## 2950                 Beatrice Mompremier blocks Kia Nurse's driving floating jump shot
## 2951                                      DeWanna Bonner misses 15-foot two point shot
## 2952                                                Kaila Charles misses driving layup
## 2953                                               Jasmine Thomas misses driving layup
## 2954                                               Jasmine Thomas makes two point shot
## 2955                               Sophie Cunningham misses 29-foot three point jumper
## 2956                                            DeWanna Bonner makes free throw 1 of 1
## 2957                                      Jasmine Thomas misses 12-foot jump bank shot
## 2958                                  Skylar Diggins-Smith makes 9-foot two point shot
## 2959                                     Skylar Diggins-Smith misses free throw 1 of 1
## 2960                                   Diana Taurasi misses 28-foot step back jumpshot
## 2961             Sophie Cunningham makes two point shot (Skylar Diggins-Smith assists)
## 2962                                       Kaila Charles misses 10-foot two point shot
## 2963                                        DeWanna Bonner makes 28-foot three pointer
## 2964     Skylar Diggins-Smith makes driving floating jump shot (Diana Taurasi assists)
## 2965                                                Jasmine Thomas makes driving layup
## 2966                                                      Brittney Griner misses layup
## 2967                                  DeWanna Bonner misses 26-foot three point jumper
## 2968                                                    Shey Peddy makes 6-foot jumper
## 2969           Jasmine Thomas makes 24-foot three point jumper (Jonquel Jones assists)
## 2970                                         Skylar Diggins-Smith misses driving layup
## 2971                                                    Brianna Turner misses tip shot
## 2972                                               Jasmine Thomas misses driving layup
## 2973                          Brianna Turner makes two point shot (Shey Peddy assists)
## 2974                                                DeWanna Bonner makes driving layup
## 2975                                                Alanna Smith misses 20-foot jumper
## 2976                                               Megan Walker makes 8-foot hook shot
## 2977                          Stephanie Jones makes layup (DiJonai Carrington assists)
## 2978                        Megan Walker makes two point shot (Cierra Burdick assists)
## 2979                                    Cierra Burdick blocks Stephanie Jones's jumper
## 2980                                         Alanna Smith misses 5-foot two point shot
## 2981                                           DiJonai Carrington misses driving layup
## 2982                                               Stephanie Jones makes 7-foot jumper
## 2983                                            Shey Peddy makes 4-foot two point shot
## 2984                                      Beatrice Mompremier misses free throw 1 of 2
## 2985                                      Beatrice Mompremier misses free throw 2 of 2
## 2986                                    Alanna Smith misses 28-foot three point jumper
## 2987                                            Shey Peddy makes 8-foot two point shot
## 2988                                   Kristi Toliver makes 25-foot three point jumper
## 2989                                                         Jackie Young misses layup
## 2990                                                           Liz Cambage makes layup
## 2991                                                 Liz Cambage misses two point shot
## 2992                                                  A'ja Wilson makes 15-foot jumper
## 2993              Nneka Ogwumike makes 10-foot two point shot (Kristi Toliver assists)
## 2994                                   Riquna Williams misses 17-foot pullup jump shot
## 2995                                       Kristi Toliver makes 10-foot two point shot
## 2996                                  Kristi Toliver misses 27-foot three point jumper
## 2997                                    Chelsea Gray misses 24-foot three point jumper
## 2998                                                      Chiney Ogwumike misses layup
## 2999                                   Jackie Young makes layup (Chelsea Gray assists)
## 3000                        Nneka Ogwumike misses 27-foot three point pullup jump shot
## 3001                Chelsea Gray makes 8-foot two point shot (Riquna Williams assists)
## 3002                                                 Erica Wheeler makes driving layup
## 3003                                         A'ja Wilson misses 11-foot two point shot
## 3004                                           Chiney Ogwumike makes free throw 1 of 2
## 3005                                           Chiney Ogwumike makes free throw 2 of 2
## 3006                                                          Liz Cambage misses layup
## 3007                         Erica Wheeler makes 8-foot layup (Brittney Sykes assists)
## 3008                                                  A'ja Wilson makes two point shot
## 3009                                              Brittney Sykes misses 19-foot jumper
## 3010                                                       Chiney Ogwumike makes layup
## 3011                                     Dearica Hamby makes layup (Jisu Park assists)
## 3012                                                Dearica Hamby misses driving layup
## 3013                                  Kristi Toliver misses 16-foot step back jumpshot
## 3014                                  Dearica Hamby makes layup (Chelsea Gray assists)
## 3015                             A'ja Wilson blocks Nia Coffey 's 5-foot driving layup
## 3016                                    A'ja Wilson makes layup (Chelsea Gray assists)
## 3017              Nia Coffey makes 26-foot three point jumper (Kristi Toliver assists)
## 3018                                             Jackie Young misses free throw 1 of 2
## 3019                                              Jackie Young makes free throw 2 of 2
## 3020                                 Jisu Park blocks Arella Guirantes's driving layup
## 3021                                       Chelsea Gray makes 18-foot pullup jump shot
## 3022                                  Jasmine Walker misses 26-foot three point jumper
## 3023                                          A'ja Wilson makes 12-foot two point shot
## 3024                                               Nneka Ogwumike misses driving layup
## 3025                                                Dearica Hamby makes 17-foot jumper
## 3026                                                  Nia Coffey misses 18-foot jumper
## 3027                                              Chelsea Gray makes free throw 1 of 2
## 3028                                              Chelsea Gray makes free throw 2 of 2
## 3029                                           Jasmine Walker misses free throw 1 of 2
## 3030                                           Jasmine Walker misses free throw 2 of 2
##      score_value participants_0_athlete_id participants_1_athlete_id   game_id
## 1              0                      1014                      <NA> 401320565
## 2              0                   4066533                      <NA> 401320565
## 3              3                   4282173                       887 401320565
## 4              0                   3142191                      <NA> 401320565
## 5              0                   3142948                      <NA> 401320565
## 6              3                       887                   4065849 401320565
## 7              0                   3142191                      <NA> 401320565
## 8              2                   3142191                      1014 401320565
## 9              2                   4065849                   4066533 401320565
## 10             2                   3142191                      <NA> 401320565
## 11             1                   2593770                      <NA> 401320565
## 12             1                   2593770                      <NA> 401320565
## 13             0                   3142191                      <NA> 401320565
## 14             2                   3913903                      <NA> 401320565
## 15             0                   4282173                      <NA> 401320565
## 16             2                      1014                      <NA> 401320565
## 17             2                      1014                      <NA> 401320565
## 18             0                   4066533                      <NA> 401320565
## 19             2                   3913903                      1014 401320565
## 20             3                       887                   4066533 401320565
## 21             0                      1014                      <NA> 401320565
## 22             2                   4282173                       887 401320565
## 23             0                   3913903                      <NA> 401320565
## 24             0                   2593770                      <NA> 401320565
## 25             0                   3142191                      <NA> 401320565
## 26             3                   2593770                   4282173 401320565
## 27             0                      1002                      <NA> 401320565
## 28             1                   4282173                      <NA> 401320565
## 29             1                   4282173                      <NA> 401320565
## 30             0                   2984741                      <NA> 401320565
## 31             0                   3913903                      <NA> 401320565
## 32             0                   3913903                   4065850 401320565
## 33             0                   3142191                      <NA> 401320565
## 34             3                   2593770                   4066533 401320565
## 35             0                   3058908                      <NA> 401320565
## 36             2                   3913903                   3142191 401320565
## 37             0                   2593770                      <NA> 401320565
## 38             0                   2984741                      <NA> 401320565
## 39             1                   2984741                      <NA> 401320565
## 40             1                   2984741                      <NA> 401320565
## 41             3                      1013                   2984741 401320565
## 42             3                   2593770                   4068161 401320565
## 43             0                   2984741                      <NA> 401320565
## 44             0                   2593770                      <NA> 401320565
## 45             2                   4065820                      <NA> 401320565
## 46             0                   4282173                      <NA> 401320565
## 47             0                      1013                      <NA> 401320565
## 48             3                   4065820                   3058908 401320565
## 49             0                      1013                      <NA> 401320565
## 50             0                       887                      <NA> 401320565
## 51             2                   3058908                      <NA> 401320565
## 52             1                   3058908                      <NA> 401320565
## 53             0                      1013                      <NA> 401320565
## 54             2                      1013                      <NA> 401320565
## 55             1                   4066533                      <NA> 401320565
## 56             1                   4066533                      <NA> 401320565
## 57             0                      1013                      <NA> 401320565
## 58             2                   2593770                   4066533 401320565
## 59             0                   2984741                      <NA> 401320565
## 60             0                   2593770                      <NA> 401320565
## 61             0                   2984741                      <NA> 401320565
## 62             3                   4066533                   2593770 401320565
## 63             2                   3142948                      <NA> 401320565
## 64             0                   4066533                      <NA> 401320565
## 65             0                   4282471                      <NA> 401320565
## 66             0                   4066533                      <NA> 401320565
## 67             0                   4282173                      <NA> 401320565
## 68             2                   3142948                      <NA> 401320565
## 69             0                       887                      <NA> 401320565
## 70             0                   3142948                      <NA> 401320565
## 71             3                   2593770                   4066533 401320565
## 72             0                   4066533                      <NA> 401320565
## 73             3                   3142191                      1014 401320565
## 74             0                   4065849                      <NA> 401320565
## 75             0                      1014                      <NA> 401320565
## 76             2                   4065849                   2593770 401320565
## 77             2                   3913903                   3142191 401320565
## 78             2                   2593770                   4066533 401320565
## 79             2                      1002                      <NA> 401320565
## 80             0                       887                      <NA> 401320565
## 81             1                      1002                      <NA> 401320565
## 82             1                      1002                      <NA> 401320565
## 83             3                   4282173                   4066533 401320565
## 84             0                   3142948                      <NA> 401320565
## 85             2                   3913903                      1002 401320565
## 86             1                   3913903                      <NA> 401320565
## 87             0                   3913903                      <NA> 401320565
## 88             0                   4282173                      1002 401320565
## 89             2                   2593770                      <NA> 401320565
## 90             2                      1002                      <NA> 401320565
## 91             1                   4066533                      <NA> 401320565
## 92             1                   4066533                      <NA> 401320565
## 93             0                   3913903                      <NA> 401320565
## 94             0                   2593770                      <NA> 401320565
## 95             3                   4066533                      <NA> 401320565
## 96             0                   3142191                      <NA> 401320565
## 97             2                   4282173                   4066533 401320565
## 98             0                   3142948                      <NA> 401320565
## 99             0                   3913903                      <NA> 401320565
## 100            2                      1013                      <NA> 401320565
## 101            0                   4065849                      <NA> 401320565
## 102            0                   4066533                      <NA> 401320565
## 103            0                   3913903                      <NA> 401320565
## 104            2                   2593770                   4066533 401320565
## 105            2                   3913903                      1014 401320565
## 106            2                   4065849                   4066533 401320565
## 107            0                   3142191                      <NA> 401320565
## 108            0                      1013                      <NA> 401320565
## 109            2                   3913903                      <NA> 401320565
## 110            0                   4066533                      <NA> 401320565
## 111            0                   2984741                      <NA> 401320565
## 112            3                   4282173                   4065849 401320565
## 113            2                   3142191                      1013 401320565
## 114            2                   4282173                      <NA> 401320565
## 115            1                   4282173                      <NA> 401320565
## 116            2                   3142191                      <NA> 401320565
## 117            0                   2593770                      <NA> 401320565
## 118            2                   2984741                   3913903 401320565
## 119            1                   2984741                      <NA> 401320565
## 120            0                   4282173                      <NA> 401320565
## 121            0                   4065849                      <NA> 401320565
## 122            0                   3142191                      <NA> 401320565
## 123            2                      1014                      1013 401320565
## 124            0                   4065849                      <NA> 401320565
## 125            0                   2984741                      <NA> 401320565
## 126            0                      1013                      <NA> 401320565
## 127            0                   4282173                      <NA> 401320565
## 128            2                   4066533                      <NA> 401320565
## 129            0                   3142191                      <NA> 401320565
## 130            0                   2593770                      <NA> 401320565
## 131            0                      1002                      <NA> 401320565
## 132            2                   2566211                   4066533 401320565
## 133            2                   2984741                      <NA> 401320565
## 134            0                   4065820                      <NA> 401320565
## 135            2                   2593770                      <NA> 401320565
## 136            0                      1002                      <NA> 401320565
## 137            0                   4065820                      <NA> 401320565
## 138            2                   4066533                      <NA> 401320565
## 139            0                      1014                      <NA> 401320565
## 140            0                      1014                      <NA> 401320565
## 141            2                   2593770                      <NA> 401320565
## 142            0                   4066533                      <NA> 401320565
## 143            2                      1002                   4065820 401320565
## 144            0                   2566211                      <NA> 401320565
## 145            1                   2566211                      <NA> 401320565
## 146            2                   3142191                      <NA> 401320565
## 147            0                   4065850                      <NA> 401320565
## 148            2                   4281253                      <NA> 401320565
## 149            0                   4065820                      <NA> 401320565
## 150            0                   4066533                      <NA> 401320565
## 151            0                       887                      <NA> 401320565
## 152            0                   2566211                   3913903 401320565
## 153            0                      1013                      <NA> 401320565
## 154            2                   3913903                      <NA> 401320565
## 155            2                   3142191                      <NA> 401320565
## 156            1                   3142191                      <NA> 401320565
## 157            2                   3142191                      <NA> 401320565
## 158            2                   4066533                      <NA> 401320565
## 159            1                   4066533                      <NA> 401320565
## 160            0                   3913903                      <NA> 401320565
## 161            0                      1013                      <NA> 401320565
## 162            2                   2593770                      <NA> 401320565
## 163            0                      1014                   4065849 401320565
## 164            2                   3913903                      <NA> 401320565
## 165            0                   4066533                      <NA> 401320565
## 166            0                   3913903                      <NA> 401320565
## 167            1                   3913903                      <NA> 401320565
## 168            0                   2593770                      <NA> 401320565
## 169            1                   2593770                      <NA> 401320565
## 170            2                   3913903                      1013 401320565
## 171            0                      1014                      <NA> 401320565
## 172            2                      1013                      <NA> 401320565
## 173            0                   4066533                      <NA> 401320565
## 174            2                   3142191                      <NA> 401320565
## 175            0                   2593770                      <NA> 401320565
## 176            1                   2593770                      <NA> 401320565
## 177            0                   2984741                      <NA> 401320565
## 178            0                   4065849                   3913903 401320565
## 179            2                   3142191                      <NA> 401320565
## 180            3                   4066533                      <NA> 401320565
## 181            0                   3142191                      <NA> 401320565
## 182            1                   3142191                      <NA> 401320565
## 183            1                   4066533                      <NA> 401320565
## 184            1                   4066533                      <NA> 401320565
## 185            3                   4066533                   4065849 401320565
## 186            0                       869                      <NA> 401320566
## 187            0                   2490514                      <NA> 401320566
## 188            2                   2999101                       869 401320566
## 189            0                   2987891                      <NA> 401320566
## 190            0                       860                      <NA> 401320566
## 191            0                   2529047                      <NA> 401320566
## 192            2                   2566081                      <NA> 401320566
## 193            1                   2999101                      <NA> 401320566
## 194            1                   2999101                      <NA> 401320566
## 195            2                   2999101                   3058895 401320566
## 196            1                   4280892                      <NA> 401320566
## 197            1                   4280892                      <NA> 401320566
## 198            3                   2529047                   2987891 401320566
## 199            2                       869                   2999101 401320566
## 200            1                   2529047                      <NA> 401320566
## 201            1                   2529047                      <NA> 401320566
## 202            3                   2999101                   4065780 401320566
## 203            1                   3142255                      <NA> 401320566
## 204            1                   3142255                      <NA> 401320566
## 205            0                       869                      <NA> 401320566
## 206            2                   2999101                   4065780 401320566
## 207            0                   2987891                      <NA> 401320566
## 208            2                   2999101                      <NA> 401320566
## 209            0                   2999101                      <NA> 401320566
## 210            0                   2999101                   3142255 401320566
## 211            1                   3142255                      <NA> 401320566
## 212            1                   3142255                      <NA> 401320566
## 213            0                   3916517                      <NA> 401320566
## 214            0                   3916517                      <NA> 401320566
## 215            2                   2987891                   4066553 401320566
## 216            1                       869                      <NA> 401320566
## 217            1                       869                      <NA> 401320566
## 218            0                   2987891                      <NA> 401320566
## 219            2                   2999101                       869 401320566
## 220            0                      1110                      <NA> 401320566
## 221            2                   3916517                   2999101 401320566
## 222            0                   2566081                      <NA> 401320566
## 223            0                   4065780                      <NA> 401320566
## 224            0                   2999101                      <NA> 401320566
## 225            1                   2999101                      <NA> 401320566
## 226            2                   2566081                   4280892 401320566
## 227            0                   2999101                      <NA> 401320566
## 228            0                   4065780                      <NA> 401320566
## 229            0                   3916517                   2987891 401320566
## 230            0                   4280892                      <NA> 401320566
## 231            1                   3058895                      <NA> 401320566
## 232            1                   3058895                      <NA> 401320566
## 233            0                   2987891                      <NA> 401320566
## 234            0                   4065780                      <NA> 401320566
## 235            2                   2490514                   2987891 401320566
## 236            0                   4280892                      <NA> 401320566
## 237            3                   3906753                   4065780 401320566
## 238            1                   3906753                      <NA> 401320566
## 239            0                   3906753                      <NA> 401320566
## 240            1                   3906753                      <NA> 401320566
## 241            0                   2529047                      <NA> 401320566
## 242            0                       869                      <NA> 401320566
## 243            2                   3058895                      <NA> 401320566
## 244            2                   4280892                      <NA> 401320566
## 245            0                       869                      <NA> 401320566
## 246            2                   2529047                   2591976 401320566
## 247            2                   4065785                   3906753 401320566
## 248            0                   2529047                      <NA> 401320566
## 249            2                   2490514                   2591976 401320566
## 250            3                       860                   3906753 401320566
## 251            2                   2490514                   2529047 401320566
## 252            0                   3058895                      <NA> 401320566
## 253            0                   3058895                   3142255 401320566
## 254            0                   2987891                      <NA> 401320566
## 255            2                   3058895                       869 401320566
## 256            0                   2490514                      <NA> 401320566
## 257            0                   2987891                      <NA> 401320566
## 258            0                       860                      <NA> 401320566
## 259            0                   2490514                       869 401320566
## 260            2                   2490514                      <NA> 401320566
## 261            0                   3906753                      <NA> 401320566
## 262            0                   3142255                      <NA> 401320566
## 263            2                   4065785                   2999101 401320566
## 264            0                   2490514                      <NA> 401320566
## 265            0                       860                      <NA> 401320566
## 266            0                   4280892                      <NA> 401320566
## 267            3                       869                       860 401320566
## 268            0                   2591976                      <NA> 401320566
## 269            2                   4280892                   2987891 401320566
## 270            1                   2987891                      <NA> 401320566
## 271            1                   2987891                      <NA> 401320566
## 272            0                   4280892                      <NA> 401320566
## 273            0                   3058895                      <NA> 401320566
## 274            0                   4280892                   3906753 401320566
## 275            0                   2490514                      <NA> 401320566
## 276            0                   2529047                      <NA> 401320566
## 277            3                       860                      <NA> 401320566
## 278            2                   2529047                      <NA> 401320566
## 279            0                   2999101                      <NA> 401320566
## 280            1                   2999101                      <NA> 401320566
## 281            2                   4280892                      <NA> 401320566
## 282            0                   3058895                   2566081 401320566
## 283            0                   2529047                      <NA> 401320566
## 284            1                   2529047                      <NA> 401320566
## 285            2                   2529047                      <NA> 401320566
## 286            0                   4280892                      <NA> 401320566
## 287            3                       869                       860 401320566
## 288            0                       869                      <NA> 401320566
## 289            0                       860                      <NA> 401320566
## 290            0                   4280892                      <NA> 401320566
## 291            3                   3906753                   3058895 401320566
## 292            0                   2490514                      <NA> 401320566
## 293            0                   3906753                      <NA> 401320566
## 294            0                   3058895                      <NA> 401320566
## 295            2                   3058895                      <NA> 401320566
## 296            0                   4066553                      <NA> 401320566
## 297            0                   2999101                      <NA> 401320566
## 298            0                   4280892                      <NA> 401320566
## 299            0                   3058895                      <NA> 401320566
## 300            0                   2999101                   3142255 401320566
## 301            2                   2999101                      <NA> 401320566
## 302            2                   2987891                      <NA> 401320566
## 303            2                   3142255                      <NA> 401320566
## 304            0                   2999101                      <NA> 401320566
## 305            2                   2999101                      <NA> 401320566
## 306            1                       869                      <NA> 401320566
## 307            1                       869                      <NA> 401320566
## 308            3                   2987891                   2490514 401320566
## 309            0                       869                      <NA> 401320566
## 310            1                       869                      <NA> 401320566
## 311            2                   2987891                   2490514 401320566
## 312            0                   3906753                      <NA> 401320566
## 313            0                      1110                      <NA> 401320566
## 314            0                   2987891                      <NA> 401320566
## 315            0                      1110                      <NA> 401320566
## 316            0                   4066553                      <NA> 401320566
## 317            3                       869                      <NA> 401320566
## 318            1                   3142255                      <NA> 401320566
## 319            1                   3142255                      <NA> 401320566
## 320            0                   3142255                      <NA> 401320566
## 321            2                       869                   3906753 401320566
## 322            0                   3142255                      <NA> 401320566
## 323            0                   3058895                   2490514 401320566
## 324            2                   3916517                       869 401320566
## 325            0                   4066553                      <NA> 401320566
## 326            0                   3906753                      <NA> 401320566
## 327            0                   4066553                      <NA> 401320566
## 328            0                   3906753                      <NA> 401320566
## 329            1                   3906753                      <NA> 401320566
## 330            2                   2566081                   2490514 401320566
## 331            3                   2999101                       860 401320566
## 332            3                   2987891                   2529047 401320566
## 333            0                       869                      <NA> 401320566
## 334            0                   2987891                       869 401320566
## 335            0                       860                      <NA> 401320566
## 336            0                   2529047                      <NA> 401320566
## 337            0                   2987891                       869 401320566
## 338            2                   2999101                       869 401320566
## 339            0                   2490514                      <NA> 401320566
## 340            2                   2490514                   4280892 401320566
## 341            1                   2490514                      <NA> 401320566
## 342            0                       860                      <NA> 401320566
## 343            2                   4280892                      <NA> 401320566
## 344            3                       869                   4282158 401320566
## 345            2                   2529047                   2987891 401320566
## 346            0                   4066548                      <NA> 401320566
## 347            1                   2591976                      <NA> 401320566
## 348            1                   2591976                      <NA> 401320566
## 349            1                   4066553                      <NA> 401320566
## 350            0                   4066553                      <NA> 401320566
## 351            0                   4065785                   3142255 401320566
## 352            1                   2591976                      <NA> 401320566
## 353            0                   2591976                      <NA> 401320566
## 354            2                       766                   2955898 401320567
## 355            2                   4066585                      <NA> 401320567
## 356            0                   2491205                      <NA> 401320567
## 357            0                       766                   2490553 401320567
## 358            0                   3142086                       766 401320567
## 359            0                   2999035                   2490553 401320567
## 360            0                       585                      <NA> 401320567
## 361            0                   2999035                      <NA> 401320567
## 362            0                   3142327                      <NA> 401320567
## 363            0                   4066585                      <NA> 401320567
## 364            2                   2491205                       585 401320567
## 365            2                   2529205                   4066585 401320567
## 366            0                       766                      <NA> 401320567
## 367            1                   3142327                      <NA> 401320567
## 368            0                   3142327                      <NA> 401320567
## 369            0                       585                      <NA> 401320567
## 370            0                       766                      <NA> 401320567
## 371            2                       585                   2490553 401320567
## 372            0                   4066585                      <NA> 401320567
## 373            2                   2491205                      <NA> 401320567
## 374            0                   2529205                      <NA> 401320567
## 375            0                       585                      <NA> 401320567
## 376            0                   3906972                      <NA> 401320567
## 377            0                   2491205                      <NA> 401320567
## 378            0                   3907781                      <NA> 401320567
## 379            0                   2529203                      <NA> 401320567
## 380            0                   2566186                      <NA> 401320567
## 381            2                   2490553                   2491205 401320567
## 382            0                   3142327                      <NA> 401320567
## 383            3                   2529205                      <NA> 401320567
## 384            0                   3142086                      <NA> 401320567
## 385            0                   3906972                      <NA> 401320567
## 386            2                   3142086                       585 401320567
## 387            0                       585                      <NA> 401320567
## 388            0                       766                      <NA> 401320567
## 389            0                   3907781                      <NA> 401320567
## 390            0                       766                      <NA> 401320567
## 391            1                       766                      <NA> 401320567
## 392            1                       585                      <NA> 401320567
## 393            0                       585                      <NA> 401320567
## 394            0                       585                      <NA> 401320567
## 395            0                   4066585                      <NA> 401320567
## 396            2                   2490553                   2566452 401320567
## 397            0                   4066585                      <NA> 401320567
## 398            0                   2491205                      <NA> 401320567
## 399            2                   2490553                   2566452 401320567
## 400            2                   2566452                   2491205 401320567
## 401            0                       766                      <NA> 401320567
## 402            2                   2491205                      1107 401320567
## 403            2                   2999035                      <NA> 401320567
## 404            0                   2490553                      <NA> 401320567
## 405            0                   2955898                      <NA> 401320567
## 406            0                   2491205                      <NA> 401320567
## 407            0                      1107                      <NA> 401320567
## 408            2                       766                   2955898 401320567
## 409            0                   2566452                      <NA> 401320567
## 410            1                   2529205                      <NA> 401320567
## 411            1                   2529205                      <NA> 401320567
## 412            0                   2999035                      <NA> 401320567
## 413            2                   2491205                   2490553 401320567
## 414            0                   2529205                      <NA> 401320567
## 415            2                   3142327                      <NA> 401320567
## 416            2                   4066585                      <NA> 401320567
## 417            3                      1107                   2491205 401320567
## 418            0                   4066585                      <NA> 401320567
## 419            2                   3142327                      <NA> 401320567
## 420            2                   2529205                   4066585 401320567
## 421            0                   2955898                      <NA> 401320567
## 422            0                   3142327                      <NA> 401320567
## 423            0                   2529203                      <NA> 401320567
## 424            0                   2491205                      <NA> 401320567
## 425            0                   2999035                      <NA> 401320567
## 426            2                   2999035                   2955898 401320567
## 427            0                   2999035                   2490553 401320567
## 428            0                   3142327                   2529205 401320567
## 429            0                   2999035                      <NA> 401320567
## 430            2                   2955898                      <NA> 401320567
## 431            2                   2490553                       585 401320567
## 432            0                   2529205                      <NA> 401320567
## 433            0                   2491205                      <NA> 401320567
## 434            0                   2529205                      <NA> 401320567
## 435            0                   2490553                      <NA> 401320567
## 436            2                   2490553                      <NA> 401320567
## 437            2                   2490553                       585 401320567
## 438            3                   2955898                   2999035 401320567
## 439            0                   3142327                      <NA> 401320567
## 440            3                   2999035                      <NA> 401320567
## 441            1                       585                      <NA> 401320567
## 442            1                       585                      <NA> 401320567
## 443            0                   2955898                      <NA> 401320567
## 444            3                   4066585                   2999035 401320567
## 445            2                   2491205                      <NA> 401320567
## 446            0                   3142327                   2999035 401320567
## 447            1                   2999035                      <NA> 401320567
## 448            1                   2999035                      <NA> 401320567
## 449            0                   2491205                      <NA> 401320567
## 450            2                       766                   4066585 401320567
## 451            0                   2490553                      <NA> 401320567
## 452            2                   4066585                       766 401320567
## 453            0                       585                      <NA> 401320567
## 454            2                   2999035                      <NA> 401320567
## 455            2                   2491205                      <NA> 401320567
## 456            1                   2491205                      <NA> 401320567
## 457            0                   2491205                      <NA> 401320567
## 458            2                   3142327                      <NA> 401320567
## 459            2                   2999035                      <NA> 401320567
## 460            1                   2999035                      <NA> 401320567
## 461            3                       585                      <NA> 401320567
## 462            0                   2529205                      <NA> 401320567
## 463            2                   4066585                   2529205 401320567
## 464            0                   4066585                      <NA> 401320567
## 465            3                   2491205                      1107 401320567
## 466            2                   2955898                   2529203 401320567
## 467            0                      1107                      <NA> 401320567
## 468            0                   3142327                      <NA> 401320567
## 469            0                   3142086                      <NA> 401320567
## 470            1                   3142086                      <NA> 401320567
## 471            2                   2529205                       766 401320567
## 472            0                   2490553                      <NA> 401320567
## 473            0                   3906972                      <NA> 401320567
## 474            0                   2490553                      <NA> 401320567
## 475            1                   2529203                      <NA> 401320567
## 476            1                   2529203                      <NA> 401320567
## 477            2                   3142086                       585 401320567
## 478            0                       766                      <NA> 401320567
## 479            1                   3142327                      <NA> 401320567
## 480            0                   3142327                      <NA> 401320567
## 481            2                   2490553                   3142086 401320567
## 482            2                   2999035                   2955898 401320567
## 483            0                       585                      <NA> 401320567
## 484            0                   2999035                      <NA> 401320567
## 485            0                   3142086                   2999035 401320567
## 486            0                   2999035                       585 401320567
## 487            3                   2566186                   2999035 401320567
## 488            1                       585                      <NA> 401320567
## 489            1                       585                      <NA> 401320567
## 490            2                   2491205                      <NA> 401320567
## 491            2                   3142086                   3142327 401320567
## 492            0                   2955898                   3142086 401320567
## 493            0                   3142086                   2529205 401320567
## 494            0                   2955898                      <NA> 401320567
## 495            0                   2491205                      <NA> 401320567
## 496            2                   3142086                      <NA> 401320567
## 497            0                   2955898                   3142086 401320567
## 498            2                   2529205                   4066585 401320567
## 499            0                   2491205                      <NA> 401320567
## 500            0                   4066585                       585 401320567
## 501            0                   3142327                       766 401320567
## 502            0                   2529205                       585 401320567
## 503            2                   4066585                   2529205 401320567
## 504            2                   3142086                   3142327 401320567
## 505            0                       766                      <NA> 401320567
## 506            2                       766                      <NA> 401320567
## 507            1                   2529205                      <NA> 401320567
## 508            1                   2529205                      <NA> 401320567
## 509            0                       585                      <NA> 401320567
## 510            0                       585                      <NA> 401320567
## 511            0                   4066585                      <NA> 401320567
## 512            2                   3142086                   2491205 401320567
## 513            2                   4066585                      <NA> 401320567
## 514            1                       585                      <NA> 401320567
## 515            0                       585                      <NA> 401320567
## 516            0                   2529203                   3142086 401320567
## 517            0                   2491205                      <NA> 401320567
## 518            2                   4066585                      <NA> 401320567
## 519            0                   3142327                      <NA> 401320567
## 520            0                   4066585                      <NA> 401320567
## 521            2                   3142327                   2490553 401320567
## 522            0                   3142327                      <NA> 401320567
## 523            2                   2999035                      <NA> 401320567
## 524            0                   2491205                      <NA> 401320567
## 525            0                       585                      <NA> 401320567
## 526            1                   2529205                      <NA> 401320567
## 527            1                   2529205                      <NA> 401320567
## 528            2                   2490553                   2491205 401320567
## 529            0                   2999035                      <NA> 401320567
## 530            2                       766                      <NA> 401320567
## 531            0                   2490553                      <NA> 401320567
## 532            1                   2490553                      <NA> 401320567
## 533            3                       585                      <NA> 401320567
## 534            2                      1068                   2491214 401320568
## 535            0                   2988756                      <NA> 401320568
## 536            0                   3058901                      <NA> 401320568
## 537            0                   2491214                      <NA> 401320568
## 538            2                   2491214                      <NA> 401320568
## 539            0                       856                      <NA> 401320568
## 540            3                   2998927                   2529622 401320568
## 541            2                   2988756                      <NA> 401320568
## 542            2                   4398988                   3058901 401320568
## 543            2                   2529950                       856 401320568
## 544            0                   3058901                      <NA> 401320568
## 545            3                       856                      <NA> 401320568
## 546            0                   2988756                      <NA> 401320568
## 547            0                   3054590                      <NA> 401320568
## 548            2                       856                      <NA> 401320568
## 549            2                   2566453                   4065760 401320568
## 550            0                   3907789                      <NA> 401320568
## 551            1                   3907789                      <NA> 401320568
## 552            2                      1068                       856 401320568
## 553            0                   2566453                      <NA> 401320568
## 554            2                   2566453                   3904576 401320568
## 555            2                      1068                   2999140 401320568
## 556            3                   3904576                   4065760 401320568
## 557            0                   2999140                      <NA> 401320568
## 558            0                   3907789                      <NA> 401320568
## 559            2                   3058901                      <NA> 401320568
## 560            1                   3058901                      <NA> 401320568
## 561            0                   2529950                      <NA> 401320568
## 562            3                   3904576                   4065760 401320568
## 563            0                   4065832                      <NA> 401320568
## 564            0                   3907789                      <NA> 401320568
## 565            2                   3054590                      <NA> 401320568
## 566            3                   2529950                   3907789 401320568
## 567            2                   3904576                      <NA> 401320568
## 568            1                   2999140                      <NA> 401320568
## 569            1                   2999140                      <NA> 401320568
## 570            0                   3054590                      <NA> 401320568
## 571            2                   2529950                      <NA> 401320568
## 572            0                   4065760                      <NA> 401320568
## 573            1                   3058901                      <NA> 401320568
## 574            2                   3058901                      <NA> 401320568
## 575            1                   2529622                      <NA> 401320568
## 576            1                   2529622                      <NA> 401320568
## 577            0                   4068178                      <NA> 401320568
## 578            1                   3904577                      <NA> 401320568
## 579            1                   3904577                      <NA> 401320568
## 580            1                   3904577                      <NA> 401320568
## 581            0                   2999140                      <NA> 401320568
## 582            2                   3054590                      <NA> 401320568
## 583            1                   3058901                      <NA> 401320568
## 584            1                   3058901                      <NA> 401320568
## 585            2                   4068178                   2529950 401320568
## 586            0                   2491214                      <NA> 401320568
## 587            0                   3058901                      <NA> 401320568
## 588            0                      1068                      <NA> 401320568
## 589            0                      1068                   4398988 401320568
## 590            0                   2491214                      <NA> 401320568
## 591            0                   2529950                      <NA> 401320568
## 592            2                   4398988                   4065760 401320568
## 593            1                      1068                      <NA> 401320568
## 594            1                      1068                      <NA> 401320568
## 595            0                   4065760                      <NA> 401320568
## 596            3                   2529622                   4065760 401320568
## 597            0                   3904576                      <NA> 401320568
## 598            0                   2529950                      <NA> 401320568
## 599            2                   3058901                      <NA> 401320568
## 600            2                   2491214                      <NA> 401320568
## 601            0                   3058901                      <NA> 401320568
## 602            0                   4065832                   4068600 401320568
## 603            0                   4065832                      <NA> 401320568
## 604            2                   3058901                   4065760 401320568
## 605            0                   2988756                      <NA> 401320568
## 606            1                   2988756                      <NA> 401320568
## 607            0                   3058901                      <NA> 401320568
## 608            0                      1068                      <NA> 401320568
## 609            2                   4065760                      <NA> 401320568
## 610            0                      1068                      <NA> 401320568
## 611            0                   2998927                      <NA> 401320568
## 612            3                       856                   2988756 401320568
## 613            1                   3058901                      <NA> 401320568
## 614            0                   3058901                      <NA> 401320568
## 615            0                   3054590                      <NA> 401320568
## 616            0                   3054590                      <NA> 401320568
## 617            2                   2988756                   2529950 401320568
## 618            2                   3058901                      <NA> 401320568
## 619            0                   3907789                      <NA> 401320568
## 620            0                   3907789                      <NA> 401320568
## 621            0                   2491214                      <NA> 401320568
## 622            0                   3904577                      <NA> 401320568
## 623            0                   4398988                   2988756 401320568
## 624            0                   2529950                      <NA> 401320568
## 625            2                   3058901                      <NA> 401320568
## 626            2                      1068                      <NA> 401320568
## 627            0                   3904577                      <NA> 401320568
## 628            2                   2998927                      <NA> 401320568
## 629            0                       856                      <NA> 401320568
## 630            2                   3904577                      <NA> 401320568
## 631            1                   3904577                      <NA> 401320568
## 632            0                      1068                      <NA> 401320568
## 633            2                      1068                      <NA> 401320568
## 634            0                       856                      <NA> 401320568
## 635            1                       856                      <NA> 401320568
## 636            2                   3904577                      <NA> 401320568
## 637            3                   2529950                   2491214 401320568
## 638            3                   3904577                      <NA> 401320568
## 639            2                   3904577                   3058901 401320568
## 640            0                   2988756                      <NA> 401320568
## 641            1                   4398988                      <NA> 401320568
## 642            1                   4398988                      <NA> 401320568
## 643            2                   2566453                   4065760 401320568
## 644            0                   3054590                      <NA> 401320568
## 645            0                   2988756                      <NA> 401320568
## 646            0                   4065760                      <NA> 401320568
## 647            0                   4398988                      <NA> 401320568
## 648            1                   4398988                      <NA> 401320568
## 649            3                   3907789                   3054590 401320568
## 650            2                      1068                   2988756 401320568
## 651            0                   3904576                      <NA> 401320568
## 652            3                   4065760                   3904576 401320568
## 653            3                   3054590                   4065832 401320568
## 654            0                   2529622                      <NA> 401320568
## 655            3                   3054590                   2999140 401320568
## 656            0                   3058901                   3054590 401320568
## 657            0                   3058901                      <NA> 401320568
## 658            2                   4398988                      <NA> 401320568
## 659            0                   3907789                      <NA> 401320568
## 660            1                   3058901                      <NA> 401320568
## 661            1                   3058901                      <NA> 401320568
## 662            0                   2529950                      <NA> 401320568
## 663            2                       856                      <NA> 401320568
## 664            0                   3904576                      <NA> 401320568
## 665            0                   2998927                      <NA> 401320568
## 666            0                   2566453                      <NA> 401320568
## 667            2                   2529950                   4065832 401320568
## 668            0                   3904576                      <NA> 401320568
## 669            0                   3054590                      <NA> 401320568
## 670            3                   3904576                   3904577 401320568
## 671            0                   2999140                      <NA> 401320568
## 672            2                   3904577                      <NA> 401320568
## 673            0                   3904577                      <NA> 401320568
## 674            2                   3904577                      <NA> 401320568
## 675            0                   2491214                      <NA> 401320568
## 676            0                   3904577                      <NA> 401320568
## 677            2                   3058901                   2566453 401320568
## 678            0                   2999140                      <NA> 401320568
## 679            0                   2999140                   2566453 401320568
## 680            0                   3904577                      <NA> 401320568
## 681            0                      1068                      <NA> 401320568
## 682            2                   2529622                   2998927 401320568
## 683            0                   2491214                      <NA> 401320568
## 684            0                   3904577                      <NA> 401320568
## 685            0                   3907789                      <NA> 401320568
## 686            0                   3058901                      <NA> 401320568
## 687            2                   2566453                      <NA> 401320568
## 688            0                   2529950                      <NA> 401320568
## 689            0                   3904577                      <NA> 401320568
## 690            2                      1068                   2988756 401320568
## 691            1                   3058901                      <NA> 401320568
## 692            1                   3058901                      <NA> 401320568
## 693            0                   2988756                      <NA> 401320568
## 694            1                   2988756                      <NA> 401320568
## 695            0                   4398988                      <NA> 401320568
## 696            0                   3904577                      <NA> 401320568
## 697            0                   3907789                      <NA> 401320568
## 698            2                   4065760                      <NA> 401320568
## 699            0                   2988756                      <NA> 401320568
## 700            2                      1068                      <NA> 401320568
## 701            0                   4281190                      <NA> 401320568
## 702            0                   4065832                      <NA> 401320568
## 703            3                   4068110                      <NA> 401320568
## 704            0                   3907789                      <NA> 401320568
## 705            2                   2566453                   3058901 401320568
## 706            0                   4068178                      <NA> 401320568
## 707            2                   4068178                      <NA> 401320568
## 708            0                   4068600                   3054590 401320568
## 709            0                   3907789                      <NA> 401320568
## 710            2                   4398988                   3058901 401320568
## 711            0                   4068178                      <NA> 401320568
## 712            3                   3146151                   2529137 401320569
## 713            0                   2529183                   3146151 401320569
## 714            0                   2530082                      <NA> 401320569
## 715            2                       812                   2998938 401320569
## 716            3                   2530082                       796 401320569
## 717            3                       812                       981 401320569
## 718            2                   3058902                      <NA> 401320569
## 719            3                   2998938                       812 401320569
## 720            2                   2998938                   3058902 401320569
## 721            0                       918                      <NA> 401320569
## 722            0                   2529183                      <NA> 401320569
## 723            0                   2530082                      <NA> 401320569
## 724            0                   3058902                      <NA> 401320569
## 725            2                   2530082                       796 401320569
## 726            2                   2529137                      <NA> 401320569
## 727            0                   2529137                      <NA> 401320569
## 728            2                   2998938                       981 401320569
## 729            0                       796                      <NA> 401320569
## 730            2                       918                      <NA> 401320569
## 731            0                   2529183                      <NA> 401320569
## 732            0                   3142149                      <NA> 401320569
## 733            0                   2998938                      <NA> 401320569
## 734            0                   3142149                      <NA> 401320569
## 735            2                   3142149                   3056728 401320569
## 736            2                       918                      <NA> 401320569
## 737            3                       764                   2566210 401320569
## 738            3                       918                   2529137 401320569
## 739            3                   2566210                       764 401320569
## 740            0                   2529137                      <NA> 401320569
## 741            0                   4066534                      <NA> 401320569
## 742            0                   3056728                      <NA> 401320569
## 743            2                   3058902                       764 401320569
## 744            0                       851                      <NA> 401320569
## 745            0                       764                      <NA> 401320569
## 746            0                       796                      <NA> 401320569
## 747            1                       851                      <NA> 401320569
## 748            1                       851                      <NA> 401320569
## 749            0                   2566210                      <NA> 401320569
## 750            2                   3099025                   2566210 401320569
## 751            0                       918                      <NA> 401320569
## 752            2                   3099025                   3058902 401320569
## 753            0                       918                      <NA> 401320569
## 754            1                       918                      <NA> 401320569
## 755            3                       812                       981 401320569
## 756            0                   2530082                      <NA> 401320569
## 757            0                   3058902                      <NA> 401320569
## 758            0                       918                      <NA> 401320569
## 759            0                   3146151                      <NA> 401320569
## 760            0                       981                      <NA> 401320569
## 761            0                       918                      <NA> 401320569
## 762            2                       918                      <NA> 401320569
## 763            1                       918                      <NA> 401320569
## 764            1                   2529183                      <NA> 401320569
## 765            1                   2529183                      <NA> 401320569
## 766            1                   2998938                      <NA> 401320569
## 767            1                   2998938                      <NA> 401320569
## 768            0                       796                      <NA> 401320569
## 769            0                   2529183                      <NA> 401320569
## 770            0                       796                      <NA> 401320569
## 771            0                   2998938                      <NA> 401320569
## 772            1                       812                      <NA> 401320569
## 773            1                       812                      <NA> 401320569
## 774            0                   2529137                       812 401320569
## 775            2                   2998938                       812 401320569
## 776            0                   3146151                      <NA> 401320569
## 777            0                   3146151                       812 401320569
## 778            0                   2998938                      <NA> 401320569
## 779            3                       812                   3058902 401320569
## 780            1                   2529137                      <NA> 401320569
## 781            1                   2529137                      <NA> 401320569
## 782            1                   2998938                      <NA> 401320569
## 783            0                   2998938                      <NA> 401320569
## 784            0                   2529137                       812 401320569
## 785            1                       764                      <NA> 401320569
## 786            1                       764                      <NA> 401320569
## 787            0                       918                      <NA> 401320569
## 788            0                   2529183                      <NA> 401320569
## 789            0                       918                      <NA> 401320569
## 790            0                       764                      <NA> 401320569
## 791            0                       918                      <NA> 401320569
## 792            0                       812                      <NA> 401320569
## 793            0                   3056728                      <NA> 401320569
## 794            0                       918                      <NA> 401320569
## 795            1                       918                      <NA> 401320569
## 796            0                       812                      <NA> 401320569
## 797            0                       764                      <NA> 401320569
## 798            0                       918                      <NA> 401320569
## 799            2                   2998938                       812 401320569
## 800            1                   2998938                      <NA> 401320569
## 801            1                   2529137                      <NA> 401320569
## 802            1                   2529137                      <NA> 401320569
## 803            0                       812                      <NA> 401320569
## 804            2                   2530082                       796 401320569
## 805            0                   2998938                      <NA> 401320569
## 806            0                       981                      <NA> 401320569
## 807            0                   2530082                      <NA> 401320569
## 808            2                   3146151                      <NA> 401320569
## 809            0                       812                      <NA> 401320569
## 810            0                   2530082                      <NA> 401320569
## 811            2                   2529137                      <NA> 401320569
## 812            0                       812                      <NA> 401320569
## 813            1                       812                      <NA> 401320569
## 814            0                   2529137                      <NA> 401320569
## 815            0                   2529183                   2530082 401320569
## 816            0                       981                      <NA> 401320569
## 817            0                   2529183                   2530082 401320569
## 818            0                   2530082                      <NA> 401320569
## 819            0                   2529137                      <NA> 401320569
## 820            0                       918                      <NA> 401320569
## 821            0                   2529137                      <NA> 401320569
## 822            1                   3099025                      <NA> 401320569
## 823            1                   3099025                      <NA> 401320569
## 824            0                   4068890                      <NA> 401320569
## 825            0                       764                   4068890 401320569
## 826            1                   3099025                      <NA> 401320569
## 827            1                   3099025                      <NA> 401320569
## 828            0                       918                      <NA> 401320569
## 829            2                   3056728                   2529137 401320569
## 830            0                       764                      <NA> 401320569
## 831            0                   3146151                      <NA> 401320569
## 832            0                   4068890                      <NA> 401320569
## 833            0                   3058902                      <NA> 401320569
## 834            2                       918                   3146151 401320569
## 835            3                       981                   3058902 401320569
## 836            0                       918                      <NA> 401320569
## 837            3                   3058902                       812 401320569
## 838            0                   2529137                      <NA> 401320569
## 839            0                   3058902                      <NA> 401320569
## 840            0                   4068890                      <NA> 401320569
## 841            0                   3146151                      <NA> 401320569
## 842            2                       764                   2998938 401320569
## 843            0                   2530082                      <NA> 401320569
## 844            2                   2529183                       764 401320569
## 845            2                   2530082                   4068890 401320569
## 846            0                   2566210                      <NA> 401320569
## 847            0                       796                      <NA> 401320569
## 848            0                   3056728                      <NA> 401320569
## 849            2                   3056728                      <NA> 401320569
## 850            0                       764                      <NA> 401320569
## 851            2                   2998938                   2566210 401320569
## 852            2                   3056728                   2530082 401320569
## 853            0                       764                      <NA> 401320569
## 854            0                       796                      <NA> 401320569
## 855            0                   2998938                      <NA> 401320569
## 856            0                   2530082                      <NA> 401320569
## 857            1                   2998938                      <NA> 401320569
## 858            1                   2998938                      <NA> 401320569
## 859            0                   2984730                      <NA> 401320569
## 860            0                   3099025                      <NA> 401320569
## 861            1                   3142149                      <NA> 401320569
## 862            1                   3142149                      <NA> 401320569
## 863            2                   4066534                   3058902 401320569
## 864            1                   3142149                      <NA> 401320569
## 865            1                   3142149                      <NA> 401320569
## 866            2                       812                       981 401320569
## 867            0                   3056728                      <NA> 401320569
## 868            0                       812                      <NA> 401320569
## 869            0                       851                      <NA> 401320569
## 870            0                   4066534                      <NA> 401320569
## 871            1                   4066534                      <NA> 401320569
## 872            3                   4068890                      <NA> 401320569
## 873            0                   4066534                      <NA> 401320569
## 874            1                   3056728                      <NA> 401320569
## 875            1                   3056728                      <NA> 401320569
## 876            0                   3058902                      <NA> 401320569
## 877            0                   4068890                      <NA> 401320569
## 878            0                   3058902                      <NA> 401320569
## 879            0                   3055808                      <NA> 401320569
## 880            0                   2984730                      <NA> 401320569
## 881            0                       851                      <NA> 401320569
## 882            0                   3056728                      <NA> 401320569
## 883            1                   3056728                      <NA> 401320569
## 884            0                      1017                      <NA> 401320570
## 885            1                      1017                      <NA> 401320570
## 886            1                      1017                      <NA> 401320570
## 887            0                   2998928                      <NA> 401320570
## 888            0                   4065870                      <NA> 401320570
## 889            3                   3149391                   4065870 401320570
## 890            0                       689                      <NA> 401320570
## 891            2                      1017                      1049 401320570
## 892            2                       689                   2987869 401320570
## 893            0                   3149391                      <NA> 401320570
## 894            0                       689                      <NA> 401320570
## 895            0                       689                   4065870 401320570
## 896            2                       689                      <NA> 401320570
## 897            0                   3149391                      <NA> 401320570
## 898            0                       689                      <NA> 401320570
## 899            2                   4065870                      <NA> 401320570
## 900            1                   2998928                      <NA> 401320570
## 901            1                   2998928                      <NA> 401320570
## 902            2                   3149391                      1049 401320570
## 903            0                   2987869                      <NA> 401320570
## 904            0                   4834791                      <NA> 401320570
## 905            0                   2998928                      <NA> 401320570
## 906            2                   4834791                      <NA> 401320570
## 907            2                   4065870                      1049 401320570
## 908            0                       689                      <NA> 401320570
## 909            2                   2987869                      <NA> 401320570
## 910            2                   3149391                   2529122 401320570
## 911            2                        91                      <NA> 401320570
## 912            0                      1049                      <NA> 401320570
## 913            2                   2998928                        91 401320570
## 914            2                   4834791                      <NA> 401320570
## 915            2                   2987869                      <NA> 401320570
## 916            0                   2529122                      <NA> 401320570
## 917            2                   3149391                      <NA> 401320570
## 918            1                   3149391                      <NA> 401320570
## 919            2                   2987869                      <NA> 401320570
## 920            0                      1017                      <NA> 401320570
## 921            3                   4420318                        91 401320570
## 922            2                   3149391                   3065570 401320570
## 923            2                   4420318                   2987869 401320570
## 924            2                   2987869                      <NA> 401320570
## 925            0                   4065870                      <NA> 401320570
## 926            0                   2529122                      <NA> 401320570
## 927            2                       689                   3142250 401320570
## 928            2                   4065870                      <NA> 401320570
## 929            2                   3142250                      <NA> 401320570
## 930            0                   2566106                      <NA> 401320570
## 931            3                   3099736                   2987869 401320570
## 932            0                      1017                   4420318 401320570
## 933            0                   3065570                      <NA> 401320570
## 934            2                      1017                      <NA> 401320570
## 935            2                   3142250                      <NA> 401320570
## 936            1                   3142250                      <NA> 401320570
## 937            0                   2529122                      <NA> 401320570
## 938            0                       689                      <NA> 401320570
## 939            0                   2566106                       689 401320570
## 940            0                   2566106                      <NA> 401320570
## 941            0                   3142250                      <NA> 401320570
## 942            1                   3142250                      <NA> 401320570
## 943            0                      1049                      <NA> 401320570
## 944            0                   2998928                      <NA> 401320570
## 945            0                   4420318                      <NA> 401320570
## 946            2                   2529122                   3065570 401320570
## 947            2                   2998928                      <NA> 401320570
## 948            0                   3149391                      <NA> 401320570
## 949            3                   2998928                   3142250 401320570
## 950            1                   3149391                      <NA> 401320570
## 951            1                   3149391                      <NA> 401320570
## 952            0                   2998928                      <NA> 401320570
## 953            0                   4834791                   4420318 401320570
## 954            0                   3099736                      <NA> 401320570
## 955            0                   3149391                      <NA> 401320570
## 956            0                   2998928                      <NA> 401320570
## 957            1                   2998928                      <NA> 401320570
## 958            0                   3065570                      <NA> 401320570
## 959            0                   3149391                      <NA> 401320570
## 960            3                        91                   2998928 401320570
## 961            0                   4065870                      <NA> 401320570
## 962            3                        91                   2987869 401320570
## 963            2                      1017                   3149391 401320570
## 964            0                      1017                      <NA> 401320570
## 965            2                      1017                   4065870 401320570
## 966            0                       689                      <NA> 401320570
## 967            2                   3149391                      <NA> 401320570
## 968            0                   2998928                      1017 401320570
## 969            0                      1049                      <NA> 401320570
## 970            0                       689                      <NA> 401320570
## 971            0                   2529122                      <NA> 401320570
## 972            2                   4065870                      <NA> 401320570
## 973            0                      1017                      <NA> 401320570
## 974            3                   3917453                        91 401320570
## 975            3                   2987869                        91 401320570
## 976            0                   2529122                      <NA> 401320570
## 977            0                        91                      <NA> 401320570
## 978            0                      1017                      <NA> 401320570
## 979            2                   2998928                      <NA> 401320570
## 980            2                   4420318                   2987869 401320570
## 981            0                   4065870                      <NA> 401320570
## 982            3                   2998928                      <NA> 401320570
## 983            0                   4065870                      <NA> 401320570
## 984            0                   2998928                      <NA> 401320570
## 985            0                   3149391                   2998928 401320570
## 986            0                   2998928                      <NA> 401320570
## 987            2                   4065870                   3149391 401320570
## 988            2                   2998928                        91 401320570
## 989            0                   4065870                       689 401320570
## 990            3                   3065570                   2529122 401320570
## 991            0                       689                      <NA> 401320570
## 992            2                   4065870                      <NA> 401320570
## 993            0                        91                      <NA> 401320570
## 994            1                   3149391                      <NA> 401320570
## 995            1                   3149391                      <NA> 401320570
## 996            3                   3099736                      <NA> 401320570
## 997            1                   2987869                      <NA> 401320570
## 998            1                   2987869                      <NA> 401320570
## 999            2                   3065570                   3149391 401320570
## 1000           2                      1049                   3149391 401320570
## 1001           2                   2987869                   3142250 401320570
## 1002           0                      1049                      <NA> 401320570
## 1003           0                   3065570                      <NA> 401320570
## 1004           2                       689                   3142250 401320570
## 1005           0                   4065870                      <NA> 401320570
## 1006           1                   2998928                      <NA> 401320570
## 1007           1                   2998928                      <NA> 401320570
## 1008           0                   4065870                      <NA> 401320570
## 1009           0                   3099736                      <NA> 401320570
## 1010           0                   3065570                      <NA> 401320570
## 1011           0                   3142250                      <NA> 401320570
## 1012           2                   3149391                   3065570 401320570
## 1013           0                   2987869                      <NA> 401320570
## 1014           2                   3149391                      1049 401320570
## 1015           0                   3142250                      <NA> 401320570
## 1016           0                   3142250                      <NA> 401320570
## 1017           2                      1017                   4065870 401320570
## 1018           0                   2987869                      1049 401320570
## 1019           1                   3065570                      <NA> 401320570
## 1020           1                   3065570                      <NA> 401320570
## 1021           2                   2998928                   2987869 401320570
## 1022           0                      1049                      <NA> 401320570
## 1023           2                      1017                   2566106 401320570
## 1024           0                   2987869                      <NA> 401320570
## 1025           0                   3065570                      <NA> 401320570
## 1026           1                   2998928                      <NA> 401320570
## 1027           1                   2998928                      <NA> 401320570
## 1028           0                   4065870                      <NA> 401320570
## 1029           0                   2998928                      <NA> 401320570
## 1030           2                   2998928                        91 401320570
## 1031           2                      1017                   3065570 401320570
## 1032           2                   2566106                      <NA> 401320570
## 1033           2                       689                   3099736 401320570
## 1034           2                   2566106                      <NA> 401320570
## 1035           2                   2987869                   3142250 401320570
## 1036           1                   2566106                      <NA> 401320570
## 1037           0                   2566106                      <NA> 401320570
## 1038           0                   2998928                      <NA> 401320570
## 1039           0                   3149391                      <NA> 401320570
## 1040           0                   3142250                      <NA> 401320570
## 1041           3                   2529122                   2566106 401320570
## 1042           3                   2987869                   3142250 401320570
## 1043           2                   3065570                   4834791 401320570
## 1044           0                   2987869                      <NA> 401320570
## 1045           2                       689                      <NA> 401320570
## 1046           0                   2566106                      <NA> 401320570
## 1047           0                        91                      <NA> 401320570
## 1048           0                   2566106                   3917453 401320570
## 1049           2                   3917453                        91 401320570
## 1050           2                   3065570                      <NA> 401320570
## 1051           0                   3917453                      <NA> 401320570
## 1052           2                   2987869                      <NA> 401320570
## 1053           2                   2566106                      <NA> 401320570
## 1054           0                       689                      <NA> 401320570
## 1055           0                   2987869                      <NA> 401320570
## 1056           0                   2566106                      <NA> 401320570
## 1057           3                        91                   3917453 401320570
## 1058           2                   3149391                   2529122 401320570
## 1059           0                   2987869                      <NA> 401320570
## 1060           2                   2529122                   4065870 401320570
## 1061           0                   2998928                   3149391 401320570
## 1062           0                   3065570                      <NA> 401320570
## 1063           3                   2998928                        91 401320570
## 1064           0                   3142191                      <NA> 401320571
## 1065           0                   4065849                      <NA> 401320571
## 1066           0                   3913903                      <NA> 401320571
## 1067           1                   2593770                      <NA> 401320571
## 1068           1                   2593770                      <NA> 401320571
## 1069           0                   3142948                      <NA> 401320571
## 1070           2                   4282173                      <NA> 401320571
## 1071           1                   4282173                      <NA> 401320571
## 1072           0                      1014                       887 401320571
## 1073           2                   3142191                   3142948 401320571
## 1074           0                   2593770                      <NA> 401320571
## 1075           2                      1014                      <NA> 401320571
## 1076           0                   4065849                      <NA> 401320571
## 1077           2                   3913903                      1014 401320571
## 1078           3                   4066533                      <NA> 401320571
## 1079           1                   3142191                      <NA> 401320571
## 1080           1                   3142191                      <NA> 401320571
## 1081           2                   4282173                   4065849 401320571
## 1082           2                      1013                      1014 401320571
## 1083           2                   2593770                      <NA> 401320571
## 1084           1                   2593770                      <NA> 401320571
## 1085           2                       887                      <NA> 401320571
## 1086           0                   3913903                      <NA> 401320571
## 1087           0                   3913903                      <NA> 401320571
## 1088           2                   2593770                   4066533 401320571
## 1089           2                   3142191                      1014 401320571
## 1090           3                   4066533                      <NA> 401320571
## 1091           3                   3142191                   2984741 401320571
## 1092           3                   4282173                       887 401320571
## 1093           0                   2984741                      <NA> 401320571
## 1094           2                   2566211                       887 401320571
## 1095           0                       887                      <NA> 401320571
## 1096           0                   3913903                      <NA> 401320571
## 1097           0                   3913903                      <NA> 401320571
## 1098           0                   2984741                      <NA> 401320571
## 1099           1                   2984741                      <NA> 401320571
## 1100           0                   2984741                      <NA> 401320571
## 1101           0                   2593770                      <NA> 401320571
## 1102           0                   3058908                      <NA> 401320571
## 1103           1                   2593770                      <NA> 401320571
## 1104           1                   2593770                      <NA> 401320571
## 1105           0                      1002                      <NA> 401320571
## 1106           2                   2593770                   4066533 401320571
## 1107           0                   3102133                      <NA> 401320571
## 1108           0                   3058908                      <NA> 401320571
## 1109           0                   3102133                      <NA> 401320571
## 1110           0                   3142191                      <NA> 401320571
## 1111           2                   4065850                       887 401320571
## 1112           2                   3913903                      1002 401320571
## 1113           0                   4065849                      <NA> 401320571
## 1114           0                   3058908                      <NA> 401320571
## 1115           2                   4065849                   4065850 401320571
## 1116           0                   4065820                      <NA> 401320571
## 1117           0                   4065850                   3142191 401320571
## 1118           0                   4065850                      <NA> 401320571
## 1119           2                   3142191                      1013 401320571
## 1120           3                   3102133                   4065850 401320571
## 1121           0                      1014                      <NA> 401320571
## 1122           0                   4065820                      <NA> 401320571
## 1123           3                       887                   3102133 401320571
## 1124           0                      1014                      <NA> 401320571
## 1125           0                   3102133                      <NA> 401320571
## 1126           0                   3142191                      <NA> 401320571
## 1127           0                   4281253                      <NA> 401320571
## 1128           2                      1014                   3142191 401320571
## 1129           0                   2593770                      <NA> 401320571
## 1130           0                   4065820                      <NA> 401320571
## 1131           2                      1014                   4065820 401320571
## 1132           3                   3142948                   4065820 401320571
## 1133           1                   2593770                      <NA> 401320571
## 1134           0                   2593770                      <NA> 401320571
## 1135           2                   3142948                      <NA> 401320571
## 1136           0                   4066533                      <NA> 401320571
## 1137           2                      1014                      <NA> 401320571
## 1138           0                       887                      <NA> 401320571
## 1139           0                   2593770                      <NA> 401320571
## 1140           1                      1014                      <NA> 401320571
## 1141           1                   4282471                      <NA> 401320571
## 1142           0                   4282471                      <NA> 401320571
## 1143           0                   2593770                      <NA> 401320571
## 1144           0                   3913903                       887 401320571
## 1145           0                      1014                      <NA> 401320571
## 1146           0                   3142948                      <NA> 401320571
## 1147           0                      1014                      <NA> 401320571
## 1148           0                   4066533                      <NA> 401320571
## 1149           0                   3102133                      <NA> 401320571
## 1150           0                   3142191                      <NA> 401320571
## 1151           1                   4066533                      <NA> 401320571
## 1152           0                   3058908                      <NA> 401320571
## 1153           0                   4282471                      <NA> 401320571
## 1154           2                   3913903                   3058908 401320571
## 1155           0                   3913903                      <NA> 401320571
## 1156           0                   3142948                      <NA> 401320571
## 1157           0                   4282173                      <NA> 401320571
## 1158           0                   3142948                      <NA> 401320571
## 1159           1                      1014                      <NA> 401320571
## 1160           1                      1014                      <NA> 401320571
## 1161           0                   3142948                      <NA> 401320571
## 1162           0                       887                      <NA> 401320571
## 1163           0                   3142191                      <NA> 401320571
## 1164           0                       887                      <NA> 401320571
## 1165           3                   4065850                   2593770 401320571
## 1166           0                   2593770                      <NA> 401320571
## 1167           0                   4282173                      <NA> 401320571
## 1168           1                   4282173                      <NA> 401320571
## 1169           2                      1013                   2984741 401320571
## 1170           0                   3142191                      <NA> 401320571
## 1171           0                   2984741                      <NA> 401320571
## 1172           2                   4065849                   2593770 401320571
## 1173           0                      1013                      <NA> 401320571
## 1174           0                   2566211                   3913903 401320571
## 1175           3                   2593770                       887 401320571
## 1176           2                      1014                      <NA> 401320571
## 1177           2                   3142191                      <NA> 401320571
## 1178           0                   2984741                      <NA> 401320571
## 1179           0                   2984741                      <NA> 401320571
## 1180           0                   4066533                      <NA> 401320571
## 1181           0                      1014                      <NA> 401320571
## 1182           0                   3142191                   4065850 401320571
## 1183           0                   2984741                      <NA> 401320571
## 1184           2                      1013                      <NA> 401320571
## 1185           2                   4282173                      <NA> 401320571
## 1186           0                   4066533                      <NA> 401320571
## 1187           2                   2593770                      <NA> 401320571
## 1188           0                      1013                      <NA> 401320571
## 1189           0                   2984741                      <NA> 401320571
## 1190           0                   2593770                      <NA> 401320571
## 1191           0                      1014                      <NA> 401320571
## 1192           2                   2566211                   2593770 401320571
## 1193           2                   4065850                      <NA> 401320571
## 1194           2                      1002                   4065820 401320571
## 1195           1                   2984741                      <NA> 401320571
## 1196           1                   2984741                      <NA> 401320571
## 1197           0                   4065820                      <NA> 401320571
## 1198           2                   2984741                      <NA> 401320571
## 1199           0                   4065850                      <NA> 401320571
## 1200           0                   4065820                      <NA> 401320571
## 1201           0                   4065820                      <NA> 401320571
## 1202           3                   4065850                   3102133 401320571
## 1203           1                   2984741                      <NA> 401320571
## 1204           2                   3058908                      <NA> 401320571
## 1205           2                   4281253                   4066533 401320571
## 1206           2                   4066533                      <NA> 401320571
## 1207           1                   4066533                      <NA> 401320571
## 1208           0                   2593770                      <NA> 401320571
## 1209           2                   2984741                      <NA> 401320571
## 1210           0                   4066533                      <NA> 401320571
## 1211           0                   3913903                      <NA> 401320571
## 1212           0                   3102133                      <NA> 401320571
## 1213           0                   4065849                      <NA> 401320571
## 1214           0                   3913903                      <NA> 401320571
## 1215           1                   4066533                      <NA> 401320571
## 1216           0                   2593770                      <NA> 401320571
## 1217           0                   3142191                      <NA> 401320571
## 1218           0                   3142191                      <NA> 401320571
## 1219           2                   4065849                   2593770 401320571
## 1220           0                      1014                      <NA> 401320571
## 1221           0                   4281253                      1002 401320571
## 1222           0                   2593770                      <NA> 401320571
## 1223           2                   2984741                      1014 401320571
## 1224           0                   4066533                      <NA> 401320571
## 1225           3                   3142191                      1014 401320571
## 1226           3                   2593770                   4066533 401320571
## 1227           0                      1013                      <NA> 401320571
## 1228           1                   2984741                      <NA> 401320571
## 1229           1                   2984741                      <NA> 401320571
## 1230           0                   4282173                      <NA> 401320571
## 1231           0                      1002                      <NA> 401320571
## 1232           0                   4282173                      <NA> 401320571
## 1233           0                   3142191                      <NA> 401320571
## 1234           2                      1013                      <NA> 401320571
## 1235           1                   4066533                      <NA> 401320571
## 1236           0                   4066533                      <NA> 401320571
## 1237           0                   3142191                      <NA> 401320571
## 1238           0                   2593770                      1002 401320571
## 1239           0                   3142191                      <NA> 401320571
## 1240           0                   3142327                      <NA> 401320572
## 1241           0                   2999101                      <NA> 401320572
## 1242           3                       585                      <NA> 401320572
## 1243           0                       869                      <NA> 401320572
## 1244           0                   2490553                      <NA> 401320572
## 1245           2                   3142086                      <NA> 401320572
## 1246           2                   2999101                   3058895 401320572
## 1247           0                   2491205                      <NA> 401320572
## 1248           2                       869                      <NA> 401320572
## 1249           0                   3142327                       869 401320572
## 1250           3                       860                      <NA> 401320572
## 1251           0                   2491205                      <NA> 401320572
## 1252           3                   3142327                   3142086 401320572
## 1253           0                   2999101                      <NA> 401320572
## 1254           2                       585                   3142086 401320572
## 1255           0                       860                      <NA> 401320572
## 1256           0                       585                   2999101 401320572
## 1257           0                       869                      <NA> 401320572
## 1258           2                       869                      <NA> 401320572
## 1259           2                       585                   2490553 401320572
## 1260           0                   3058895                      <NA> 401320572
## 1261           2                       869                      <NA> 401320572
## 1262           0                   3142086                   2999101 401320572
## 1263           3                   2491205                   4281077 401320572
## 1264           1                       869                      <NA> 401320572
## 1265           1                       869                      <NA> 401320572
## 1266           2                   2490553                   4281077 401320572
## 1267           0                   3058895                   2490553 401320572
## 1268           2                   3142086                      1107 401320572
## 1269           2                   4281077                   2491205 401320572
## 1270           0                   3913881                      <NA> 401320572
## 1271           0                       860                      <NA> 401320572
## 1272           0                   4281077                      <NA> 401320572
## 1273           2                   2999101                      <NA> 401320572
## 1274           0                   3913881                      <NA> 401320572
## 1275           2                       869                      <NA> 401320572
## 1276           0                   4065780                      <NA> 401320572
## 1277           0                       585                      <NA> 401320572
## 1278           0                   3906753                      <NA> 401320572
## 1279           0                   3058895                      <NA> 401320572
## 1280           0                       869                      <NA> 401320572
## 1281           3                       869                   3906753 401320572
## 1282           0                   2490553                      <NA> 401320572
## 1283           3                   3906753                      <NA> 401320572
## 1284           0                   3142327                      <NA> 401320572
## 1285           3                   2999101                       860 401320572
## 1286           0                   2491205                      <NA> 401320572
## 1287           0                   4066548                   2490553 401320572
## 1288           1                   3142327                      <NA> 401320572
## 1289           0                   3142327                      <NA> 401320572
## 1290           0                   2490553                      <NA> 401320572
## 1291           1                   2491205                      <NA> 401320572
## 1292           1                   2491205                      <NA> 401320572
## 1293           0                   2999101                      <NA> 401320572
## 1294           2                       860                      <NA> 401320572
## 1295           0                   2490553                      <NA> 401320572
## 1296           0                       869                   2490553 401320572
## 1297           1                       869                      <NA> 401320572
## 1298           1                       869                      <NA> 401320572
## 1299           2                   3142086                   2491205 401320572
## 1300           0                   4066548                      <NA> 401320572
## 1301           0                       869                   3142086 401320572
## 1302           3                       869                       860 401320572
## 1303           0                   2490553                      <NA> 401320572
## 1304           0                   2999101                      <NA> 401320572
## 1305           3                   4281077                       585 401320572
## 1306           2                   3906753                   3058895 401320572
## 1307           0                       585                      <NA> 401320572
## 1308           1                   2491205                      <NA> 401320572
## 1309           1                   2491205                      <NA> 401320572
## 1310           0                   2999101                      <NA> 401320572
## 1311           2                   3906753                   3058895 401320572
## 1312           1                       585                      <NA> 401320572
## 1313           1                       585                      <NA> 401320572
## 1314           0                   3906753                   2490553 401320572
## 1315           0                   3058895                      <NA> 401320572
## 1316           3                   3906753                       869 401320572
## 1317           1                   2490553                      <NA> 401320572
## 1318           1                   2490553                      <NA> 401320572
## 1319           0                   3058895                      <NA> 401320572
## 1320           2                   3058895                      <NA> 401320572
## 1321           2                   3142086                   2491205 401320572
## 1322           0                   3906753                      <NA> 401320572
## 1323           1                   3906753                      <NA> 401320572
## 1324           1                   3906753                      <NA> 401320572
## 1325           0                       585                      <NA> 401320572
## 1326           2                   2999101                       860 401320572
## 1327           1                   2999101                      <NA> 401320572
## 1328           1                       585                      <NA> 401320572
## 1329           1                       585                      <NA> 401320572
## 1330           0                   2490553                      <NA> 401320572
## 1331           0                       869                      <NA> 401320572
## 1332           0                   3142327                      <NA> 401320572
## 1333           0                       869                   3142086 401320572
## 1334           0                       869                      <NA> 401320572
## 1335           1                       869                      <NA> 401320572
## 1336           0                   2491205                      <NA> 401320572
## 1337           1                       869                      <NA> 401320572
## 1338           1                       869                      <NA> 401320572
## 1339           0                   4281077                      <NA> 401320572
## 1340           2                   3906753                   2999101 401320572
## 1341           0                       869                      <NA> 401320572
## 1342           0                   3906753                      <NA> 401320572
## 1343           2                   2491205                      1107 401320572
## 1344           0                   2999101                      <NA> 401320572
## 1345           1                   2490553                      <NA> 401320572
## 1346           1                   2490553                      <NA> 401320572
## 1347           0                   3058895                      <NA> 401320572
## 1348           2                   4281077                   2491205 401320572
## 1349           1                       860                      <NA> 401320572
## 1350           1                       860                      <NA> 401320572
## 1351           2                   2490553                      1107 401320572
## 1352           2                   3916517                       860 401320572
## 1353           0                   4281077                      <NA> 401320572
## 1354           3                      1107                   3913881 401320572
## 1355           0                       869                      <NA> 401320572
## 1356           2                   3916517                      <NA> 401320572
## 1357           1                   2490553                      <NA> 401320572
## 1358           1                   2490553                      <NA> 401320572
## 1359           0                   3058895                      <NA> 401320572
## 1360           1                   3058895                      <NA> 401320572
## 1361           0                   4281077                      <NA> 401320572
## 1362           2                   2490553                       585 401320572
## 1363           0                       860                      <NA> 401320572
## 1364           2                   2490553                   3142086 401320572
## 1365           0                   3906753                      <NA> 401320572
## 1366           2                       860                      <NA> 401320572
## 1367           1                   4281077                      <NA> 401320572
## 1368           0                   4281077                      <NA> 401320572
## 1369           3                   2491205                       585 401320572
## 1370           0                       869                      <NA> 401320572
## 1371           3                   3906753                       869 401320572
## 1372           2                   2490553                       585 401320572
## 1373           0                   2999101                      <NA> 401320572
## 1374           3                       585                   3142086 401320572
## 1375           2                   3058895                       860 401320572
## 1376           3                       585                      <NA> 401320572
## 1377           0                   3906753                      <NA> 401320572
## 1378           0                   3058895                      <NA> 401320572
## 1379           2                   2491205                      <NA> 401320572
## 1380           1                   2491205                      <NA> 401320572
## 1381           2                   2999101                       869 401320572
## 1382           0                       585                      <NA> 401320572
## 1383           1                       869                      <NA> 401320572
## 1384           0                       869                      <NA> 401320572
## 1385           0                       585                      <NA> 401320572
## 1386           2                   3058895                       869 401320572
## 1387           0                   2490553                      <NA> 401320572
## 1388           2                   3142327                       585 401320572
## 1389           1                   2999101                      <NA> 401320572
## 1390           1                   2999101                      <NA> 401320572
## 1391           0                   3906753                   2491205 401320572
## 1392           3                       869                       860 401320572
## 1393           0                       585                      <NA> 401320572
## 1394           1                       869                      <NA> 401320572
## 1395           1                       869                      <NA> 401320572
## 1396           0                       860                      <NA> 401320572
## 1397           1                       860                      <NA> 401320572
## 1398           1                       860                      <NA> 401320572
## 1399           2                   2491205                      <NA> 401320572
## 1400           0                   2999101                      <NA> 401320572
## 1401           1                       585                      <NA> 401320572
## 1402           1                       585                      <NA> 401320572
## 1403           2                       860                      <NA> 401320572
## 1404           0                   3142327                      <NA> 401320572
## 1405           0                       869                      <NA> 401320572
## 1406           2                   3058895                      <NA> 401320572
## 1407           0                   3142327                      <NA> 401320572
## 1408           0                   2491205                      <NA> 401320572
## 1409           1                   2491205                      <NA> 401320572
## 1410           0                   2491205                      <NA> 401320572
## 1411           1                       860                      <NA> 401320572
## 1412           1                       860                      <NA> 401320572
## 1413           0                   2491205                      <NA> 401320572
## 1414           2                       766                   2999035 401320573
## 1415           0                   4282173                      <NA> 401320573
## 1416           0                   2999035                      <NA> 401320573
## 1417           0                   2999035                      <NA> 401320573
## 1418           2                   2529205                   2999035 401320573
## 1419           1                   4066533                      <NA> 401320573
## 1420           1                   4066533                      <NA> 401320573
## 1421           0                   4282173                      <NA> 401320573
## 1422           0                   2999035                      <NA> 401320573
## 1423           3                   2593770                   4066533 401320573
## 1424           0                   2999035                      <NA> 401320573
## 1425           3                   4065849                   4066533 401320573
## 1426           2                   4065849                   2593770 401320573
## 1427           0                   4066533                   2999035 401320573
## 1428           3                   4066533                   4065849 401320573
## 1429           0                   4066585                      <NA> 401320573
## 1430           2                   2593770                      <NA> 401320573
## 1431           0                   4066585                      <NA> 401320573
## 1432           2                   2955898                   4066585 401320573
## 1433           2                   2593770                   4066533 401320573
## 1434           0                   2955898                      <NA> 401320573
## 1435           0                   2529205                      <NA> 401320573
## 1436           3                   2955898                   2529205 401320573
## 1437           0                   2593770                      <NA> 401320573
## 1438           2                   2955898                      <NA> 401320573
## 1439           0                   4066533                      <NA> 401320573
## 1440           2                       766                   4066585 401320573
## 1441           0                   4066533                      <NA> 401320573
## 1442           0                   2566186                      <NA> 401320573
## 1443           2                   3906949                      <NA> 401320573
## 1444           1                   3906949                      <NA> 401320573
## 1445           0                   4065850                      <NA> 401320573
## 1446           2                   2566186                      <NA> 401320573
## 1447           2                   2593770                   4065850 401320573
## 1448           2                       766                   4066585 401320573
## 1449           0                   4282173                      <NA> 401320573
## 1450           0                   3102133                      <NA> 401320573
## 1451           1                   3102133                      <NA> 401320573
## 1452           1                   3102133                      <NA> 401320573
## 1453           1                       766                      <NA> 401320573
## 1454           0                       766                      <NA> 401320573
## 1455           2                   4281253                   4066533 401320573
## 1456           0                   2566186                      <NA> 401320573
## 1457           0                   2566186                   4065850 401320573
## 1458           0                   4066585                      <NA> 401320573
## 1459           0                   4065849                      <NA> 401320573
## 1460           3                       887                   3102133 401320573
## 1461           0                       766                      <NA> 401320573
## 1462           0                   2529205                      <NA> 401320573
## 1463           0                   2566186                      <NA> 401320573
## 1464           0                   4065850                   2566186 401320573
## 1465           2                   2999035                      <NA> 401320573
## 1466           1                   2999035                      <NA> 401320573
## 1467           1                   4066533                      <NA> 401320573
## 1468           1                   4066533                      <NA> 401320573
## 1469           0                   2999035                      <NA> 401320573
## 1470           2                       766                      <NA> 401320573
## 1471           0                   4282173                      <NA> 401320573
## 1472           0                   2999035                      <NA> 401320573
## 1473           3                   4066533                   4065849 401320573
## 1474           1                   2529205                      <NA> 401320573
## 1475           1                   2529205                      <NA> 401320573
## 1476           1                   2529205                      <NA> 401320573
## 1477           2                   2593770                      <NA> 401320573
## 1478           0                   3906972                      <NA> 401320573
## 1479           2                       766                      <NA> 401320573
## 1480           0                   2529205                      <NA> 401320573
## 1481           0                       887                      <NA> 401320573
## 1482           2                   3906972                      <NA> 401320573
## 1483           0                   4282173                      <NA> 401320573
## 1484           0                   3906972                      <NA> 401320573
## 1485           0                   4066533                      <NA> 401320573
## 1486           1                   4066533                      <NA> 401320573
## 1487           1                   4066533                      <NA> 401320573
## 1488           0                   4066585                      <NA> 401320573
## 1489           2                       766                   2999035 401320573
## 1490           2                       887                   4066533 401320573
## 1491           2                   2529205                   4066585 401320573
## 1492           0                       887                      <NA> 401320573
## 1493           0                       766                      <NA> 401320573
## 1494           1                       766                      <NA> 401320573
## 1495           2                   4282173                   2593770 401320573
## 1496           3                   2529205                   3906949 401320573
## 1497           0                   4066533                   2999035 401320573
## 1498           2                   4066533                      <NA> 401320573
## 1499           2                       766                   2955898 401320573
## 1500           0                       766                      <NA> 401320573
## 1501           0                   2999035                      <NA> 401320573
## 1502           0                   2590093                      <NA> 401320573
## 1503           1                       766                      <NA> 401320573
## 1504           1                       766                      <NA> 401320573
## 1505           0                   4282173                      <NA> 401320573
## 1506           0                   4066585                      <NA> 401320573
## 1507           2                   4066533                   2593770 401320573
## 1508           0                   2593770                      <NA> 401320573
## 1509           0                   2593770                      <NA> 401320573
## 1510           0                   2955898                      <NA> 401320573
## 1511           2                   4282173                   4066533 401320573
## 1512           0                   2529205                      <NA> 401320573
## 1513           2                   2593770                      <NA> 401320573
## 1514           0                   2999035                      <NA> 401320573
## 1515           0                   4066533                      <NA> 401320573
## 1516           0                       766                      <NA> 401320573
## 1517           0                   4066533                      <NA> 401320573
## 1518           0                   2955898                      <NA> 401320573
## 1519           2                   2529205                   4066585 401320573
## 1520           0                       887                      <NA> 401320573
## 1521           0                       766                      <NA> 401320573
## 1522           0                   3102133                      <NA> 401320573
## 1523           0                   3906972                   4066533 401320573
## 1524           3                   2593770                   4066533 401320573
## 1525           0                   4066585                      <NA> 401320573
## 1526           1                   3102133                      <NA> 401320573
## 1527           1                   3102133                      <NA> 401320573
## 1528           0                       766                      <NA> 401320573
## 1529           1                   3906949                      <NA> 401320573
## 1530           1                   3906949                      <NA> 401320573
## 1531           2                   3102133                   4066533 401320573
## 1532           1                   3906949                      <NA> 401320573
## 1533           1                   3906949                      <NA> 401320573
## 1534           3                   4065849                   4066533 401320573
## 1535           2                   2999035                      <NA> 401320573
## 1536           0                   3102133                      <NA> 401320573
## 1537           0                   2566186                      <NA> 401320573
## 1538           2                   4066533                      <NA> 401320573
## 1539           0                   4066533                      <NA> 401320573
## 1540           2                       766                   3906949 401320573
## 1541           3                   4066533                   4065849 401320573
## 1542           0                   4066533                      <NA> 401320573
## 1543           0                   4282173                      <NA> 401320573
## 1544           0                   2999035                      <NA> 401320573
## 1545           0                   3102133                      <NA> 401320573
## 1546           0                       887                      <NA> 401320573
## 1547           0                   2529205                      <NA> 401320573
## 1548           0                       766                      <NA> 401320573
## 1549           0                   2955898                   3102133 401320573
## 1550           0                   2955898                      <NA> 401320573
## 1551           0                   3102133                      <NA> 401320573
## 1552           2                   2529205                       766 401320573
## 1553           0                   4065850                      <NA> 401320573
## 1554           1                   2529205                      <NA> 401320573
## 1555           1                   2529205                      <NA> 401320573
## 1556           2                       887                   4066533 401320573
## 1557           2                       766                   2566186 401320573
## 1558           0                   4066533                      <NA> 401320573
## 1559           0                   2529205                      <NA> 401320573
## 1560           0                   3102133                      <NA> 401320573
## 1561           2                   4065850                   3102133 401320573
## 1562           2                   3906972                   3906949 401320573
## 1563           3                       887                   4066533 401320573
## 1564           0                   2955898                      <NA> 401320573
## 1565           0                   3906949                   4282173 401320573
## 1566           2                   3906949                      <NA> 401320573
## 1567           3                       887                   2593770 401320573
## 1568           0                       766                      <NA> 401320573
## 1569           3                   4066533                   4282173 401320573
## 1570           0                   2529205                      <NA> 401320573
## 1571           3                   4282173                   4066533 401320573
## 1572           0                   2593770                      <NA> 401320573
## 1573           2                       766                   2999035 401320573
## 1574           2                   2593770                      <NA> 401320573
## 1575           1                   4066533                      <NA> 401320573
## 1576           1                   4066533                      <NA> 401320573
## 1577           2                       766                      <NA> 401320573
## 1578           0                       887                      <NA> 401320573
## 1579           0                   2955898                      <NA> 401320573
## 1580           0                       887                      <NA> 401320573
## 1581           2                   2566186                   4066585 401320573
## 1582           1                   2593770                      <NA> 401320573
## 1583           1                   2593770                      <NA> 401320573
## 1584           0                   4066585                      <NA> 401320573
## 1585           1                   2566186                      <NA> 401320573
## 1586           0                   2566186                      <NA> 401320573
## 1587           0                   4282173                   2955898 401320573
## 1588           3                   3906949                   2566186 401320573
## 1589           2                   4065849                   2593770 401320573
## 1590           0                   2955898                      <NA> 401320573
## 1591           3                   3142327                   3142086 401320574
## 1592           0                       918                      <NA> 401320574
## 1593           0                   2490553                      <NA> 401320574
## 1594           0                   3142327                      <NA> 401320574
## 1595           0                   3146151                      <NA> 401320574
## 1596           0                   2530082                      <NA> 401320574
## 1597           3                       585                      <NA> 401320574
## 1598           0                       796                      <NA> 401320574
## 1599           2                   2490553                   2491205 401320574
## 1600           0                   2530082                      <NA> 401320574
## 1601           2                       918                       796 401320574
## 1602           0                   2490553                      <NA> 401320574
## 1603           2                   2529137                   2530082 401320574
## 1604           0                   2529137                      <NA> 401320574
## 1605           2                       918                   3146151 401320574
## 1606           0                   2491205                      <NA> 401320574
## 1607           2                   2529137                      <NA> 401320574
## 1608           3                       585                   3142086 401320574
## 1609           0                       585                      <NA> 401320574
## 1610           2                       918                       796 401320574
## 1611           0                   2490553                      <NA> 401320574
## 1612           0                       918                      <NA> 401320574
## 1613           0                   2530082                      <NA> 401320574
## 1614           0                   3142327                      <NA> 401320574
## 1615           3                   2491205                      1107 401320574
## 1616           0                   3146151                      <NA> 401320574
## 1617           0                   2491205                   3146151 401320574
## 1618           0                       918                      <NA> 401320574
## 1619           0                      1107                      <NA> 401320574
## 1620           2                       918                   3055808 401320574
## 1621           3                   4281077                   2491205 401320574
## 1622           1                   3055808                      <NA> 401320574
## 1623           1                   3055808                      <NA> 401320574
## 1624           0                      1107                   3056728 401320574
## 1625           1                   4281077                      <NA> 401320574
## 1626           1                   4281077                      <NA> 401320574
## 1627           0                   3142149                      <NA> 401320574
## 1628           0                   4281077                      <NA> 401320574
## 1629           0                   3142086                      <NA> 401320574
## 1630           0                       585                      <NA> 401320574
## 1631           2                       918                       796 401320574
## 1632           0                   4281077                      <NA> 401320574
## 1633           0                   4281077                      <NA> 401320574
## 1634           0                   3913881                      <NA> 401320574
## 1635           2                   3913881                      <NA> 401320574
## 1636           1                   3056728                      <NA> 401320574
## 1637           1                   3056728                      <NA> 401320574
## 1638           0                       796                      <NA> 401320574
## 1639           2                   3142327                      <NA> 401320574
## 1640           0                   2530082                      <NA> 401320574
## 1641           0                   2490553                      <NA> 401320574
## 1642           1                   2490553                      <NA> 401320574
## 1643           0                   2530082                      <NA> 401320574
## 1644           0                   3146151                      <NA> 401320574
## 1645           0                   3142327                      <NA> 401320574
## 1646           0                       918                      <NA> 401320574
## 1647           0                   2491205                   2530082 401320574
## 1648           1                   2491205                      <NA> 401320574
## 1649           0                   2491205                      <NA> 401320574
## 1650           0                   3146151                   3142086 401320574
## 1651           2                   2490553                   3142327 401320574
## 1652           0                       796                      <NA> 401320574
## 1653           0                   3146151                      <NA> 401320574
## 1654           2                   3056728                      <NA> 401320574
## 1655           0                   2490553                      <NA> 401320574
## 1656           2                   3146151                       796 401320574
## 1657           0                       796                      <NA> 401320574
## 1658           0                   2490553                      <NA> 401320574
## 1659           3                   2529137                       918 401320574
## 1660           0                       585                      <NA> 401320574
## 1661           2                       585                   3907781 401320574
## 1662           0                       918                      <NA> 401320574
## 1663           1                       918                      <NA> 401320574
## 1664           0                       918                      <NA> 401320574
## 1665           0                       918                      <NA> 401320574
## 1666           2                   3907781                      1107 401320574
## 1667           0                   3056728                      <NA> 401320574
## 1668           0                      1107                      <NA> 401320574
## 1669           2                   3142086                      <NA> 401320574
## 1670           1                       918                      <NA> 401320574
## 1671           1                       918                      <NA> 401320574
## 1672           3                      1107                       585 401320574
## 1673           2                   3056728                       918 401320574
## 1674           1                   3913881                      <NA> 401320574
## 1675           0                   3913881                      <NA> 401320574
## 1676           1                       918                      <NA> 401320574
## 1677           1                       918                      <NA> 401320574
## 1678           0                       918                      <NA> 401320574
## 1679           1                       585                      <NA> 401320574
## 1680           1                       585                      <NA> 401320574
## 1681           3                   3055808                   3056728 401320574
## 1682           1                   3142086                      <NA> 401320574
## 1683           1                   3142086                      <NA> 401320574
## 1684           0                   3146151                      <NA> 401320574
## 1685           0                       918                      <NA> 401320574
## 1686           0                   3913881                      <NA> 401320574
## 1687           3                       585                   2491205 401320574
## 1688           2                   2529137                      <NA> 401320574
## 1689           2                   3146151                      <NA> 401320574
## 1690           0                   2490553                      <NA> 401320574
## 1691           2                   2490553                      <NA> 401320574
## 1692           0                       918                      <NA> 401320574
## 1693           0                       585                      <NA> 401320574
## 1694           2                   2530082                       796 401320574
## 1695           2                   3142086                   2490553 401320574
## 1696           0                   3146151                      <NA> 401320574
## 1697           0                   3146151                      <NA> 401320574
## 1698           1                   2491205                      <NA> 401320574
## 1699           1                   2491205                      <NA> 401320574
## 1700           3                   2529137                   3146151 401320574
## 1701           2                   2529137                       796 401320574
## 1702           0                   2491205                      <NA> 401320574
## 1703           1                       918                      <NA> 401320574
## 1704           0                       918                      <NA> 401320574
## 1705           2                       585                   2490553 401320574
## 1706           1                   2490553                      <NA> 401320574
## 1707           1                   2490553                      <NA> 401320574
## 1708           2                       918                   2529137 401320574
## 1709           0                   2490553                      <NA> 401320574
## 1710           1                   2490553                      <NA> 401320574
## 1711           0                   2529137                      <NA> 401320574
## 1712           0                       918                      <NA> 401320574
## 1713           2                   2490553                   3907781 401320574
## 1714           0                   2529137                      <NA> 401320574
## 1715           2                   3142086                   2491205 401320574
## 1716           0                   3056728                      <NA> 401320574
## 1717           0                   3146151                      <NA> 401320574
## 1718           3                   3146151                   2529137 401320574
## 1719           2                       585                      <NA> 401320574
## 1720           1                   3055808                      <NA> 401320574
## 1721           2                   3056728                       796 401320574
## 1722           3                   3142327                   3913881 401320574
## 1723           0                       851                      <NA> 401320574
## 1724           0                   3907781                      <NA> 401320574
## 1725           2                   3907781                   3142327 401320574
## 1726           1                   3907781                      <NA> 401320574
## 1727           0                       851                      <NA> 401320574
## 1728           2                   3907781                      1107 401320574
## 1729           0                       796                      <NA> 401320574
## 1730           1                   3055808                      <NA> 401320574
## 1731           1                   3055808                      <NA> 401320574
## 1732           0                   3913881                   2530082 401320574
## 1733           0                   3913881                      <NA> 401320574
## 1734           3                   3913881                      1107 401320574
## 1735           0                   2529137                      <NA> 401320574
## 1736           0                       918                   2490553 401320574
## 1737           0                   2529137                      <NA> 401320574
## 1738           0                   3913881                      <NA> 401320574
## 1739           1                   3142327                      <NA> 401320574
## 1740           0                   3142327                      <NA> 401320574
## 1741           3                   3907781                      1107 401320574
## 1742           3                   3146151                       918 401320574
## 1743           0                   2490553                      <NA> 401320574
## 1744           0                   3146151                      <NA> 401320574
## 1745           1                   3146151                      <NA> 401320574
## 1746           1                   3146151                      <NA> 401320574
## 1747           0                   2490553                      <NA> 401320574
## 1748           0                   3146151                      <NA> 401320574
## 1749           0                   3146151                      <NA> 401320574
## 1750           0                   2530082                      <NA> 401320574
## 1751           0                   3146151                      <NA> 401320574
## 1752           3                   3142327                      <NA> 401320574
## 1753           1                       918                      <NA> 401320574
## 1754           1                       918                      <NA> 401320574
## 1755           1                   2491205                      <NA> 401320574
## 1756           1                   2491205                      <NA> 401320574
## 1757           2                   2529137                      <NA> 401320574
## 1758           0                   2530082                      <NA> 401320574
## 1759           0                   4281077                      <NA> 401320574
## 1760           0                   2530082                      <NA> 401320574
## 1761           2                   2491205                      <NA> 401320574
## 1762           0                       918                   3142086 401320574
## 1763           2                       918                      <NA> 401320574
## 1764           0                       918                      <NA> 401320574
## 1765           2                   2490553                   3142086 401320574
## 1766           0                   3055808                      <NA> 401320574
## 1767           2                   3142086                   2491205 401320574
## 1768           1                   2529137                      <NA> 401320574
## 1769           1                   2529137                      <NA> 401320574
## 1770           1                   3907781                      <NA> 401320574
## 1771           1                   3907781                      <NA> 401320574
## 1772           0                       851                      <NA> 401320574
## 1773           2                   2566452                      1107 401320574
## 1774           0                   3913881                      <NA> 401320574
## 1775           0                   3142149                      <NA> 401320574
## 1776           0                   3907781                      <NA> 401320574
## 1777           0                   3913881                      <NA> 401320574
## 1778           2                      1017                   2529122 401320575
## 1779           0                   3917453                      <NA> 401320575
## 1780           2                   2529122                   3149391 401320575
## 1781           2                   2987869                      <NA> 401320575
## 1782           2                   3149391                   2529122 401320575
## 1783           0                   2998928                      <NA> 401320575
## 1784           0                   2987869                      <NA> 401320575
## 1785           2                      1049                      <NA> 401320575
## 1786           1                   4065870                      <NA> 401320575
## 1787           1                   4065870                      <NA> 401320575
## 1788           0                   2987869                      <NA> 401320575
## 1789           0                      1017                      <NA> 401320575
## 1790           2                   2998928                        91 401320575
## 1791           0                   3149391                      <NA> 401320575
## 1792           0                   4065870                      <NA> 401320575
## 1793           1                   4065870                      <NA> 401320575
## 1794           1                   4065870                      <NA> 401320575
## 1795           0                   4420318                   3149391 401320575
## 1796           2                   2529122                      <NA> 401320575
## 1797           2                   3917453                      <NA> 401320575
## 1798           0                   3149391                      <NA> 401320575
## 1799           3                   2998928                        91 401320575
## 1800           1                   4065870                      <NA> 401320575
## 1801           1                   4065870                      <NA> 401320575
## 1802           3                   3917453                   2987869 401320575
## 1803           2                   2998928                       689 401320575
## 1804           1                   4065870                      <NA> 401320575
## 1805           1                   4065870                      <NA> 401320575
## 1806           0                   2987869                      <NA> 401320575
## 1807           0                   2566106                   2998928 401320575
## 1808           0                   2998928                      <NA> 401320575
## 1809           0                   2566106                      <NA> 401320575
## 1810           2                   3149391                   2566106 401320575
## 1811           1                   3149391                      <NA> 401320575
## 1812           3                   3065570                      <NA> 401320575
## 1813           0                   2987869                      <NA> 401320575
## 1814           0                   2987869                      <NA> 401320575
## 1815           3                   2529122                   3065570 401320575
## 1816           0                   2987869                      1017 401320575
## 1817           0                   3065570                      <NA> 401320575
## 1818           0                   3099736                      <NA> 401320575
## 1819           2                      1017                      <NA> 401320575
## 1820           2                   2566106                   2529122 401320575
## 1821           0                   2987869                      1017 401320575
## 1822           0                   3065570                      <NA> 401320575
## 1823           0                   2998928                      <NA> 401320575
## 1824           0                   4065870                      <NA> 401320575
## 1825           2                   3099736                      <NA> 401320575
## 1826           0                   3149391                      <NA> 401320575
## 1827           0                   3142250                      <NA> 401320575
## 1828           2                   4065870                      <NA> 401320575
## 1829           2                       689                   3099736 401320575
## 1830           2                   2566106                   3149391 401320575
## 1831           0                       689                      <NA> 401320575
## 1832           2                   3149391                      1049 401320575
## 1833           0                       689                      <NA> 401320575
## 1834           0                   2998928                      <NA> 401320575
## 1835           0                   4065870                      <NA> 401320575
## 1836           0                   3149391                      <NA> 401320575
## 1837           0                   2998928                      <NA> 401320575
## 1838           2                   3149391                   3065570 401320575
## 1839           0                   3065570                      <NA> 401320575
## 1840           3                   3917453                   2998928 401320575
## 1841           0                      1049                      <NA> 401320575
## 1842           0                   2998928                      <NA> 401320575
## 1843           0                       689                      <NA> 401320575
## 1844           0                        91                      <NA> 401320575
## 1845           0                   4420318                      <NA> 401320575
## 1846           0                   4420318                   3149391 401320575
## 1847           2                   2998928                   4420318 401320575
## 1848           1                   3149391                      <NA> 401320575
## 1849           0                   3149391                      <NA> 401320575
## 1850           0                   4420318                   2529122 401320575
## 1851           0                   3149391                      <NA> 401320575
## 1852           0                        91                      <NA> 401320575
## 1853           0                   2987869                      <NA> 401320575
## 1854           0                   3149391                      <NA> 401320575
## 1855           3                      1049                   2529122 401320575
## 1856           2                   4420318                   2987869 401320575
## 1857           0                   2529122                      <NA> 401320575
## 1858           0                   4065870                      <NA> 401320575
## 1859           2                   4420318                      <NA> 401320575
## 1860           0                   3149391                   2987869 401320575
## 1861           2                   4420318                   2987869 401320575
## 1862           2                   2529122                      <NA> 401320575
## 1863           2                   4420318                        91 401320575
## 1864           0                   3149391                      <NA> 401320575
## 1865           0                   2987869                      <NA> 401320575
## 1866           2                   2987869                      <NA> 401320575
## 1867           2                   2987869                      <NA> 401320575
## 1868           1                   2987869                      <NA> 401320575
## 1869           1                   2987869                      <NA> 401320575
## 1870           2                      1017                   3149391 401320575
## 1871           3                   2987869                      <NA> 401320575
## 1872           2                      1017                   3149391 401320575
## 1873           1                   2998928                      <NA> 401320575
## 1874           1                   2998928                      <NA> 401320575
## 1875           1                   4065870                      <NA> 401320575
## 1876           1                   4065870                      <NA> 401320575
## 1877           0                   2987869                      <NA> 401320575
## 1878           3                   2998928                   4420318 401320575
## 1879           0                   2529122                      <NA> 401320575
## 1880           0                   4420318                      <NA> 401320575
## 1881           3                      1049                      1017 401320575
## 1882           0                   4420318                      <NA> 401320575
## 1883           0                      1049                      <NA> 401320575
## 1884           2                      1017                      <NA> 401320575
## 1885           2                   2998928                   3917453 401320575
## 1886           2                   2998928                      <NA> 401320575
## 1887           0                   4065870                      <NA> 401320575
## 1888           0                   2998928                      <NA> 401320575
## 1889           0                   2998928                      <NA> 401320575
## 1890           0                   4065870                      <NA> 401320575
## 1891           1                   2998928                      <NA> 401320575
## 1892           1                   2998928                      <NA> 401320575
## 1893           2                   3149391                   2529122 401320575
## 1894           2                   2987869                      <NA> 401320575
## 1895           0                   2566106                      <NA> 401320575
## 1896           0                   2998928                      <NA> 401320575
## 1897           2                   3149391                   2529122 401320575
## 1898           0                   2987869                      <NA> 401320575
## 1899           2                   4065870                      <NA> 401320575
## 1900           1                   2987869                      <NA> 401320575
## 1901           1                   2987869                      <NA> 401320575
## 1902           0                   2529122                      <NA> 401320575
## 1903           2                   3142250                      <NA> 401320575
## 1904           0                   4065870                   2998928 401320575
## 1905           2                   4065870                      <NA> 401320575
## 1906           2                   3917453                      <NA> 401320575
## 1907           0                      1017                      <NA> 401320575
## 1908           2                   2566106                      <NA> 401320575
## 1909           0                   2998928                      <NA> 401320575
## 1910           0                      1049                      <NA> 401320575
## 1911           3                   3917453                   3099736 401320575
## 1912           1                      1017                      <NA> 401320575
## 1913           0                      1017                      <NA> 401320575
## 1914           0                   3917453                      <NA> 401320575
## 1915           0                   3065570                      <NA> 401320575
## 1916           2                      1017                   4065870 401320575
## 1917           0                   2987869                      <NA> 401320575
## 1918           2                   3065570                   4065870 401320575
## 1919           0                   3142250                      <NA> 401320575
## 1920           2                      1017                   3065570 401320575
## 1921           1                      1017                      <NA> 401320575
## 1922           2                   3142250                      <NA> 401320575
## 1923           3                   3065570                      <NA> 401320575
## 1924           0                   3142250                      <NA> 401320575
## 1925           0                   3149391                   4420318 401320575
## 1926           2                   2998928                   3142250 401320575
## 1927           2                   3149391                   2566106 401320575
## 1928           0                   3142250                      <NA> 401320575
## 1929           2                   2566106                      1049 401320575
## 1930           2                   2998928                      <NA> 401320575
## 1931           2                   3065570                      <NA> 401320575
## 1932           2                   2987869                        91 401320575
## 1933           2                   4065870                      1049 401320575
## 1934           3                   4420318                        91 401320575
## 1935           2                   2998928                   3917453 401320575
## 1936           1                   3149391                      <NA> 401320575
## 1937           1                   3149391                      <NA> 401320575
## 1938           0                   2987869                      <NA> 401320575
## 1939           2                      1017                      <NA> 401320575
## 1940           0                   2998928                      <NA> 401320575
## 1941           0                   3065570                      <NA> 401320575
## 1942           0                   4420318                      <NA> 401320575
## 1943           2                   4420318                      <NA> 401320575
## 1944           2                   2529122                   3149391 401320575
## 1945           0                   4420318                   3149391 401320575
## 1946           0                   4420318                      <NA> 401320575
## 1947           1                   4420318                      <NA> 401320575
## 1948           3                   4065870                   2529122 401320575
## 1949           0                   2987869                      1017 401320575
## 1950           2                      1049                   2284331 401320575
## 1951           0                   4282168                      <NA> 401320575
## 1952           2                   3922628                      <NA> 401320575
## 1953           0                   2566081                   3099025 401320576
## 1954           0                   2566081                   4066534 401320576
## 1955           0                   3058902                      <NA> 401320576
## 1956           1                   3058902                      <NA> 401320576
## 1957           2                   2998938                   3058902 401320576
## 1958           0                   4066534                      <NA> 401320576
## 1959           2                   4066534                      <NA> 401320576
## 1960           2                   2998938                      <NA> 401320576
## 1961           0                   3058902                      <NA> 401320576
## 1962           2                   4280892                   2490514 401320576
## 1963           0                   4066534                      <NA> 401320576
## 1964           0                   2490514                      <NA> 401320576
## 1965           2                   3099025                       981 401320576
## 1966           0                   2987891                      <NA> 401320576
## 1967           2                   2566081                   4280892 401320576
## 1968           0                   2998938                   2566081 401320576
## 1969           0                       981                      <NA> 401320576
## 1970           0                   4280892                      <NA> 401320576
## 1971           0                       981                      <NA> 401320576
## 1972           0                   4066534                      <NA> 401320576
## 1973           0                   2987891                      <NA> 401320576
## 1974           2                       981                      <NA> 401320576
## 1975           0                   2490514                   3099025 401320576
## 1976           2                   2490514                   4280892 401320576
## 1977           2                   4066534                   2566210 401320576
## 1978           2                   4280892                      <NA> 401320576
## 1979           0                   3099025                      <NA> 401320576
## 1980           0                   3058902                      <NA> 401320576
## 1981           0                   3099025                      <NA> 401320576
## 1982           0                   2529047                      <NA> 401320576
## 1983           0                   3058902                      <NA> 401320576
## 1984           0                   2529047                      <NA> 401320576
## 1985           1                   2529047                      <NA> 401320576
## 1986           2                   2998938                   4066534 401320576
## 1987           0                   3142255                      <NA> 401320576
## 1988           0                   3142255                      <NA> 401320576
## 1989           0                   2529047                      <NA> 401320576
## 1990           0                   2987891                      <NA> 401320576
## 1991           0                   2529047                      <NA> 401320576
## 1992           0                   3944151                      <NA> 401320576
## 1993           2                   4066534                      <NA> 401320576
## 1994           0                   4066553                      <NA> 401320576
## 1995           0                   2998938                      <NA> 401320576
## 1996           2                   2529047                   4066553 401320576
## 1997           2                   2998938                       981 401320576
## 1998           2                       981                   3944151 401320576
## 1999           1                   2987891                      <NA> 401320576
## 2000           0                   2987891                      <NA> 401320576
## 2001           2                   4066534                       981 401320576
## 2002           2                       981                      <NA> 401320576
## 2003           0                      1054                   4066534 401320576
## 2004           3                   2591976                   3142255 401320576
## 2005           0                       981                      <NA> 401320576
## 2006           1                       981                      <NA> 401320576
## 2007           1                       981                      <NA> 401320576
## 2008           0                   4066553                      <NA> 401320576
## 2009           0                   3058902                      <NA> 401320576
## 2010           0                   3099025                      <NA> 401320576
## 2011           0                   3099025                      <NA> 401320576
## 2012           1                   3099025                      <NA> 401320576
## 2013           1                   3099025                      <NA> 401320576
## 2014           3                   3099025                   4066534 401320576
## 2015           0                   2566081                      <NA> 401320576
## 2016           1                   2998938                      <NA> 401320576
## 2017           1                   2998938                      <NA> 401320576
## 2018           0                      1054                      <NA> 401320576
## 2019           2                   2998938                   3058902 401320576
## 2020           1                   2998938                      <NA> 401320576
## 2021           0                      1054                      <NA> 401320576
## 2022           0                   2566081                      <NA> 401320576
## 2023           0                   2566081                      <NA> 401320576
## 2024           1                   2566210                      <NA> 401320576
## 2025           0                   2566210                      <NA> 401320576
## 2026           0                      1054                      <NA> 401320576
## 2027           2                   2566081                      <NA> 401320576
## 2028           0                   3058902                      <NA> 401320576
## 2029           0                      1054                      <NA> 401320576
## 2030           0                   4068042                   3142255 401320576
## 2031           2                   2987891                      <NA> 401320576
## 2032           0                   2566210                   3142255 401320576
## 2033           0                   2987891                      <NA> 401320576
## 2034           0                   3142255                      <NA> 401320576
## 2035           0                   4066534                      <NA> 401320576
## 2036           0                   2566081                      <NA> 401320576
## 2037           1                   2566081                      <NA> 401320576
## 2038           2                   4068042                       981 401320576
## 2039           0                   2566081                      <NA> 401320576
## 2040           0                   2566081                      <NA> 401320576
## 2041           0                   4066534                      <NA> 401320576
## 2042           0                   2987891                   4066534 401320576
## 2043           0                       981                      <NA> 401320576
## 2044           2                   2987891                   4066553 401320576
## 2045           2                       981                      <NA> 401320576
## 2046           2                   2591976                      <NA> 401320576
## 2047           0                   4066553                      <NA> 401320576
## 2048           2                   2591976                      <NA> 401320576
## 2049           0                   3099025                      <NA> 401320576
## 2050           2                   4066534                      <NA> 401320576
## 2051           0                       981                      <NA> 401320576
## 2052           1                   4066534                      <NA> 401320576
## 2053           1                   4066534                      <NA> 401320576
## 2054           0                   2987891                      <NA> 401320576
## 2055           0                   2998938                      <NA> 401320576
## 2056           2                   2987891                      <NA> 401320576
## 2057           2                   4280892                      <NA> 401320576
## 2058           2                   3058902                      <NA> 401320576
## 2059           2                   4280892                      <NA> 401320576
## 2060           2                   2566081                   2987891 401320576
## 2061           2                   2998938                   3058902 401320576
## 2062           0                   2490514                      <NA> 401320576
## 2063           0                   4280892                      <NA> 401320576
## 2064           0                   2998938                      <NA> 401320576
## 2065           2                   2998938                       981 401320576
## 2066           0                      1054                      <NA> 401320576
## 2067           1                   4066534                      <NA> 401320576
## 2068           1                   4066534                      <NA> 401320576
## 2069           0                      1054                      <NA> 401320576
## 2070           0                   3944151                      <NA> 401320576
## 2071           1                   3944151                      <NA> 401320576
## 2072           0                   3058902                      <NA> 401320576
## 2073           2                   2987891                      <NA> 401320576
## 2074           0                   2987891                      <NA> 401320576
## 2075           1                   4066534                      <NA> 401320576
## 2076           0                   4066534                      <NA> 401320576
## 2077           0                      1054                      <NA> 401320576
## 2078           2                   2987891                      <NA> 401320576
## 2079           0                       981                      <NA> 401320576
## 2080           2                   2987891                      <NA> 401320576
## 2081           2                   3099025                      <NA> 401320576
## 2082           0                   4280892                      <NA> 401320576
## 2083           1                   3058902                      <NA> 401320576
## 2084           1                   3058902                      <NA> 401320576
## 2085           2                   3142255                   4280892 401320576
## 2086           0                   4066534                      <NA> 401320576
## 2087           1                   4280892                      <NA> 401320576
## 2088           1                   4280892                      <NA> 401320576
## 2089           0                   2490514                      <NA> 401320576
## 2090           1                   3058902                      <NA> 401320576
## 2091           1                   3058902                      <NA> 401320576
## 2092           0                   3058902                      <NA> 401320576
## 2093           0                   2987891                      <NA> 401320576
## 2094           1                   2987891                      <NA> 401320576
## 2095           2                   4280892                   2529047 401320576
## 2096           2                   4066534                   3058902 401320576
## 2097           3                   2987891                   4280892 401320576
## 2098           1                   4280892                      <NA> 401320576
## 2099           1                   4280892                      <NA> 401320576
## 2100           0                   3058902                      <NA> 401320576
## 2101           0                   3944151                      <NA> 401320576
## 2102           2                   2987891                   4280892 401320576
## 2103           0                   3944151                      <NA> 401320576
## 2104           0                   2591976                      <NA> 401320576
## 2105           0                   4280892                      <NA> 401320576
## 2106           0                   2529047                      <NA> 401320576
## 2107           0                   4066534                      <NA> 401320576
## 2108           0                   3142255                      <NA> 401320576
## 2109           0                   4066534                      <NA> 401320576
## 2110           0                   2529047                      <NA> 401320576
## 2111           0                   4066534                      <NA> 401320576
## 2112           1                   4066534                      <NA> 401320576
## 2113           3                   2987891                      1054 401320576
## 2114           0                   2998938                      <NA> 401320576
## 2115           0                   2591976                      <NA> 401320576
## 2116           2                   3058902                      <NA> 401320576
## 2117           2                   4280892                      <NA> 401320576
## 2118           2                   4280892                   2591976 401320576
## 2119           1                   4280892                      <NA> 401320576
## 2120           0                   2987891                      <NA> 401320576
## 2121           0                   4280892                      <NA> 401320576
## 2122           2                   2998938                   4066534 401320576
## 2123           1                   2998938                      <NA> 401320576
## 2124           3                      1054                   2987891 401320576
## 2125           0                   2998938                      <NA> 401320576
## 2126           3                   2591976                      1054 401320576
## 2127           0                   2591976                      <NA> 401320576
## 2128           0                   3142255                      <NA> 401320576
## 2129           1                   3142255                      <NA> 401320576
## 2130           0                   3944151                      <NA> 401320576
## 2131           0                   2987891                      <NA> 401320576
## 2132           2                   2998938                   3058902 401320576
## 2133           0                   4280892                      <NA> 401320576
## 2134           0                   2998938                      <NA> 401320576
## 2135           1                   2998938                      <NA> 401320576
## 2136           0                   3058902                      1054 401320576
## 2137           0                   2998938                   2591976 401320576
## 2138           0                   3142255                      <NA> 401320576
## 2139           1                      1054                      <NA> 401320576
## 2140           1                      1054                      <NA> 401320576
## 2141           2                   3099025                       981 401320576
## 2142           1                   3099025                      <NA> 401320576
## 2143           2                   3099025                       981 401320576
## 2144           2                   2987891                   4280892 401320576
## 2145           0                   2998938                   2987891 401320576
## 2146           0                   3142255                   3099025 401320576
## 2147           0                   2998938                   3142255 401320576
## 2148           2                   3058902                       981 401320576
## 2149           0                      1054                      <NA> 401320576
## 2150           0                   4280892                      <NA> 401320576
## 2151           1                   3099025                      <NA> 401320576
## 2152           0                   3099025                      <NA> 401320576
## 2153           0                   2987891                      <NA> 401320576
## 2154           2                   2591976                      <NA> 401320576
## 2155           1                   3944151                      <NA> 401320576
## 2156           1                   3944151                      <NA> 401320576
## 2157           2                   4280892                      <NA> 401320576
## 2158           1                       981                      <NA> 401320576
## 2159           1                       981                      <NA> 401320576
## 2160           0                       869                      <NA> 401320577
## 2161           2                      1014                      <NA> 401320577
## 2162           0                   2999101                      <NA> 401320577
## 2163           2                       869                      1008 401320577
## 2164           2                      1013                   3913903 401320577
## 2165           0                       860                      <NA> 401320577
## 2166           2                   3142191                      <NA> 401320577
## 2167           0                   3058895                      <NA> 401320577
## 2168           3                   3142191                      <NA> 401320577
## 2169           3                       869                   2999101 401320577
## 2170           1                   3142948                      <NA> 401320577
## 2171           1                   3142948                      <NA> 401320577
## 2172           2                      1014                      <NA> 401320577
## 2173           0                       869                      <NA> 401320577
## 2174           0                      1013                      <NA> 401320577
## 2175           2                   3058895                       860 401320577
## 2176           0                   3913903                      <NA> 401320577
## 2177           2                   3058895                   2999101 401320577
## 2178           0                   3142948                      <NA> 401320577
## 2179           0                       860                      <NA> 401320577
## 2180           3                      1014                      1013 401320577
## 2181           0                   3058895                      <NA> 401320577
## 2182           2                   3058895                   2999101 401320577
## 2183           0                   3913903                      <NA> 401320577
## 2184           0                   3913903                      <NA> 401320577
## 2185           3                   3906753                       860 401320577
## 2186           2                   3913903                      1013 401320577
## 2187           3                   2999101                       860 401320577
## 2188           0                   3142948                      <NA> 401320577
## 2189           2                   2999101                       869 401320577
## 2190           0                      1014                      <NA> 401320577
## 2191           3                   3906753                   3058895 401320577
## 2192           0                      1002                      <NA> 401320577
## 2193           2                      1014                      <NA> 401320577
## 2194           2                   3058895                       869 401320577
## 2195           0                   3142191                      <NA> 401320577
## 2196           2                   3906753                      <NA> 401320577
## 2197           0                      1014                      <NA> 401320577
## 2198           2                   2984741                      <NA> 401320577
## 2199           0                   3906753                      <NA> 401320577
## 2200           0                      1002                      <NA> 401320577
## 2201           0                   4065820                      <NA> 401320577
## 2202           2                   3058895                       860 401320577
## 2203           0                      1002                      <NA> 401320577
## 2204           0                   3913903                   2999101 401320577
## 2205           2                       869                   3906753 401320577
## 2206           1                       869                      <NA> 401320577
## 2207           1                   3058908                      <NA> 401320577
## 2208           1                   3058908                      <NA> 401320577
## 2209           2                   2984741                      1002 401320577
## 2210           3                      1008                   3906753 401320577
## 2211           0                   4065820                      <NA> 401320577
## 2212           3                   2999101                       860 401320577
## 2213           0                   3058908                      <NA> 401320577
## 2214           2                      1008                   2999101 401320577
## 2215           0                   2984741                      <NA> 401320577
## 2216           0                      1008                      <NA> 401320577
## 2217           2                   2999101                      1008 401320577
## 2218           2                   3906753                      <NA> 401320577
## 2219           0                   3906753                      <NA> 401320577
## 2220           2                   3058895                      <NA> 401320577
## 2221           0                   3058895                      <NA> 401320577
## 2222           3                       869                   2999101 401320577
## 2223           0                   4634697                      <NA> 401320577
## 2224           1                      1013                      <NA> 401320577
## 2225           0                      1013                      <NA> 401320577
## 2226           0                      1008                      <NA> 401320577
## 2227           0                   3142948                      <NA> 401320577
## 2228           0                   3906753                      <NA> 401320577
## 2229           0                   3142191                      <NA> 401320577
## 2230           1                   3142948                      <NA> 401320577
## 2231           1                   3142948                      <NA> 401320577
## 2232           0                       869                      <NA> 401320577
## 2233           2                   4634697                      1014 401320577
## 2234           0                   3142191                      <NA> 401320577
## 2235           2                   4634697                      <NA> 401320577
## 2236           0                   4634697                      <NA> 401320577
## 2237           2                   3058895                       869 401320577
## 2238           0                      1014                      <NA> 401320577
## 2239           0                   3913903                      <NA> 401320577
## 2240           2                   3142191                      <NA> 401320577
## 2241           0                       860                      <NA> 401320577
## 2242           0                       860                      <NA> 401320577
## 2243           0                   3142948                      <NA> 401320577
## 2244           2                   3058895                   3906753 401320577
## 2245           0                   3142191                      <NA> 401320577
## 2246           0                   3142948                      <NA> 401320577
## 2247           2                       869                   3906753 401320577
## 2248           2                   3142191                      <NA> 401320577
## 2249           2                   2999101                      1008 401320577
## 2250           0                   3142948                      <NA> 401320577
## 2251           0                      1002                      <NA> 401320577
## 2252           3                   2999101                   3906753 401320577
## 2253           0                   2984741                      <NA> 401320577
## 2254           0                   3913903                      <NA> 401320577
## 2255           2                   2984741                   3142191 401320577
## 2256           3                      1014                   3913903 401320577
## 2257           0                       869                      <NA> 401320577
## 2258           2                      1008                   4065780 401320577
## 2259           1                      1008                      <NA> 401320577
## 2260           3                   4065780                   3906753 401320577
## 2261           2                   3913903                      1014 401320577
## 2262           0                   3058895                   3913903 401320577
## 2263           0                      1002                      <NA> 401320577
## 2264           2                   2999101                   3058895 401320577
## 2265           0                   2984741                   4065780 401320577
## 2266           0                   4065780                      <NA> 401320577
## 2267           2                   3913903                      1002 401320577
## 2268           2                      1002                      1014 401320577
## 2269           0                   3906753                      <NA> 401320577
## 2270           0                   3906753                      <NA> 401320577
## 2271           0                   3906753                      <NA> 401320577
## 2272           0                   4065785                      1002 401320577
## 2273           0                   4065785                   3913903 401320577
## 2274           0                   4065785                   3913903 401320577
## 2275           1                   3913903                      <NA> 401320577
## 2276           1                   3913903                      <NA> 401320577
## 2277           1                   4066548                      <NA> 401320577
## 2278           1                   4066548                      <NA> 401320577
## 2279           0                      1002                      <NA> 401320577
## 2280           2                   4065785                   4066548 401320577
## 2281           2                   4065785                   4066548 401320577
## 2282           0                      1002                      <NA> 401320577
## 2283           0                   4065780                      <NA> 401320577
## 2284           0                   4634697                      <NA> 401320577
## 2285           0                   4065780                      <NA> 401320577
## 2286           2                   3916517                   4066548 401320577
## 2287           0                   4066548                      <NA> 401320577
## 2288           0                   4065820                      <NA> 401320577
## 2289           0                   4065785                      <NA> 401320577
## 2290           2                   3906753                      <NA> 401320577
## 2291           0                   3058908                      <NA> 401320577
## 2292           2                   3058908                   4634697 401320577
## 2293           1                   2984741                      <NA> 401320577
## 2294           1                   2984741                      <NA> 401320577
## 2295           0                   3916517                      <NA> 401320577
## 2296           2                   4065820                      <NA> 401320577
## 2297           3                   3906753                      <NA> 401320577
## 2298           0                   3913903                      <NA> 401320577
## 2299           2                   3906753                      <NA> 401320577
## 2300           0                   2984741                   4065780 401320577
## 2301           2                   3916517                   4065780 401320577
## 2302           2                   4634697                   3058908 401320577
## 2303           0                   4065820                      <NA> 401320577
## 2304           0                   3906753                      <NA> 401320577
## 2305           0                   3906753                      <NA> 401320577
## 2306           2                   3058908                   4065820 401320577
## 2307           2                   4066548                      <NA> 401320577
## 2308           3                   4065820                   2984741 401320577
## 2309           0                   3906753                      <NA> 401320577
## 2310           1                   3142948                      <NA> 401320577
## 2311           1                   3142948                      <NA> 401320577
## 2312           2                   3906753                      <NA> 401320577
## 2313           0                   4065820                      <NA> 401320577
## 2314           1                   2984741                      <NA> 401320577
## 2315           1                   2984741                      <NA> 401320577
## 2316           0                        91                      <NA> 401320578
## 2317           2                       766                   2999035 401320578
## 2318           0                       766                      <NA> 401320578
## 2319           0                   3099736                      <NA> 401320578
## 2320           3                   2987869                        91 401320578
## 2321           2                   2955898                   2529205 401320578
## 2322           3                   2955898                   2529205 401320578
## 2323           0                   2999035                      <NA> 401320578
## 2324           0                   3099736                      <NA> 401320578
## 2325           0                       766                      <NA> 401320578
## 2326           1                       766                      <NA> 401320578
## 2327           0                   2529205                      <NA> 401320578
## 2328           0                   2998928                      <NA> 401320578
## 2329           2                       766                   2999035 401320578
## 2330           2                       689                        91 401320578
## 2331           2                       766                      <NA> 401320578
## 2332           0                   2998928                      <NA> 401320578
## 2333           3                        91                   2987869 401320578
## 2334           2                   2999035                      <NA> 401320578
## 2335           3                   2987869                   2998928 401320578
## 2336           2                   4066585                   3906949 401320578
## 2337           0                   2998928                      <NA> 401320578
## 2338           0                   3906949                       689 401320578
## 2339           2                   3906949                      <NA> 401320578
## 2340           0                   3142250                      <NA> 401320578
## 2341           1                   2955898                      <NA> 401320578
## 2342           1                   2955898                      <NA> 401320578
## 2343           3                   2987869                   3142250 401320578
## 2344           2                   4066585                      <NA> 401320578
## 2345           2                       689                   2987869 401320578
## 2346           2                       766                   3906949 401320578
## 2347           2                       766                   4066585 401320578
## 2348           0                   2987869                      <NA> 401320578
## 2349           0                   2566186                      <NA> 401320578
## 2350           0                   3906949                      <NA> 401320578
## 2351           1                   2999035                      <NA> 401320578
## 2352           0                   2999035                      <NA> 401320578
## 2353           0                   3922628                      <NA> 401320578
## 2354           0                   3922628                      <NA> 401320578
## 2355           0                   2987869                      <NA> 401320578
## 2356           0                   2999035                      <NA> 401320578
## 2357           0                       766                   2987869 401320578
## 2358           2                   4066585                   2999035 401320578
## 2359           0                   3056672                      <NA> 401320578
## 2360           2                        91                      <NA> 401320578
## 2361           0                   2566186                      <NA> 401320578
## 2362           1                   3142250                      <NA> 401320578
## 2363           1                   3142250                      <NA> 401320578
## 2364           2                       766                   2999035 401320578
## 2365           0                        91                      <NA> 401320578
## 2366           0                   4066585                      <NA> 401320578
## 2367           2                   4066585                      <NA> 401320578
## 2368           2                   3142250                      <NA> 401320578
## 2369           2                   3906972                   2955898 401320578
## 2370           0                   2998928                      <NA> 401320578
## 2371           0                   2529205                      <NA> 401320578
## 2372           0                   3099736                      <NA> 401320578
## 2373           2                   2998928                      <NA> 401320578
## 2374           0                   2955898                      <NA> 401320578
## 2375           0                   2998928                      <NA> 401320578
## 2376           3                   4066585                   2955898 401320578
## 2377           0                   2529203                   4420318 401320578
## 2378           1                   2999035                      <NA> 401320578
## 2379           1                   2999035                      <NA> 401320578
## 2380           0                   2987869                      <NA> 401320578
## 2381           0                       689                      <NA> 401320578
## 2382           3                   2529205                   2999035 401320578
## 2383           2                       689                   3099736 401320578
## 2384           0                   3906972                   3099736 401320578
## 2385           0                       689                      <NA> 401320578
## 2386           1                   2999035                      <NA> 401320578
## 2387           0                   2999035                      <NA> 401320578
## 2388           0                   2999035                      <NA> 401320578
## 2389           0                       766                      <NA> 401320578
## 2390           2                   2987869                       689 401320578
## 2391           1                   2999035                      <NA> 401320578
## 2392           1                   2999035                      <NA> 401320578
## 2393           3                        91                       689 401320578
## 2394           2                   4066585                      <NA> 401320578
## 2395           2                   2998928                   3922628 401320578
## 2396           0                   3906949                      <NA> 401320578
## 2397           0                   2529205                      <NA> 401320578
## 2398           0                        91                      <NA> 401320578
## 2399           2                        91                      <NA> 401320578
## 2400           1                       766                      <NA> 401320578
## 2401           0                       766                      <NA> 401320578
## 2402           3                   2998928                        91 401320578
## 2403           0                       766                      <NA> 401320578
## 2404           0                       766                      <NA> 401320578
## 2405           0                   4420318                      <NA> 401320578
## 2406           0                   3906972                      <NA> 401320578
## 2407           0                   4066585                      <NA> 401320578
## 2408           2                   2999035                      <NA> 401320578
## 2409           3                   2987869                        91 401320578
## 2410           2                   4420318                   3099736 401320578
## 2411           0                   2999035                      <NA> 401320578
## 2412           0                   2999035                      <NA> 401320578
## 2413           0                   4420318                      <NA> 401320578
## 2414           0                   2998928                      <NA> 401320578
## 2415           2                   4066585                      <NA> 401320578
## 2416           0                   2998928                      <NA> 401320578
## 2417           0                   4066585                      <NA> 401320578
## 2418           0                   2998928                      <NA> 401320578
## 2419           3                        91                   2987869 401320578
## 2420           0                   3906949                      <NA> 401320578
## 2421           3                   2529205                   4066585 401320578
## 2422           0                   2987869                      <NA> 401320578
## 2423           0                   2955898                      <NA> 401320578
## 2424           2                   4066585                   3906949 401320578
## 2425           1                   3142250                      <NA> 401320578
## 2426           0                   3142250                      <NA> 401320578
## 2427           2                       689                   2998928 401320578
## 2428           0                   2529205                      <NA> 401320578
## 2429           2                   3906949                   4066585 401320578
## 2430           2                   2987869                      <NA> 401320578
## 2431           2                   2998928                   2987869 401320578
## 2432           3                   4066585                   3906972 401320578
## 2433           0                   3906949                      <NA> 401320578
## 2434           0                   2998928                      <NA> 401320578
## 2435           0                   2998928                      <NA> 401320578
## 2436           0                   2987869                       766 401320578
## 2437           0                   3922628                      <NA> 401320578
## 2438           2                   3906972                   4066585 401320578
## 2439           0                   2998928                      <NA> 401320578
## 2440           2                   4066585                   2999035 401320578
## 2441           3                   3922628                   3142250 401320578
## 2442           0                       766                   3922628 401320578
## 2443           2                       689                        91 401320578
## 2444           2                       766                   4066585 401320578
## 2445           0                        91                      <NA> 401320578
## 2446           2                   3906972                   4066585 401320578
## 2447           1                   3142250                      <NA> 401320578
## 2448           1                   3142250                      <NA> 401320578
## 2449           0                   2955898                      <NA> 401320578
## 2450           3                        91                       689 401320578
## 2451           0                   2566186                        91 401320578
## 2452           2                        91                   3142250 401320578
## 2453           0                   3906972                      <NA> 401320578
## 2454           1                   3142250                      <NA> 401320578
## 2455           1                   3142250                      <NA> 401320578
## 2456           2                       766                   3906949 401320578
## 2457           0                   3142250                      <NA> 401320578
## 2458           2                       766                   3906949 401320578
## 2459           2                   2998928                        91 401320578
## 2460           1                   3142250                      <NA> 401320578
## 2461           1                   3142250                      <NA> 401320578
## 2462           2                   3142250                      <NA> 401320578
## 2463           0                       766                      <NA> 401320578
## 2464           0                       766                      <NA> 401320578
## 2465           1                   2998928                      <NA> 401320578
## 2466           1                   2998928                      <NA> 401320578
## 2467           0                   4066585                      <NA> 401320578
## 2468           3                   2987869                        91 401320578
## 2469           0                   2529205                      <NA> 401320578
## 2470           2                   3056672                        91 401320578
## 2471           0                   2955898                      <NA> 401320578
## 2472           2                   2987869                      <NA> 401320578
## 2473           0                   4066585                      <NA> 401320578
## 2474           1                   3142250                      <NA> 401320578
## 2475           1                   3142250                      <NA> 401320578
## 2476           1                   3906972                      <NA> 401320578
## 2477           1                   3906972                      <NA> 401320578
## 2478           1                   2987869                      <NA> 401320578
## 2479           1                   2987869                      <NA> 401320578
## 2480           0                   3906972                      <NA> 401320578
## 2481           1                   3906972                      <NA> 401320578
## 2482           1                   3142250                      <NA> 401320578
## 2483           0                   3142250                      <NA> 401320578
## 2484           0                   2987869                      <NA> 401320578
## 2485           0                   4066585                      <NA> 401320578
## 2486           3                        91                      <NA> 401320578
## 2487           0                   2999035                      <NA> 401320578
## 2488           0                      1054                      <NA> 401320579
## 2489           0                   3142191                      <NA> 401320579
## 2490           0                   4280892                      <NA> 401320579
## 2491           0                      1002                      <NA> 401320579
## 2492           0                      1054                      <NA> 401320579
## 2493           0                   2987891                      <NA> 401320579
## 2494           2                   4280892                      <NA> 401320579
## 2495           0                      1054                      <NA> 401320579
## 2496           0                      1014                      <NA> 401320579
## 2497           0                   4280892                      <NA> 401320579
## 2498           0                   3142191                      <NA> 401320579
## 2499           3                      1054                   2490514 401320579
## 2500           0                      1014                      <NA> 401320579
## 2501           0                      1002                   2490514 401320579
## 2502           2                   4280892                      <NA> 401320579
## 2503           2                   3913903                   2984741 401320579
## 2504           2                   4280892                      <NA> 401320579
## 2505           2                   3142191                   2984741 401320579
## 2506           1                   3142191                      <NA> 401320579
## 2507           0                   2987891                      <NA> 401320579
## 2508           2                   3142191                      <NA> 401320579
## 2509           2                   2987891                   4280892 401320579
## 2510           2                      1014                      <NA> 401320579
## 2511           0                   2987891                      <NA> 401320579
## 2512           0                   3913903                      <NA> 401320579
## 2513           0                   4280892                      <NA> 401320579
## 2514           0                   2566081                   3913903 401320579
## 2515           0                   2987891                      <NA> 401320579
## 2516           0                      1014                      <NA> 401320579
## 2517           2                      1013                   3142191 401320579
## 2518           2                   3916514                   4280892 401320579
## 2519           0                   3142191                      <NA> 401320579
## 2520           0                   3916514                      <NA> 401320579
## 2521           2                   2984741                      <NA> 401320579
## 2522           0                   3142255                   4634697 401320579
## 2523           2                   2529047                      1054 401320579
## 2524           0                   3142191                      <NA> 401320579
## 2525           0                   3142255                      <NA> 401320579
## 2526           1                   3142255                      <NA> 401320579
## 2527           2                      1013                   3058908 401320579
## 2528           0                   2529047                      <NA> 401320579
## 2529           0                   2984741                      <NA> 401320579
## 2530           3                   4065820                   3058908 401320579
## 2531           2                   2529047                      <NA> 401320579
## 2532           3                   3058908                   3142948 401320579
## 2533           0                   2591976                      <NA> 401320579
## 2534           0                   3913903                      <NA> 401320579
## 2535           2                      1054                      <NA> 401320579
## 2536           0                   3058908                      <NA> 401320579
## 2537           2                   3142255                   2591976 401320579
## 2538           1                      1054                      <NA> 401320579
## 2539           1                      1054                      <NA> 401320579
## 2540           2                   4065820                   3058908 401320579
## 2541           0                   2591976                      <NA> 401320579
## 2542           2                   4634697                      1013 401320579
## 2543           2                   4280892                   2490514 401320579
## 2544           2                   4634697                      1013 401320579
## 2545           1                   4280892                      <NA> 401320579
## 2546           1                   4280892                      <NA> 401320579
## 2547           0                   2490514                      <NA> 401320579
## 2548           0                   3142191                      <NA> 401320579
## 2549           2                      1002                      <NA> 401320579
## 2550           0                   3916514                      <NA> 401320579
## 2551           0                      1002                      <NA> 401320579
## 2552           1                      1002                      <NA> 401320579
## 2553           2                      1054                   4280892 401320579
## 2554           0                   4634697                      <NA> 401320579
## 2555           2                   4280892                      1054 401320579
## 2556           2                      1002                      <NA> 401320579
## 2557           0                   2490514                      <NA> 401320579
## 2558           0                      1054                      <NA> 401320579
## 2559           1                      1054                      <NA> 401320579
## 2560           3                   2591976                   2987891 401320579
## 2561           0                   3142191                      <NA> 401320579
## 2562           0                   3142255                      <NA> 401320579
## 2563           0                      1014                      <NA> 401320579
## 2564           0                      1002                   2591976 401320579
## 2565           2                      1002                      <NA> 401320579
## 2566           3                   2987891                   3142255 401320579
## 2567           0                      1002                      <NA> 401320579
## 2568           1                      1054                      <NA> 401320579
## 2569           1                      1054                      <NA> 401320579
## 2570           0                   3142191                      <NA> 401320579
## 2571           0                   4280892                      <NA> 401320579
## 2572           2                      1002                      <NA> 401320579
## 2573           0                   4280892                      <NA> 401320579
## 2574           0                   4280892                      <NA> 401320579
## 2575           2                   2984741                   3913903 401320579
## 2576           0                   2490514                      <NA> 401320579
## 2577           0                      1054                      <NA> 401320579
## 2578           2                      1014                      1002 401320579
## 2579           0                   4280892                   3913903 401320579
## 2580           0                   2984741                   2566081 401320579
## 2581           0                      1014                   2490514 401320579
## 2582           2                   3142191                      <NA> 401320579
## 2583           0                   2529047                      <NA> 401320579
## 2584           3                   2987891                   2566081 401320579
## 2585           3                      1014                   2984741 401320579
## 2586           0                   2529047                      <NA> 401320579
## 2587           2                   2984741                      <NA> 401320579
## 2588           0                   2987891                      <NA> 401320579
## 2589           0                   2490514                      <NA> 401320579
## 2590           0                   2490514                      <NA> 401320579
## 2591           2                   3142191                      1014 401320579
## 2592           2                   2529047                   4280892 401320579
## 2593           2                      1002                   2984741 401320579
## 2594           2                   4280892                      <NA> 401320579
## 2595           0                   2566081                      <NA> 401320579
## 2596           0                   3142191                      <NA> 401320579
## 2597           0                   3142191                      <NA> 401320579
## 2598           0                   2987891                      <NA> 401320579
## 2599           0                      1002                      <NA> 401320579
## 2600           0                   2529047                      <NA> 401320579
## 2601           3                   4280892                   2987891 401320579
## 2602           2                      1013                   3058908 401320579
## 2603           3                      1110                   2529047 401320579
## 2604           2                   3142191                      <NA> 401320579
## 2605           3                      1110                   3142255 401320579
## 2606           1                   4634697                      <NA> 401320579
## 2607           1                   4634697                      <NA> 401320579
## 2608           1                   4280892                      <NA> 401320579
## 2609           0                   4280892                      <NA> 401320579
## 2610           1                   3058908                      <NA> 401320579
## 2611           0                   3058908                      <NA> 401320579
## 2612           0                   3142255                      <NA> 401320579
## 2613           2                   4280892                      <NA> 401320579
## 2614           3                   4065820                   3142191 401320579
## 2615           0                   3142255                   4634697 401320579
## 2616           0                      1002                      <NA> 401320579
## 2617           3                      1110                      <NA> 401320579
## 2618           0                   3058908                      <NA> 401320579
## 2619           0                      1054                      <NA> 401320579
## 2620           0                      1002                   3142255 401320579
## 2621           0                      1110                      <NA> 401320579
## 2622           3                   3142191                      <NA> 401320579
## 2623           0                   4280892                      <NA> 401320579
## 2624           0                   3142255                      <NA> 401320579
## 2625           2                   4634697                   3058908 401320579
## 2626           1                      1054                      <NA> 401320579
## 2627           1                      1054                      <NA> 401320579
## 2628           0                   2984741                      <NA> 401320579
## 2629           0                   2987891                      <NA> 401320579
## 2630           0                      1014                      <NA> 401320579
## 2631           0                   4634697                      <NA> 401320579
## 2632           3                   2987891                   2529047 401320579
## 2633           1                      1002                      <NA> 401320579
## 2634           1                      1002                      <NA> 401320579
## 2635           0                   2591976                      <NA> 401320579
## 2636           3                   2987891                   2591976 401320579
## 2637           0                   3142191                      <NA> 401320579
## 2638           3                   2591976                   2987891 401320579
## 2639           0                   2984741                      <NA> 401320579
## 2640           2                   2591976                   2987891 401320579
## 2641           0                      1014                   4280892 401320579
## 2642           2                      1002                   2984741 401320579
## 2643           2                   3142255                   2591976 401320579
## 2644           1                   3142191                      <NA> 401320579
## 2645           1                   3142191                      <NA> 401320579
## 2646           2                   2987891                      <NA> 401320579
## 2647           2                   4634697                      1002 401320579
## 2648           0                   2591976                      <NA> 401320579
## 2649           1                   4634697                      <NA> 401320579
## 2650           1                   4634697                      <NA> 401320579
## 2651           2                   4280892                      <NA> 401320579
## 2652           3                   3142191                   2984741 401320579
## 2653           0                   2987891                      <NA> 401320579
## 2654           0                   2591976                      <NA> 401320579
## 2655           0                   2984741                      <NA> 401320579
## 2656           0                   3142191                      <NA> 401320579
## 2657           0                   4280892                      <NA> 401320579
## 2658           1                   4280892                      <NA> 401320579
## 2659           0                       918                      <NA> 401320580
## 2660           3                   3146151                   2529137 401320580
## 2661           0                   2593770                      <NA> 401320580
## 2662           0                   3146151                      <NA> 401320580
## 2663           0                   4282173                      <NA> 401320580
## 2664           3                   2529137                      <NA> 401320580
## 2665           2                       918                   2529137 401320580
## 2666           2                   4065849                   4066533 401320580
## 2667           0                   2529137                      <NA> 401320580
## 2668           2                   4282173                   4066533 401320580
## 2669           0                   2529137                      <NA> 401320580
## 2670           2                   2593770                      <NA> 401320580
## 2671           3                   3146151                   2529137 401320580
## 2672           3                   4282173                   4066533 401320580
## 2673           2                   4065849                   2593770 401320580
## 2674           2                   3146151                   2529137 401320580
## 2675           0                   2593770                   3146151 401320580
## 2676           0                   2593770                      <NA> 401320580
## 2677           3                   4066533                   2593770 401320580
## 2678           0                       796                      <NA> 401320580
## 2679           0                   4282173                      <NA> 401320580
## 2680           0                   2529137                      <NA> 401320580
## 2681           0                   2593770                      <NA> 401320580
## 2682           1                   3146151                      <NA> 401320580
## 2683           0                       796                      <NA> 401320580
## 2684           0                       918                      <NA> 401320580
## 2685           0                   4282173                       918 401320580
## 2686           3                       918                   3146151 401320580
## 2687           0                   3102133                      <NA> 401320580
## 2688           3                   3146151                   2529137 401320580
## 2689           0                   4066533                      <NA> 401320580
## 2690           1                       918                      <NA> 401320580
## 2691           1                       918                      <NA> 401320580
## 2692           0                       918                      <NA> 401320580
## 2693           3                   3055808                   2530082 401320580
## 2694           0                       851                      <NA> 401320580
## 2695           2                   3056728                      <NA> 401320580
## 2696           0                   4065850                      <NA> 401320580
## 2697           2                       851                      <NA> 401320580
## 2698           1                   4065850                      <NA> 401320580
## 2699           0                   4065850                      <NA> 401320580
## 2700           2                   2593770                   4065849 401320580
## 2701           0                   3055808                      <NA> 401320580
## 2702           3                       887                   2593770 401320580
## 2703           2                       851                   3056728 401320580
## 2704           2                   4065849                   4066533 401320580
## 2705           0                   3055808                      <NA> 401320580
## 2706           3                       887                      <NA> 401320580
## 2707           2                       918                      <NA> 401320580
## 2708           0                   4065849                      <NA> 401320580
## 2709           2                       918                       851 401320580
## 2710           2                   4066533                      <NA> 401320580
## 2711           2                   2593770                      <NA> 401320580
## 2712           0                   3056728                   2593770 401320580
## 2713           0                   3102133                      <NA> 401320580
## 2714           0                       918                      <NA> 401320580
## 2715           0                   2593770                      <NA> 401320580
## 2716           3                       918                   3146151 401320580
## 2717           3                   2593770                   4065850 401320580
## 2718           0                   3146151                      <NA> 401320580
## 2719           0                       796                      <NA> 401320580
## 2720           2                       918                   2529137 401320580
## 2721           3                       887                   2593770 401320580
## 2722           0                       918                      <NA> 401320580
## 2723           3                   2593770                   4065849 401320580
## 2724           1                       918                      <NA> 401320580
## 2725           1                       918                      <NA> 401320580
## 2726           3                   3146151                       918 401320580
## 2727           0                   4066533                   3146151 401320580
## 2728           2                   4066533                      <NA> 401320580
## 2729           1                   3146151                      <NA> 401320580
## 2730           1                   3146151                      <NA> 401320580
## 2731           2                   2593770                      <NA> 401320580
## 2732           2                   2593770                      <NA> 401320580
## 2733           0                       918                      <NA> 401320580
## 2734           3                       851                      <NA> 401320580
## 2735           0                       887                      <NA> 401320580
## 2736           2                       851                      <NA> 401320580
## 2737           2                   2593770                   4065850 401320580
## 2738           0                   3146151                      <NA> 401320580
## 2739           0                   4066533                      <NA> 401320580
## 2740           0                   2529137                   4065850 401320580
## 2741           0                   4066533                      <NA> 401320580
## 2742           2                   3146151                      <NA> 401320580
## 2743           0                   2593770                      <NA> 401320580
## 2744           2                   3146151                      <NA> 401320580
## 2745           0                   4066533                      <NA> 401320580
## 2746           1                   4066533                      <NA> 401320580
## 2747           1                   4066533                      <NA> 401320580
## 2748           1                   4066533                      <NA> 401320580
## 2749           3                   2530082                       796 401320580
## 2750           3                       918                   3146151 401320580
## 2751           2                   4065849                   2593770 401320580
## 2752           2                       918                      <NA> 401320580
## 2753           0                   4066533                      <NA> 401320580
## 2754           0                   4282173                      <NA> 401320580
## 2755           0                       918                      <NA> 401320580
## 2756           0                   4282173                      <NA> 401320580
## 2757           0                   2530082                      <NA> 401320580
## 2758           0                   4065849                      <NA> 401320580
## 2759           3                   3055808                   2529137 401320580
## 2760           0                   2593770                      <NA> 401320580
## 2761           0                   2529137                   4065849 401320580
## 2762           0                   3055808                      <NA> 401320580
## 2763           0                   3102133                      <NA> 401320580
## 2764           3                       918                   2529137 401320580
## 2765           3                   3102133                   4065849 401320580
## 2766           0                   2529137                      <NA> 401320580
## 2767           0                       918                      <NA> 401320580
## 2768           3                   4065849                       887 401320580
## 2769           3                   2529137                   3056728 401320580
## 2770           0                   4281253                      <NA> 401320580
## 2771           2                   2593770                      <NA> 401320580
## 2772           0                   4065850                      <NA> 401320580
## 2773           0                   3055808                   3102133 401320580
## 2774           1                   2530082                      <NA> 401320580
## 2775           1                   2530082                      <NA> 401320580
## 2776           1                   3056728                      <NA> 401320580
## 2777           0                   3056728                      <NA> 401320580
## 2778           0                   2530082                      <NA> 401320580
## 2779           0                   2530082                      <NA> 401320580
## 2780           3                   3102133                   4281253 401320580
## 2781           0                       796                       887 401320580
## 2782           0                   3056728                      <NA> 401320580
## 2783           2                   4065850                      <NA> 401320580
## 2784           2                   3056728                       796 401320580
## 2785           0                   3056728                      <NA> 401320580
## 2786           1                       918                      <NA> 401320580
## 2787           1                       918                      <NA> 401320580
## 2788           2                       918                      <NA> 401320580
## 2789           0                   3102133                      <NA> 401320580
## 2790           1                   3146151                      <NA> 401320580
## 2791           2                       918                       796 401320580
## 2792           0                   2593770                      <NA> 401320580
## 2793           0                   2529137                      <NA> 401320580
## 2794           3                   3146151                       796 401320580
## 2795           0                   2593770                      <NA> 401320580
## 2796           0                   2529137                      <NA> 401320580
## 2797           0                   3102133                      <NA> 401320580
## 2798           2                       918                   3146151 401320580
## 2799           0                   3056728                      <NA> 401320580
## 2800           0                       918                      <NA> 401320580
## 2801           2                   3056728                      <NA> 401320580
## 2802           3                   3102133                   4066533 401320580
## 2803           0                   3146151                      <NA> 401320580
## 2804           0                   4065850                      <NA> 401320580
## 2805           0                   3102133                      <NA> 401320580
## 2806           3                       796                      <NA> 401320580
## 2807           2                   4281253                      <NA> 401320580
## 2808           0                       796                      <NA> 401320580
## 2809           0                       887                      <NA> 401320580
## 2810           1                       851                      <NA> 401320580
## 2811           1                       851                      <NA> 401320580
## 2812           0                   4065850                      <NA> 401320580
## 2813           0                       887                      <NA> 401320580
## 2814           2                   4068890                      <NA> 401320580
## 2815           0                   4281253                      <NA> 401320580
## 2816           2                   3142149                      <NA> 401320580
## 2817           2                   4281253                   4065850 401320580
## 2818           0                   4068890                      <NA> 401320580
## 2819           0                   4281253                      <NA> 401320580
## 2820           1                   4281253                      <NA> 401320580
## 2821           0                       796                      <NA> 401320580
## 2822           3                   3906753                      1008 401320581
## 2823           0                   2491205                      <NA> 401320581
## 2824           0                   3906753                      <NA> 401320581
## 2825           2                   3058895                       869 401320581
## 2826           0                   3142086                      <NA> 401320581
## 2827           3                   2999101                      1008 401320581
## 2828           3                       869                   2999101 401320581
## 2829           0                       585                      <NA> 401320581
## 2830           0                       869                      <NA> 401320581
## 2831           2                   3142086                   2491205 401320581
## 2832           2                   2999101                      1008 401320581
## 2833           2                   2490553                       585 401320581
## 2834           3                      1008                   2999101 401320581
## 2835           3                   3142327                   2491205 401320581
## 2836           2                   3058895                       869 401320581
## 2837           0                       585                      <NA> 401320581
## 2838           0                   2490553                      <NA> 401320581
## 2839           0                       869                      <NA> 401320581
## 2840           3                      1008                   3906753 401320581
## 2841           3                   2491205                   3142327 401320581
## 2842           0                   3907781                      <NA> 401320581
## 2843           0                   3058895                      <NA> 401320581
## 2844           2                   3058895                      <NA> 401320581
## 2845           0                   2491205                      <NA> 401320581
## 2846           1                   2491205                      <NA> 401320581
## 2847           1                   2491205                      <NA> 401320581
## 2848           0                      1008                   2490553 401320581
## 2849           0                      1008                      <NA> 401320581
## 2850           0                   3907781                      <NA> 401320581
## 2851           0                   3916517                   2490553 401320581
## 2852           2                   2491205                      <NA> 401320581
## 2853           0                      1008                      <NA> 401320581
## 2854           3                      1107                   2490553 401320581
## 2855           0                   4065780                      <NA> 401320581
## 2856           0                       585                      <NA> 401320581
## 2857           2                   3916517                       869 401320581
## 2858           0                       585                      <NA> 401320581
## 2859           0                   3913881                      <NA> 401320581
## 2860           0                   4066548                      <NA> 401320581
## 2861           0                   4281077                      <NA> 401320581
## 2862           0                   2999101                      <NA> 401320581
## 2863           2                   3906753                      <NA> 401320581
## 2864           2                       585                   3142086 401320581
## 2865           1                       585                      <NA> 401320581
## 2866           0                   3906753                      <NA> 401320581
## 2867           0                   4065780                      <NA> 401320581
## 2868           0                   4066548                      <NA> 401320581
## 2869           2                   2491205                      <NA> 401320581
## 2870           2                   3916517                   4066548 401320581
## 2871           1                       585                      <NA> 401320581
## 2872           0                       585                      <NA> 401320581
## 2873           2                   2999101                      <NA> 401320581
## 2874           2                       585                      <NA> 401320581
## 2875           3                   4065780                   2999101 401320581
## 2876           0                   3142086                      <NA> 401320581
## 2877           2                   3916517                   4066548 401320581
## 2878           2                   4065780                      <NA> 401320581
## 2879           0                   2490553                      <NA> 401320581
## 2880           2                       869                      <NA> 401320581
## 2881           0                   2491205                      <NA> 401320581
## 2882           0                      1008                      <NA> 401320581
## 2883           2                   2999101                      <NA> 401320581
## 2884           0                   3142327                      <NA> 401320581
## 2885           0                   3142086                      <NA> 401320581
## 2886           1                   2491205                      <NA> 401320581
## 2887           0                   2491205                      <NA> 401320581
## 2888           0                   3058895                      <NA> 401320581
## 2889           0                   3907781                      <NA> 401320581
## 2890           1                       869                      <NA> 401320581
## 2891           1                       869                      <NA> 401320581
## 2892           0                   3142327                      <NA> 401320581
## 2893           2                   3906753                      <NA> 401320581
## 2894           1                   3906753                      <NA> 401320581
## 2895           1                   3906753                      <NA> 401320581
## 2896           2                       585                      1107 401320581
## 2897           2                   2491205                      <NA> 401320581
## 2898           0                       869                      <NA> 401320581
## 2899           0                   3058895                      <NA> 401320581
## 2900           0                       869                   2490553 401320581
## 2901           0                   2491205                   2999101 401320581
## 2902           2                   2490553                      <NA> 401320581
## 2903           0                   2999101                      <NA> 401320581
## 2904           0                   2999101                      <NA> 401320581
## 2905           3                   3142327                       585 401320581
## 2906           2                      1008                      <NA> 401320581
## 2907           3                       585                      <NA> 401320581
## 2908           0                   3906753                      <NA> 401320581
## 2909           0                   3142327                      <NA> 401320581
## 2910           0                   3906753                      <NA> 401320581
## 2911           2                       585                      <NA> 401320581
## 2912           0                   3058895                      <NA> 401320581
## 2913           0                       869                   2490553 401320581
## 2914           2                   2999101                       869 401320581
## 2915           0                   2490553                      <NA> 401320581
## 2916           3                   3906753                       869 401320581
## 2917           1                   2491205                      <NA> 401320581
## 2918           1                   2491205                      <NA> 401320581
## 2919           3                   2999101                   3906753 401320581
## 2920           0                   2490553                      <NA> 401320581
## 2921           1                   2491205                      <NA> 401320581
## 2922           1                   2491205                      <NA> 401320581
## 2923           1                       869                      <NA> 401320581
## 2924           0                   2999101                      <NA> 401320581
## 2925           0                   2490553                      <NA> 401320581
## 2926           0                   2490553                      <NA> 401320581
## 2927           0                      1107                      <NA> 401320581
## 2928           2                   2999101                      <NA> 401320581
## 2929           0                   4281077                      <NA> 401320581
## 2930           1                   4281077                      <NA> 401320581
## 2931           0                   2999101                      <NA> 401320581
## 2932           0                   2566452                   3058895 401320581
## 2933           0                   2491205                      <NA> 401320581
## 2934           0                   3906753                      <NA> 401320581
## 2935           2                   3058895                   3906753 401320581
## 2936           0                      1107                      <NA> 401320581
## 2937           0                   2999101                      <NA> 401320581
## 2938           0                   2490553                      <NA> 401320581
## 2939           0                   4281077                      <NA> 401320581
## 2940           2                   4281077                   3142086 401320581
## 2941           0                   3906753                   3142086 401320581
## 2942           0                   4065780                      <NA> 401320581
## 2943           2                   4066548                      <NA> 401320581
## 2944           0                       585                      <NA> 401320581
## 2945           0                       585                      <NA> 401320581
## 2946           0                   4066548                      <NA> 401320581
## 2947           0                   3916517                      <NA> 401320581
## 2948           2                   2490553                       585 401320581
## 2949           2                   4066548                   3058895 401320581
## 2950           0                   3142327                   3916517 401320581
## 2951           0                       869                      <NA> 401320581
## 2952           0                   4065780                      <NA> 401320581
## 2953           0                      1008                      <NA> 401320581
## 2954           2                      1008                      <NA> 401320581
## 2955           0                   3907781                      <NA> 401320581
## 2956           1                       869                      <NA> 401320581
## 2957           0                      1008                      <NA> 401320581
## 2958           2                   2491205                      <NA> 401320581
## 2959           0                   2491205                      <NA> 401320581
## 2960           0                       585                      <NA> 401320581
## 2961           2                   3907781                   2491205 401320581
## 2962           0                   4065780                      <NA> 401320581
## 2963           3                       869                      <NA> 401320581
## 2964           2                   2491205                       585 401320581
## 2965           2                      1008                      <NA> 401320581
## 2966           0                   2490553                      <NA> 401320581
## 2967           0                       869                      <NA> 401320581
## 2968           2                      1107                      <NA> 401320581
## 2969           3                      1008                   2999101 401320581
## 2970           0                   2491205                      <NA> 401320581
## 2971           0                   3142086                      <NA> 401320581
## 2972           0                      1008                      <NA> 401320581
## 2973           2                   3142086                      1107 401320581
## 2974           2                       869                      <NA> 401320581
## 2975           0                   3913881                      <NA> 401320581
## 2976           2                   4281077                      <NA> 401320581
## 2977           2                   4065785                   4066548 401320581
## 2978           2                   4281077                   2566452 401320581
## 2979           0                   4065785                   2566452 401320581
## 2980           0                   3913881                      <NA> 401320581
## 2981           0                   4066548                      <NA> 401320581
## 2982           2                   4065785                      <NA> 401320581
## 2983           2                      1107                      <NA> 401320581
## 2984           0                   3916517                      <NA> 401320581
## 2985           0                   3916517                      <NA> 401320581
## 2986           0                   3913881                      <NA> 401320581
## 2987           2                      1107                      <NA> 401320581
## 2988           3                       856                      <NA> 401320582
## 2989           0                   4065870                      <NA> 401320582
## 2990           2                      1017                      <NA> 401320582
## 2991           0                      1017                      <NA> 401320582
## 2992           2                   3149391                      <NA> 401320582
## 2993           2                      1068                       856 401320582
## 2994           0                      1049                      <NA> 401320582
## 2995           2                       856                      <NA> 401320582
## 2996           0                       856                      <NA> 401320582
## 2997           0                   2529122                      <NA> 401320582
## 2998           0                   2529950                      <NA> 401320582
## 2999           2                   4065870                   2529122 401320582
## 3000           0                      1068                      <NA> 401320582
## 3001           2                   2529122                      1049 401320582
## 3002           2                   2491214                      <NA> 401320582
## 3003           0                   3149391                      <NA> 401320582
## 3004           1                   2529950                      <NA> 401320582
## 3005           1                   2529950                      <NA> 401320582
## 3006           0                      1017                      <NA> 401320582
## 3007           2                   2491214                   2988756 401320582
## 3008           2                   3149391                      <NA> 401320582
## 3009           0                   2988756                      <NA> 401320582
## 3010           2                   2529950                      <NA> 401320582
## 3011           2                   2566106                   4834791 401320582
## 3012           0                   2566106                      <NA> 401320582
## 3013           0                       856                      <NA> 401320582
## 3014           2                   2566106                   2529122 401320582
## 3015           0                   3054590                   3149391 401320582
## 3016           2                   3149391                   2529122 401320582
## 3017           3                   3054590                       856 401320582
## 3018           0                   4065870                      <NA> 401320582
## 3019           1                   4065870                      <NA> 401320582
## 3020           0                   4068178                   4834791 401320582
## 3021           2                   2529122                      <NA> 401320582
## 3022           0                   4065832                      <NA> 401320582
## 3023           2                   3149391                      <NA> 401320582
## 3024           0                      1068                      <NA> 401320582
## 3025           2                   2566106                      <NA> 401320582
## 3026           0                   3054590                      <NA> 401320582
## 3027           1                   2529122                      <NA> 401320582
## 3028           1                   2529122                      <NA> 401320582
## 3029           0                   4065832                      <NA> 401320582
## 3030           0                   4065832                      <NA> 401320582
##      away_team_id away_team_name away_team_mascot away_team_abbrev
## 1               5        Indiana            Fever              IND
## 2               5        Indiana            Fever              IND
## 3               5        Indiana            Fever              IND
## 4               5        Indiana            Fever              IND
## 5               5        Indiana            Fever              IND
## 6               5        Indiana            Fever              IND
## 7               5        Indiana            Fever              IND
## 8               5        Indiana            Fever              IND
## 9               5        Indiana            Fever              IND
## 10              5        Indiana            Fever              IND
## 11              5        Indiana            Fever              IND
## 12              5        Indiana            Fever              IND
## 13              5        Indiana            Fever              IND
## 14              5        Indiana            Fever              IND
## 15              5        Indiana            Fever              IND
## 16              5        Indiana            Fever              IND
## 17              5        Indiana            Fever              IND
## 18              5        Indiana            Fever              IND
## 19              5        Indiana            Fever              IND
## 20              5        Indiana            Fever              IND
## 21              5        Indiana            Fever              IND
## 22              5        Indiana            Fever              IND
## 23              5        Indiana            Fever              IND
## 24              5        Indiana            Fever              IND
## 25              5        Indiana            Fever              IND
## 26              5        Indiana            Fever              IND
## 27              5        Indiana            Fever              IND
## 28              5        Indiana            Fever              IND
## 29              5        Indiana            Fever              IND
## 30              5        Indiana            Fever              IND
## 31              5        Indiana            Fever              IND
## 32              5        Indiana            Fever              IND
## 33              5        Indiana            Fever              IND
## 34              5        Indiana            Fever              IND
## 35              5        Indiana            Fever              IND
## 36              5        Indiana            Fever              IND
## 37              5        Indiana            Fever              IND
## 38              5        Indiana            Fever              IND
## 39              5        Indiana            Fever              IND
## 40              5        Indiana            Fever              IND
## 41              5        Indiana            Fever              IND
## 42              5        Indiana            Fever              IND
## 43              5        Indiana            Fever              IND
## 44              5        Indiana            Fever              IND
## 45              5        Indiana            Fever              IND
## 46              5        Indiana            Fever              IND
## 47              5        Indiana            Fever              IND
## 48              5        Indiana            Fever              IND
## 49              5        Indiana            Fever              IND
## 50              5        Indiana            Fever              IND
## 51              5        Indiana            Fever              IND
## 52              5        Indiana            Fever              IND
## 53              5        Indiana            Fever              IND
## 54              5        Indiana            Fever              IND
## 55              5        Indiana            Fever              IND
## 56              5        Indiana            Fever              IND
## 57              5        Indiana            Fever              IND
## 58              5        Indiana            Fever              IND
## 59              5        Indiana            Fever              IND
## 60              5        Indiana            Fever              IND
## 61              5        Indiana            Fever              IND
## 62              5        Indiana            Fever              IND
## 63              5        Indiana            Fever              IND
## 64              5        Indiana            Fever              IND
## 65              5        Indiana            Fever              IND
## 66              5        Indiana            Fever              IND
## 67              5        Indiana            Fever              IND
## 68              5        Indiana            Fever              IND
## 69              5        Indiana            Fever              IND
## 70              5        Indiana            Fever              IND
## 71              5        Indiana            Fever              IND
## 72              5        Indiana            Fever              IND
## 73              5        Indiana            Fever              IND
## 74              5        Indiana            Fever              IND
## 75              5        Indiana            Fever              IND
## 76              5        Indiana            Fever              IND
## 77              5        Indiana            Fever              IND
## 78              5        Indiana            Fever              IND
## 79              5        Indiana            Fever              IND
## 80              5        Indiana            Fever              IND
## 81              5        Indiana            Fever              IND
## 82              5        Indiana            Fever              IND
## 83              5        Indiana            Fever              IND
## 84              5        Indiana            Fever              IND
## 85              5        Indiana            Fever              IND
## 86              5        Indiana            Fever              IND
## 87              5        Indiana            Fever              IND
## 88              5        Indiana            Fever              IND
## 89              5        Indiana            Fever              IND
## 90              5        Indiana            Fever              IND
## 91              5        Indiana            Fever              IND
## 92              5        Indiana            Fever              IND
## 93              5        Indiana            Fever              IND
## 94              5        Indiana            Fever              IND
## 95              5        Indiana            Fever              IND
## 96              5        Indiana            Fever              IND
## 97              5        Indiana            Fever              IND
## 98              5        Indiana            Fever              IND
## 99              5        Indiana            Fever              IND
## 100             5        Indiana            Fever              IND
## 101             5        Indiana            Fever              IND
## 102             5        Indiana            Fever              IND
## 103             5        Indiana            Fever              IND
## 104             5        Indiana            Fever              IND
## 105             5        Indiana            Fever              IND
## 106             5        Indiana            Fever              IND
## 107             5        Indiana            Fever              IND
## 108             5        Indiana            Fever              IND
## 109             5        Indiana            Fever              IND
## 110             5        Indiana            Fever              IND
## 111             5        Indiana            Fever              IND
## 112             5        Indiana            Fever              IND
## 113             5        Indiana            Fever              IND
## 114             5        Indiana            Fever              IND
## 115             5        Indiana            Fever              IND
## 116             5        Indiana            Fever              IND
## 117             5        Indiana            Fever              IND
## 118             5        Indiana            Fever              IND
## 119             5        Indiana            Fever              IND
## 120             5        Indiana            Fever              IND
## 121             5        Indiana            Fever              IND
## 122             5        Indiana            Fever              IND
## 123             5        Indiana            Fever              IND
## 124             5        Indiana            Fever              IND
## 125             5        Indiana            Fever              IND
## 126             5        Indiana            Fever              IND
## 127             5        Indiana            Fever              IND
## 128             5        Indiana            Fever              IND
## 129             5        Indiana            Fever              IND
## 130             5        Indiana            Fever              IND
## 131             5        Indiana            Fever              IND
## 132             5        Indiana            Fever              IND
## 133             5        Indiana            Fever              IND
## 134             5        Indiana            Fever              IND
## 135             5        Indiana            Fever              IND
## 136             5        Indiana            Fever              IND
## 137             5        Indiana            Fever              IND
## 138             5        Indiana            Fever              IND
## 139             5        Indiana            Fever              IND
## 140             5        Indiana            Fever              IND
## 141             5        Indiana            Fever              IND
## 142             5        Indiana            Fever              IND
## 143             5        Indiana            Fever              IND
## 144             5        Indiana            Fever              IND
## 145             5        Indiana            Fever              IND
## 146             5        Indiana            Fever              IND
## 147             5        Indiana            Fever              IND
## 148             5        Indiana            Fever              IND
## 149             5        Indiana            Fever              IND
## 150             5        Indiana            Fever              IND
## 151             5        Indiana            Fever              IND
## 152             5        Indiana            Fever              IND
## 153             5        Indiana            Fever              IND
## 154             5        Indiana            Fever              IND
## 155             5        Indiana            Fever              IND
## 156             5        Indiana            Fever              IND
## 157             5        Indiana            Fever              IND
## 158             5        Indiana            Fever              IND
## 159             5        Indiana            Fever              IND
## 160             5        Indiana            Fever              IND
## 161             5        Indiana            Fever              IND
## 162             5        Indiana            Fever              IND
## 163             5        Indiana            Fever              IND
## 164             5        Indiana            Fever              IND
## 165             5        Indiana            Fever              IND
## 166             5        Indiana            Fever              IND
## 167             5        Indiana            Fever              IND
## 168             5        Indiana            Fever              IND
## 169             5        Indiana            Fever              IND
## 170             5        Indiana            Fever              IND
## 171             5        Indiana            Fever              IND
## 172             5        Indiana            Fever              IND
## 173             5        Indiana            Fever              IND
## 174             5        Indiana            Fever              IND
## 175             5        Indiana            Fever              IND
## 176             5        Indiana            Fever              IND
## 177             5        Indiana            Fever              IND
## 178             5        Indiana            Fever              IND
## 179             5        Indiana            Fever              IND
## 180             5        Indiana            Fever              IND
## 181             5        Indiana            Fever              IND
## 182             5        Indiana            Fever              IND
## 183             5        Indiana            Fever              IND
## 184             5        Indiana            Fever              IND
## 185             5        Indiana            Fever              IND
## 186            18    Connecticut              Sun             CONN
## 187            18    Connecticut              Sun             CONN
## 188            18    Connecticut              Sun             CONN
## 189            18    Connecticut              Sun             CONN
## 190            18    Connecticut              Sun             CONN
## 191            18    Connecticut              Sun             CONN
## 192            18    Connecticut              Sun             CONN
## 193            18    Connecticut              Sun             CONN
## 194            18    Connecticut              Sun             CONN
## 195            18    Connecticut              Sun             CONN
## 196            18    Connecticut              Sun             CONN
## 197            18    Connecticut              Sun             CONN
## 198            18    Connecticut              Sun             CONN
## 199            18    Connecticut              Sun             CONN
## 200            18    Connecticut              Sun             CONN
## 201            18    Connecticut              Sun             CONN
## 202            18    Connecticut              Sun             CONN
## 203            18    Connecticut              Sun             CONN
## 204            18    Connecticut              Sun             CONN
## 205            18    Connecticut              Sun             CONN
## 206            18    Connecticut              Sun             CONN
## 207            18    Connecticut              Sun             CONN
## 208            18    Connecticut              Sun             CONN
## 209            18    Connecticut              Sun             CONN
## 210            18    Connecticut              Sun             CONN
## 211            18    Connecticut              Sun             CONN
## 212            18    Connecticut              Sun             CONN
## 213            18    Connecticut              Sun             CONN
## 214            18    Connecticut              Sun             CONN
## 215            18    Connecticut              Sun             CONN
## 216            18    Connecticut              Sun             CONN
## 217            18    Connecticut              Sun             CONN
## 218            18    Connecticut              Sun             CONN
## 219            18    Connecticut              Sun             CONN
## 220            18    Connecticut              Sun             CONN
## 221            18    Connecticut              Sun             CONN
## 222            18    Connecticut              Sun             CONN
## 223            18    Connecticut              Sun             CONN
## 224            18    Connecticut              Sun             CONN
## 225            18    Connecticut              Sun             CONN
## 226            18    Connecticut              Sun             CONN
## 227            18    Connecticut              Sun             CONN
## 228            18    Connecticut              Sun             CONN
## 229            18    Connecticut              Sun             CONN
## 230            18    Connecticut              Sun             CONN
## 231            18    Connecticut              Sun             CONN
## 232            18    Connecticut              Sun             CONN
## 233            18    Connecticut              Sun             CONN
## 234            18    Connecticut              Sun             CONN
## 235            18    Connecticut              Sun             CONN
## 236            18    Connecticut              Sun             CONN
## 237            18    Connecticut              Sun             CONN
## 238            18    Connecticut              Sun             CONN
## 239            18    Connecticut              Sun             CONN
## 240            18    Connecticut              Sun             CONN
## 241            18    Connecticut              Sun             CONN
## 242            18    Connecticut              Sun             CONN
## 243            18    Connecticut              Sun             CONN
## 244            18    Connecticut              Sun             CONN
## 245            18    Connecticut              Sun             CONN
## 246            18    Connecticut              Sun             CONN
## 247            18    Connecticut              Sun             CONN
## 248            18    Connecticut              Sun             CONN
## 249            18    Connecticut              Sun             CONN
## 250            18    Connecticut              Sun             CONN
## 251            18    Connecticut              Sun             CONN
## 252            18    Connecticut              Sun             CONN
## 253            18    Connecticut              Sun             CONN
## 254            18    Connecticut              Sun             CONN
## 255            18    Connecticut              Sun             CONN
## 256            18    Connecticut              Sun             CONN
## 257            18    Connecticut              Sun             CONN
## 258            18    Connecticut              Sun             CONN
## 259            18    Connecticut              Sun             CONN
## 260            18    Connecticut              Sun             CONN
## 261            18    Connecticut              Sun             CONN
## 262            18    Connecticut              Sun             CONN
## 263            18    Connecticut              Sun             CONN
## 264            18    Connecticut              Sun             CONN
## 265            18    Connecticut              Sun             CONN
## 266            18    Connecticut              Sun             CONN
## 267            18    Connecticut              Sun             CONN
## 268            18    Connecticut              Sun             CONN
## 269            18    Connecticut              Sun             CONN
## 270            18    Connecticut              Sun             CONN
## 271            18    Connecticut              Sun             CONN
## 272            18    Connecticut              Sun             CONN
## 273            18    Connecticut              Sun             CONN
## 274            18    Connecticut              Sun             CONN
## 275            18    Connecticut              Sun             CONN
## 276            18    Connecticut              Sun             CONN
## 277            18    Connecticut              Sun             CONN
## 278            18    Connecticut              Sun             CONN
## 279            18    Connecticut              Sun             CONN
## 280            18    Connecticut              Sun             CONN
## 281            18    Connecticut              Sun             CONN
## 282            18    Connecticut              Sun             CONN
## 283            18    Connecticut              Sun             CONN
## 284            18    Connecticut              Sun             CONN
## 285            18    Connecticut              Sun             CONN
## 286            18    Connecticut              Sun             CONN
## 287            18    Connecticut              Sun             CONN
## 288            18    Connecticut              Sun             CONN
## 289            18    Connecticut              Sun             CONN
## 290            18    Connecticut              Sun             CONN
## 291            18    Connecticut              Sun             CONN
## 292            18    Connecticut              Sun             CONN
## 293            18    Connecticut              Sun             CONN
## 294            18    Connecticut              Sun             CONN
## 295            18    Connecticut              Sun             CONN
## 296            18    Connecticut              Sun             CONN
## 297            18    Connecticut              Sun             CONN
## 298            18    Connecticut              Sun             CONN
## 299            18    Connecticut              Sun             CONN
## 300            18    Connecticut              Sun             CONN
## 301            18    Connecticut              Sun             CONN
## 302            18    Connecticut              Sun             CONN
## 303            18    Connecticut              Sun             CONN
## 304            18    Connecticut              Sun             CONN
## 305            18    Connecticut              Sun             CONN
## 306            18    Connecticut              Sun             CONN
## 307            18    Connecticut              Sun             CONN
## 308            18    Connecticut              Sun             CONN
## 309            18    Connecticut              Sun             CONN
## 310            18    Connecticut              Sun             CONN
## 311            18    Connecticut              Sun             CONN
## 312            18    Connecticut              Sun             CONN
## 313            18    Connecticut              Sun             CONN
## 314            18    Connecticut              Sun             CONN
## 315            18    Connecticut              Sun             CONN
## 316            18    Connecticut              Sun             CONN
## 317            18    Connecticut              Sun             CONN
## 318            18    Connecticut              Sun             CONN
## 319            18    Connecticut              Sun             CONN
## 320            18    Connecticut              Sun             CONN
## 321            18    Connecticut              Sun             CONN
## 322            18    Connecticut              Sun             CONN
## 323            18    Connecticut              Sun             CONN
## 324            18    Connecticut              Sun             CONN
## 325            18    Connecticut              Sun             CONN
## 326            18    Connecticut              Sun             CONN
## 327            18    Connecticut              Sun             CONN
## 328            18    Connecticut              Sun             CONN
## 329            18    Connecticut              Sun             CONN
## 330            18    Connecticut              Sun             CONN
## 331            18    Connecticut              Sun             CONN
## 332            18    Connecticut              Sun             CONN
## 333            18    Connecticut              Sun             CONN
## 334            18    Connecticut              Sun             CONN
## 335            18    Connecticut              Sun             CONN
## 336            18    Connecticut              Sun             CONN
## 337            18    Connecticut              Sun             CONN
## 338            18    Connecticut              Sun             CONN
## 339            18    Connecticut              Sun             CONN
## 340            18    Connecticut              Sun             CONN
## 341            18    Connecticut              Sun             CONN
## 342            18    Connecticut              Sun             CONN
## 343            18    Connecticut              Sun             CONN
## 344            18    Connecticut              Sun             CONN
## 345            18    Connecticut              Sun             CONN
## 346            18    Connecticut              Sun             CONN
## 347            18    Connecticut              Sun             CONN
## 348            18    Connecticut              Sun             CONN
## 349            18    Connecticut              Sun             CONN
## 350            18    Connecticut              Sun             CONN
## 351            18    Connecticut              Sun             CONN
## 352            18    Connecticut              Sun             CONN
## 353            18    Connecticut              Sun             CONN
## 354            11        Phoenix          Mercury              PHX
## 355            11        Phoenix          Mercury              PHX
## 356            11        Phoenix          Mercury              PHX
## 357            11        Phoenix          Mercury              PHX
## 358            11        Phoenix          Mercury              PHX
## 359            11        Phoenix          Mercury              PHX
## 360            11        Phoenix          Mercury              PHX
## 361            11        Phoenix          Mercury              PHX
## 362            11        Phoenix          Mercury              PHX
## 363            11        Phoenix          Mercury              PHX
## 364            11        Phoenix          Mercury              PHX
## 365            11        Phoenix          Mercury              PHX
## 366            11        Phoenix          Mercury              PHX
## 367            11        Phoenix          Mercury              PHX
## 368            11        Phoenix          Mercury              PHX
## 369            11        Phoenix          Mercury              PHX
## 370            11        Phoenix          Mercury              PHX
## 371            11        Phoenix          Mercury              PHX
## 372            11        Phoenix          Mercury              PHX
## 373            11        Phoenix          Mercury              PHX
## 374            11        Phoenix          Mercury              PHX
## 375            11        Phoenix          Mercury              PHX
## 376            11        Phoenix          Mercury              PHX
## 377            11        Phoenix          Mercury              PHX
## 378            11        Phoenix          Mercury              PHX
## 379            11        Phoenix          Mercury              PHX
## 380            11        Phoenix          Mercury              PHX
## 381            11        Phoenix          Mercury              PHX
## 382            11        Phoenix          Mercury              PHX
## 383            11        Phoenix          Mercury              PHX
## 384            11        Phoenix          Mercury              PHX
## 385            11        Phoenix          Mercury              PHX
## 386            11        Phoenix          Mercury              PHX
## 387            11        Phoenix          Mercury              PHX
## 388            11        Phoenix          Mercury              PHX
## 389            11        Phoenix          Mercury              PHX
## 390            11        Phoenix          Mercury              PHX
## 391            11        Phoenix          Mercury              PHX
## 392            11        Phoenix          Mercury              PHX
## 393            11        Phoenix          Mercury              PHX
## 394            11        Phoenix          Mercury              PHX
## 395            11        Phoenix          Mercury              PHX
## 396            11        Phoenix          Mercury              PHX
## 397            11        Phoenix          Mercury              PHX
## 398            11        Phoenix          Mercury              PHX
## 399            11        Phoenix          Mercury              PHX
## 400            11        Phoenix          Mercury              PHX
## 401            11        Phoenix          Mercury              PHX
## 402            11        Phoenix          Mercury              PHX
## 403            11        Phoenix          Mercury              PHX
## 404            11        Phoenix          Mercury              PHX
## 405            11        Phoenix          Mercury              PHX
## 406            11        Phoenix          Mercury              PHX
## 407            11        Phoenix          Mercury              PHX
## 408            11        Phoenix          Mercury              PHX
## 409            11        Phoenix          Mercury              PHX
## 410            11        Phoenix          Mercury              PHX
## 411            11        Phoenix          Mercury              PHX
## 412            11        Phoenix          Mercury              PHX
## 413            11        Phoenix          Mercury              PHX
## 414            11        Phoenix          Mercury              PHX
## 415            11        Phoenix          Mercury              PHX
## 416            11        Phoenix          Mercury              PHX
## 417            11        Phoenix          Mercury              PHX
## 418            11        Phoenix          Mercury              PHX
## 419            11        Phoenix          Mercury              PHX
## 420            11        Phoenix          Mercury              PHX
## 421            11        Phoenix          Mercury              PHX
## 422            11        Phoenix          Mercury              PHX
## 423            11        Phoenix          Mercury              PHX
## 424            11        Phoenix          Mercury              PHX
## 425            11        Phoenix          Mercury              PHX
## 426            11        Phoenix          Mercury              PHX
## 427            11        Phoenix          Mercury              PHX
## 428            11        Phoenix          Mercury              PHX
## 429            11        Phoenix          Mercury              PHX
## 430            11        Phoenix          Mercury              PHX
## 431            11        Phoenix          Mercury              PHX
## 432            11        Phoenix          Mercury              PHX
## 433            11        Phoenix          Mercury              PHX
## 434            11        Phoenix          Mercury              PHX
## 435            11        Phoenix          Mercury              PHX
## 436            11        Phoenix          Mercury              PHX
## 437            11        Phoenix          Mercury              PHX
## 438            11        Phoenix          Mercury              PHX
## 439            11        Phoenix          Mercury              PHX
## 440            11        Phoenix          Mercury              PHX
## 441            11        Phoenix          Mercury              PHX
## 442            11        Phoenix          Mercury              PHX
## 443            11        Phoenix          Mercury              PHX
## 444            11        Phoenix          Mercury              PHX
## 445            11        Phoenix          Mercury              PHX
## 446            11        Phoenix          Mercury              PHX
## 447            11        Phoenix          Mercury              PHX
## 448            11        Phoenix          Mercury              PHX
## 449            11        Phoenix          Mercury              PHX
## 450            11        Phoenix          Mercury              PHX
## 451            11        Phoenix          Mercury              PHX
## 452            11        Phoenix          Mercury              PHX
## 453            11        Phoenix          Mercury              PHX
## 454            11        Phoenix          Mercury              PHX
## 455            11        Phoenix          Mercury              PHX
## 456            11        Phoenix          Mercury              PHX
## 457            11        Phoenix          Mercury              PHX
## 458            11        Phoenix          Mercury              PHX
## 459            11        Phoenix          Mercury              PHX
## 460            11        Phoenix          Mercury              PHX
## 461            11        Phoenix          Mercury              PHX
## 462            11        Phoenix          Mercury              PHX
## 463            11        Phoenix          Mercury              PHX
## 464            11        Phoenix          Mercury              PHX
## 465            11        Phoenix          Mercury              PHX
## 466            11        Phoenix          Mercury              PHX
## 467            11        Phoenix          Mercury              PHX
## 468            11        Phoenix          Mercury              PHX
## 469            11        Phoenix          Mercury              PHX
## 470            11        Phoenix          Mercury              PHX
## 471            11        Phoenix          Mercury              PHX
## 472            11        Phoenix          Mercury              PHX
## 473            11        Phoenix          Mercury              PHX
## 474            11        Phoenix          Mercury              PHX
## 475            11        Phoenix          Mercury              PHX
## 476            11        Phoenix          Mercury              PHX
## 477            11        Phoenix          Mercury              PHX
## 478            11        Phoenix          Mercury              PHX
## 479            11        Phoenix          Mercury              PHX
## 480            11        Phoenix          Mercury              PHX
## 481            11        Phoenix          Mercury              PHX
## 482            11        Phoenix          Mercury              PHX
## 483            11        Phoenix          Mercury              PHX
## 484            11        Phoenix          Mercury              PHX
## 485            11        Phoenix          Mercury              PHX
## 486            11        Phoenix          Mercury              PHX
## 487            11        Phoenix          Mercury              PHX
## 488            11        Phoenix          Mercury              PHX
## 489            11        Phoenix          Mercury              PHX
## 490            11        Phoenix          Mercury              PHX
## 491            11        Phoenix          Mercury              PHX
## 492            11        Phoenix          Mercury              PHX
## 493            11        Phoenix          Mercury              PHX
## 494            11        Phoenix          Mercury              PHX
## 495            11        Phoenix          Mercury              PHX
## 496            11        Phoenix          Mercury              PHX
## 497            11        Phoenix          Mercury              PHX
## 498            11        Phoenix          Mercury              PHX
## 499            11        Phoenix          Mercury              PHX
## 500            11        Phoenix          Mercury              PHX
## 501            11        Phoenix          Mercury              PHX
## 502            11        Phoenix          Mercury              PHX
## 503            11        Phoenix          Mercury              PHX
## 504            11        Phoenix          Mercury              PHX
## 505            11        Phoenix          Mercury              PHX
## 506            11        Phoenix          Mercury              PHX
## 507            11        Phoenix          Mercury              PHX
## 508            11        Phoenix          Mercury              PHX
## 509            11        Phoenix          Mercury              PHX
## 510            11        Phoenix          Mercury              PHX
## 511            11        Phoenix          Mercury              PHX
## 512            11        Phoenix          Mercury              PHX
## 513            11        Phoenix          Mercury              PHX
## 514            11        Phoenix          Mercury              PHX
## 515            11        Phoenix          Mercury              PHX
## 516            11        Phoenix          Mercury              PHX
## 517            11        Phoenix          Mercury              PHX
## 518            11        Phoenix          Mercury              PHX
## 519            11        Phoenix          Mercury              PHX
## 520            11        Phoenix          Mercury              PHX
## 521            11        Phoenix          Mercury              PHX
## 522            11        Phoenix          Mercury              PHX
## 523            11        Phoenix          Mercury              PHX
## 524            11        Phoenix          Mercury              PHX
## 525            11        Phoenix          Mercury              PHX
## 526            11        Phoenix          Mercury              PHX
## 527            11        Phoenix          Mercury              PHX
## 528            11        Phoenix          Mercury              PHX
## 529            11        Phoenix          Mercury              PHX
## 530            11        Phoenix          Mercury              PHX
## 531            11        Phoenix          Mercury              PHX
## 532            11        Phoenix          Mercury              PHX
## 533            11        Phoenix          Mercury              PHX
## 534             3         Dallas            Wings              DAL
## 535             3         Dallas            Wings              DAL
## 536             3         Dallas            Wings              DAL
## 537             3         Dallas            Wings              DAL
## 538             3         Dallas            Wings              DAL
## 539             3         Dallas            Wings              DAL
## 540             3         Dallas            Wings              DAL
## 541             3         Dallas            Wings              DAL
## 542             3         Dallas            Wings              DAL
## 543             3         Dallas            Wings              DAL
## 544             3         Dallas            Wings              DAL
## 545             3         Dallas            Wings              DAL
## 546             3         Dallas            Wings              DAL
## 547             3         Dallas            Wings              DAL
## 548             3         Dallas            Wings              DAL
## 549             3         Dallas            Wings              DAL
## 550             3         Dallas            Wings              DAL
## 551             3         Dallas            Wings              DAL
## 552             3         Dallas            Wings              DAL
## 553             3         Dallas            Wings              DAL
## 554             3         Dallas            Wings              DAL
## 555             3         Dallas            Wings              DAL
## 556             3         Dallas            Wings              DAL
## 557             3         Dallas            Wings              DAL
## 558             3         Dallas            Wings              DAL
## 559             3         Dallas            Wings              DAL
## 560             3         Dallas            Wings              DAL
## 561             3         Dallas            Wings              DAL
## 562             3         Dallas            Wings              DAL
## 563             3         Dallas            Wings              DAL
## 564             3         Dallas            Wings              DAL
## 565             3         Dallas            Wings              DAL
## 566             3         Dallas            Wings              DAL
## 567             3         Dallas            Wings              DAL
## 568             3         Dallas            Wings              DAL
## 569             3         Dallas            Wings              DAL
## 570             3         Dallas            Wings              DAL
## 571             3         Dallas            Wings              DAL
## 572             3         Dallas            Wings              DAL
## 573             3         Dallas            Wings              DAL
## 574             3         Dallas            Wings              DAL
## 575             3         Dallas            Wings              DAL
## 576             3         Dallas            Wings              DAL
## 577             3         Dallas            Wings              DAL
## 578             3         Dallas            Wings              DAL
## 579             3         Dallas            Wings              DAL
## 580             3         Dallas            Wings              DAL
## 581             3         Dallas            Wings              DAL
## 582             3         Dallas            Wings              DAL
## 583             3         Dallas            Wings              DAL
## 584             3         Dallas            Wings              DAL
## 585             3         Dallas            Wings              DAL
## 586             3         Dallas            Wings              DAL
## 587             3         Dallas            Wings              DAL
## 588             3         Dallas            Wings              DAL
## 589             3         Dallas            Wings              DAL
## 590             3         Dallas            Wings              DAL
## 591             3         Dallas            Wings              DAL
## 592             3         Dallas            Wings              DAL
## 593             3         Dallas            Wings              DAL
## 594             3         Dallas            Wings              DAL
## 595             3         Dallas            Wings              DAL
## 596             3         Dallas            Wings              DAL
## 597             3         Dallas            Wings              DAL
## 598             3         Dallas            Wings              DAL
## 599             3         Dallas            Wings              DAL
## 600             3         Dallas            Wings              DAL
## 601             3         Dallas            Wings              DAL
## 602             3         Dallas            Wings              DAL
## 603             3         Dallas            Wings              DAL
## 604             3         Dallas            Wings              DAL
## 605             3         Dallas            Wings              DAL
## 606             3         Dallas            Wings              DAL
## 607             3         Dallas            Wings              DAL
## 608             3         Dallas            Wings              DAL
## 609             3         Dallas            Wings              DAL
## 610             3         Dallas            Wings              DAL
## 611             3         Dallas            Wings              DAL
## 612             3         Dallas            Wings              DAL
## 613             3         Dallas            Wings              DAL
## 614             3         Dallas            Wings              DAL
## 615             3         Dallas            Wings              DAL
## 616             3         Dallas            Wings              DAL
## 617             3         Dallas            Wings              DAL
## 618             3         Dallas            Wings              DAL
## 619             3         Dallas            Wings              DAL
## 620             3         Dallas            Wings              DAL
## 621             3         Dallas            Wings              DAL
## 622             3         Dallas            Wings              DAL
## 623             3         Dallas            Wings              DAL
## 624             3         Dallas            Wings              DAL
## 625             3         Dallas            Wings              DAL
## 626             3         Dallas            Wings              DAL
## 627             3         Dallas            Wings              DAL
## 628             3         Dallas            Wings              DAL
## 629             3         Dallas            Wings              DAL
## 630             3         Dallas            Wings              DAL
## 631             3         Dallas            Wings              DAL
## 632             3         Dallas            Wings              DAL
## 633             3         Dallas            Wings              DAL
## 634             3         Dallas            Wings              DAL
## 635             3         Dallas            Wings              DAL
## 636             3         Dallas            Wings              DAL
## 637             3         Dallas            Wings              DAL
## 638             3         Dallas            Wings              DAL
## 639             3         Dallas            Wings              DAL
## 640             3         Dallas            Wings              DAL
## 641             3         Dallas            Wings              DAL
## 642             3         Dallas            Wings              DAL
## 643             3         Dallas            Wings              DAL
## 644             3         Dallas            Wings              DAL
## 645             3         Dallas            Wings              DAL
## 646             3         Dallas            Wings              DAL
## 647             3         Dallas            Wings              DAL
## 648             3         Dallas            Wings              DAL
## 649             3         Dallas            Wings              DAL
## 650             3         Dallas            Wings              DAL
## 651             3         Dallas            Wings              DAL
## 652             3         Dallas            Wings              DAL
## 653             3         Dallas            Wings              DAL
## 654             3         Dallas            Wings              DAL
## 655             3         Dallas            Wings              DAL
## 656             3         Dallas            Wings              DAL
## 657             3         Dallas            Wings              DAL
## 658             3         Dallas            Wings              DAL
## 659             3         Dallas            Wings              DAL
## 660             3         Dallas            Wings              DAL
## 661             3         Dallas            Wings              DAL
## 662             3         Dallas            Wings              DAL
## 663             3         Dallas            Wings              DAL
## 664             3         Dallas            Wings              DAL
## 665             3         Dallas            Wings              DAL
## 666             3         Dallas            Wings              DAL
## 667             3         Dallas            Wings              DAL
## 668             3         Dallas            Wings              DAL
## 669             3         Dallas            Wings              DAL
## 670             3         Dallas            Wings              DAL
## 671             3         Dallas            Wings              DAL
## 672             3         Dallas            Wings              DAL
## 673             3         Dallas            Wings              DAL
## 674             3         Dallas            Wings              DAL
## 675             3         Dallas            Wings              DAL
## 676             3         Dallas            Wings              DAL
## 677             3         Dallas            Wings              DAL
## 678             3         Dallas            Wings              DAL
## 679             3         Dallas            Wings              DAL
## 680             3         Dallas            Wings              DAL
## 681             3         Dallas            Wings              DAL
## 682             3         Dallas            Wings              DAL
## 683             3         Dallas            Wings              DAL
## 684             3         Dallas            Wings              DAL
## 685             3         Dallas            Wings              DAL
## 686             3         Dallas            Wings              DAL
## 687             3         Dallas            Wings              DAL
## 688             3         Dallas            Wings              DAL
## 689             3         Dallas            Wings              DAL
## 690             3         Dallas            Wings              DAL
## 691             3         Dallas            Wings              DAL
## 692             3         Dallas            Wings              DAL
## 693             3         Dallas            Wings              DAL
## 694             3         Dallas            Wings              DAL
## 695             3         Dallas            Wings              DAL
## 696             3         Dallas            Wings              DAL
## 697             3         Dallas            Wings              DAL
## 698             3         Dallas            Wings              DAL
## 699             3         Dallas            Wings              DAL
## 700             3         Dallas            Wings              DAL
## 701             3         Dallas            Wings              DAL
## 702             3         Dallas            Wings              DAL
## 703             3         Dallas            Wings              DAL
## 704             3         Dallas            Wings              DAL
## 705             3         Dallas            Wings              DAL
## 706             3         Dallas            Wings              DAL
## 707             3         Dallas            Wings              DAL
## 708             3         Dallas            Wings              DAL
## 709             3         Dallas            Wings              DAL
## 710             3         Dallas            Wings              DAL
## 711             3         Dallas            Wings              DAL
## 712            19        Chicago              Sky              CHI
## 713            19        Chicago              Sky              CHI
## 714            19        Chicago              Sky              CHI
## 715            19        Chicago              Sky              CHI
## 716            19        Chicago              Sky              CHI
## 717            19        Chicago              Sky              CHI
## 718            19        Chicago              Sky              CHI
## 719            19        Chicago              Sky              CHI
## 720            19        Chicago              Sky              CHI
## 721            19        Chicago              Sky              CHI
## 722            19        Chicago              Sky              CHI
## 723            19        Chicago              Sky              CHI
## 724            19        Chicago              Sky              CHI
## 725            19        Chicago              Sky              CHI
## 726            19        Chicago              Sky              CHI
## 727            19        Chicago              Sky              CHI
## 728            19        Chicago              Sky              CHI
## 729            19        Chicago              Sky              CHI
## 730            19        Chicago              Sky              CHI
## 731            19        Chicago              Sky              CHI
## 732            19        Chicago              Sky              CHI
## 733            19        Chicago              Sky              CHI
## 734            19        Chicago              Sky              CHI
## 735            19        Chicago              Sky              CHI
## 736            19        Chicago              Sky              CHI
## 737            19        Chicago              Sky              CHI
## 738            19        Chicago              Sky              CHI
## 739            19        Chicago              Sky              CHI
## 740            19        Chicago              Sky              CHI
## 741            19        Chicago              Sky              CHI
## 742            19        Chicago              Sky              CHI
## 743            19        Chicago              Sky              CHI
## 744            19        Chicago              Sky              CHI
## 745            19        Chicago              Sky              CHI
## 746            19        Chicago              Sky              CHI
## 747            19        Chicago              Sky              CHI
## 748            19        Chicago              Sky              CHI
## 749            19        Chicago              Sky              CHI
## 750            19        Chicago              Sky              CHI
## 751            19        Chicago              Sky              CHI
## 752            19        Chicago              Sky              CHI
## 753            19        Chicago              Sky              CHI
## 754            19        Chicago              Sky              CHI
## 755            19        Chicago              Sky              CHI
## 756            19        Chicago              Sky              CHI
## 757            19        Chicago              Sky              CHI
## 758            19        Chicago              Sky              CHI
## 759            19        Chicago              Sky              CHI
## 760            19        Chicago              Sky              CHI
## 761            19        Chicago              Sky              CHI
## 762            19        Chicago              Sky              CHI
## 763            19        Chicago              Sky              CHI
## 764            19        Chicago              Sky              CHI
## 765            19        Chicago              Sky              CHI
## 766            19        Chicago              Sky              CHI
## 767            19        Chicago              Sky              CHI
## 768            19        Chicago              Sky              CHI
## 769            19        Chicago              Sky              CHI
## 770            19        Chicago              Sky              CHI
## 771            19        Chicago              Sky              CHI
## 772            19        Chicago              Sky              CHI
## 773            19        Chicago              Sky              CHI
## 774            19        Chicago              Sky              CHI
## 775            19        Chicago              Sky              CHI
## 776            19        Chicago              Sky              CHI
## 777            19        Chicago              Sky              CHI
## 778            19        Chicago              Sky              CHI
## 779            19        Chicago              Sky              CHI
## 780            19        Chicago              Sky              CHI
## 781            19        Chicago              Sky              CHI
## 782            19        Chicago              Sky              CHI
## 783            19        Chicago              Sky              CHI
## 784            19        Chicago              Sky              CHI
## 785            19        Chicago              Sky              CHI
## 786            19        Chicago              Sky              CHI
## 787            19        Chicago              Sky              CHI
## 788            19        Chicago              Sky              CHI
## 789            19        Chicago              Sky              CHI
## 790            19        Chicago              Sky              CHI
## 791            19        Chicago              Sky              CHI
## 792            19        Chicago              Sky              CHI
## 793            19        Chicago              Sky              CHI
## 794            19        Chicago              Sky              CHI
## 795            19        Chicago              Sky              CHI
## 796            19        Chicago              Sky              CHI
## 797            19        Chicago              Sky              CHI
## 798            19        Chicago              Sky              CHI
## 799            19        Chicago              Sky              CHI
## 800            19        Chicago              Sky              CHI
## 801            19        Chicago              Sky              CHI
## 802            19        Chicago              Sky              CHI
## 803            19        Chicago              Sky              CHI
## 804            19        Chicago              Sky              CHI
## 805            19        Chicago              Sky              CHI
## 806            19        Chicago              Sky              CHI
## 807            19        Chicago              Sky              CHI
## 808            19        Chicago              Sky              CHI
## 809            19        Chicago              Sky              CHI
## 810            19        Chicago              Sky              CHI
## 811            19        Chicago              Sky              CHI
## 812            19        Chicago              Sky              CHI
## 813            19        Chicago              Sky              CHI
## 814            19        Chicago              Sky              CHI
## 815            19        Chicago              Sky              CHI
## 816            19        Chicago              Sky              CHI
## 817            19        Chicago              Sky              CHI
## 818            19        Chicago              Sky              CHI
## 819            19        Chicago              Sky              CHI
## 820            19        Chicago              Sky              CHI
## 821            19        Chicago              Sky              CHI
## 822            19        Chicago              Sky              CHI
## 823            19        Chicago              Sky              CHI
## 824            19        Chicago              Sky              CHI
## 825            19        Chicago              Sky              CHI
## 826            19        Chicago              Sky              CHI
## 827            19        Chicago              Sky              CHI
## 828            19        Chicago              Sky              CHI
## 829            19        Chicago              Sky              CHI
## 830            19        Chicago              Sky              CHI
## 831            19        Chicago              Sky              CHI
## 832            19        Chicago              Sky              CHI
## 833            19        Chicago              Sky              CHI
## 834            19        Chicago              Sky              CHI
## 835            19        Chicago              Sky              CHI
## 836            19        Chicago              Sky              CHI
## 837            19        Chicago              Sky              CHI
## 838            19        Chicago              Sky              CHI
## 839            19        Chicago              Sky              CHI
## 840            19        Chicago              Sky              CHI
## 841            19        Chicago              Sky              CHI
## 842            19        Chicago              Sky              CHI
## 843            19        Chicago              Sky              CHI
## 844            19        Chicago              Sky              CHI
## 845            19        Chicago              Sky              CHI
## 846            19        Chicago              Sky              CHI
## 847            19        Chicago              Sky              CHI
## 848            19        Chicago              Sky              CHI
## 849            19        Chicago              Sky              CHI
## 850            19        Chicago              Sky              CHI
## 851            19        Chicago              Sky              CHI
## 852            19        Chicago              Sky              CHI
## 853            19        Chicago              Sky              CHI
## 854            19        Chicago              Sky              CHI
## 855            19        Chicago              Sky              CHI
## 856            19        Chicago              Sky              CHI
## 857            19        Chicago              Sky              CHI
## 858            19        Chicago              Sky              CHI
## 859            19        Chicago              Sky              CHI
## 860            19        Chicago              Sky              CHI
## 861            19        Chicago              Sky              CHI
## 862            19        Chicago              Sky              CHI
## 863            19        Chicago              Sky              CHI
## 864            19        Chicago              Sky              CHI
## 865            19        Chicago              Sky              CHI
## 866            19        Chicago              Sky              CHI
## 867            19        Chicago              Sky              CHI
## 868            19        Chicago              Sky              CHI
## 869            19        Chicago              Sky              CHI
## 870            19        Chicago              Sky              CHI
## 871            19        Chicago              Sky              CHI
## 872            19        Chicago              Sky              CHI
## 873            19        Chicago              Sky              CHI
## 874            19        Chicago              Sky              CHI
## 875            19        Chicago              Sky              CHI
## 876            19        Chicago              Sky              CHI
## 877            19        Chicago              Sky              CHI
## 878            19        Chicago              Sky              CHI
## 879            19        Chicago              Sky              CHI
## 880            19        Chicago              Sky              CHI
## 881            19        Chicago              Sky              CHI
## 882            19        Chicago              Sky              CHI
## 883            19        Chicago              Sky              CHI
## 884            17      Las Vegas             Aces               LV
## 885            17      Las Vegas             Aces               LV
## 886            17      Las Vegas             Aces               LV
## 887            17      Las Vegas             Aces               LV
## 888            17      Las Vegas             Aces               LV
## 889            17      Las Vegas             Aces               LV
## 890            17      Las Vegas             Aces               LV
## 891            17      Las Vegas             Aces               LV
## 892            17      Las Vegas             Aces               LV
## 893            17      Las Vegas             Aces               LV
## 894            17      Las Vegas             Aces               LV
## 895            17      Las Vegas             Aces               LV
## 896            17      Las Vegas             Aces               LV
## 897            17      Las Vegas             Aces               LV
## 898            17      Las Vegas             Aces               LV
## 899            17      Las Vegas             Aces               LV
## 900            17      Las Vegas             Aces               LV
## 901            17      Las Vegas             Aces               LV
## 902            17      Las Vegas             Aces               LV
## 903            17      Las Vegas             Aces               LV
## 904            17      Las Vegas             Aces               LV
## 905            17      Las Vegas             Aces               LV
## 906            17      Las Vegas             Aces               LV
## 907            17      Las Vegas             Aces               LV
## 908            17      Las Vegas             Aces               LV
## 909            17      Las Vegas             Aces               LV
## 910            17      Las Vegas             Aces               LV
## 911            17      Las Vegas             Aces               LV
## 912            17      Las Vegas             Aces               LV
## 913            17      Las Vegas             Aces               LV
## 914            17      Las Vegas             Aces               LV
## 915            17      Las Vegas             Aces               LV
## 916            17      Las Vegas             Aces               LV
## 917            17      Las Vegas             Aces               LV
## 918            17      Las Vegas             Aces               LV
## 919            17      Las Vegas             Aces               LV
## 920            17      Las Vegas             Aces               LV
## 921            17      Las Vegas             Aces               LV
## 922            17      Las Vegas             Aces               LV
## 923            17      Las Vegas             Aces               LV
## 924            17      Las Vegas             Aces               LV
## 925            17      Las Vegas             Aces               LV
## 926            17      Las Vegas             Aces               LV
## 927            17      Las Vegas             Aces               LV
## 928            17      Las Vegas             Aces               LV
## 929            17      Las Vegas             Aces               LV
## 930            17      Las Vegas             Aces               LV
## 931            17      Las Vegas             Aces               LV
## 932            17      Las Vegas             Aces               LV
## 933            17      Las Vegas             Aces               LV
## 934            17      Las Vegas             Aces               LV
## 935            17      Las Vegas             Aces               LV
## 936            17      Las Vegas             Aces               LV
## 937            17      Las Vegas             Aces               LV
## 938            17      Las Vegas             Aces               LV
## 939            17      Las Vegas             Aces               LV
## 940            17      Las Vegas             Aces               LV
## 941            17      Las Vegas             Aces               LV
## 942            17      Las Vegas             Aces               LV
## 943            17      Las Vegas             Aces               LV
## 944            17      Las Vegas             Aces               LV
## 945            17      Las Vegas             Aces               LV
## 946            17      Las Vegas             Aces               LV
## 947            17      Las Vegas             Aces               LV
## 948            17      Las Vegas             Aces               LV
## 949            17      Las Vegas             Aces               LV
## 950            17      Las Vegas             Aces               LV
## 951            17      Las Vegas             Aces               LV
## 952            17      Las Vegas             Aces               LV
## 953            17      Las Vegas             Aces               LV
## 954            17      Las Vegas             Aces               LV
## 955            17      Las Vegas             Aces               LV
## 956            17      Las Vegas             Aces               LV
## 957            17      Las Vegas             Aces               LV
## 958            17      Las Vegas             Aces               LV
## 959            17      Las Vegas             Aces               LV
## 960            17      Las Vegas             Aces               LV
## 961            17      Las Vegas             Aces               LV
## 962            17      Las Vegas             Aces               LV
## 963            17      Las Vegas             Aces               LV
## 964            17      Las Vegas             Aces               LV
## 965            17      Las Vegas             Aces               LV
## 966            17      Las Vegas             Aces               LV
## 967            17      Las Vegas             Aces               LV
## 968            17      Las Vegas             Aces               LV
## 969            17      Las Vegas             Aces               LV
## 970            17      Las Vegas             Aces               LV
## 971            17      Las Vegas             Aces               LV
## 972            17      Las Vegas             Aces               LV
## 973            17      Las Vegas             Aces               LV
## 974            17      Las Vegas             Aces               LV
## 975            17      Las Vegas             Aces               LV
## 976            17      Las Vegas             Aces               LV
## 977            17      Las Vegas             Aces               LV
## 978            17      Las Vegas             Aces               LV
## 979            17      Las Vegas             Aces               LV
## 980            17      Las Vegas             Aces               LV
## 981            17      Las Vegas             Aces               LV
## 982            17      Las Vegas             Aces               LV
## 983            17      Las Vegas             Aces               LV
## 984            17      Las Vegas             Aces               LV
## 985            17      Las Vegas             Aces               LV
## 986            17      Las Vegas             Aces               LV
## 987            17      Las Vegas             Aces               LV
## 988            17      Las Vegas             Aces               LV
## 989            17      Las Vegas             Aces               LV
## 990            17      Las Vegas             Aces               LV
## 991            17      Las Vegas             Aces               LV
## 992            17      Las Vegas             Aces               LV
## 993            17      Las Vegas             Aces               LV
## 994            17      Las Vegas             Aces               LV
## 995            17      Las Vegas             Aces               LV
## 996            17      Las Vegas             Aces               LV
## 997            17      Las Vegas             Aces               LV
## 998            17      Las Vegas             Aces               LV
## 999            17      Las Vegas             Aces               LV
## 1000           17      Las Vegas             Aces               LV
## 1001           17      Las Vegas             Aces               LV
## 1002           17      Las Vegas             Aces               LV
## 1003           17      Las Vegas             Aces               LV
## 1004           17      Las Vegas             Aces               LV
## 1005           17      Las Vegas             Aces               LV
## 1006           17      Las Vegas             Aces               LV
## 1007           17      Las Vegas             Aces               LV
## 1008           17      Las Vegas             Aces               LV
## 1009           17      Las Vegas             Aces               LV
## 1010           17      Las Vegas             Aces               LV
## 1011           17      Las Vegas             Aces               LV
## 1012           17      Las Vegas             Aces               LV
## 1013           17      Las Vegas             Aces               LV
## 1014           17      Las Vegas             Aces               LV
## 1015           17      Las Vegas             Aces               LV
## 1016           17      Las Vegas             Aces               LV
## 1017           17      Las Vegas             Aces               LV
## 1018           17      Las Vegas             Aces               LV
## 1019           17      Las Vegas             Aces               LV
## 1020           17      Las Vegas             Aces               LV
## 1021           17      Las Vegas             Aces               LV
## 1022           17      Las Vegas             Aces               LV
## 1023           17      Las Vegas             Aces               LV
## 1024           17      Las Vegas             Aces               LV
## 1025           17      Las Vegas             Aces               LV
## 1026           17      Las Vegas             Aces               LV
## 1027           17      Las Vegas             Aces               LV
## 1028           17      Las Vegas             Aces               LV
## 1029           17      Las Vegas             Aces               LV
## 1030           17      Las Vegas             Aces               LV
## 1031           17      Las Vegas             Aces               LV
## 1032           17      Las Vegas             Aces               LV
## 1033           17      Las Vegas             Aces               LV
## 1034           17      Las Vegas             Aces               LV
## 1035           17      Las Vegas             Aces               LV
## 1036           17      Las Vegas             Aces               LV
## 1037           17      Las Vegas             Aces               LV
## 1038           17      Las Vegas             Aces               LV
## 1039           17      Las Vegas             Aces               LV
## 1040           17      Las Vegas             Aces               LV
## 1041           17      Las Vegas             Aces               LV
## 1042           17      Las Vegas             Aces               LV
## 1043           17      Las Vegas             Aces               LV
## 1044           17      Las Vegas             Aces               LV
## 1045           17      Las Vegas             Aces               LV
## 1046           17      Las Vegas             Aces               LV
## 1047           17      Las Vegas             Aces               LV
## 1048           17      Las Vegas             Aces               LV
## 1049           17      Las Vegas             Aces               LV
## 1050           17      Las Vegas             Aces               LV
## 1051           17      Las Vegas             Aces               LV
## 1052           17      Las Vegas             Aces               LV
## 1053           17      Las Vegas             Aces               LV
## 1054           17      Las Vegas             Aces               LV
## 1055           17      Las Vegas             Aces               LV
## 1056           17      Las Vegas             Aces               LV
## 1057           17      Las Vegas             Aces               LV
## 1058           17      Las Vegas             Aces               LV
## 1059           17      Las Vegas             Aces               LV
## 1060           17      Las Vegas             Aces               LV
## 1061           17      Las Vegas             Aces               LV
## 1062           17      Las Vegas             Aces               LV
## 1063           17      Las Vegas             Aces               LV
## 1064            9       New York          Liberty               NY
## 1065            9       New York          Liberty               NY
## 1066            9       New York          Liberty               NY
## 1067            9       New York          Liberty               NY
## 1068            9       New York          Liberty               NY
## 1069            9       New York          Liberty               NY
## 1070            9       New York          Liberty               NY
## 1071            9       New York          Liberty               NY
## 1072            9       New York          Liberty               NY
## 1073            9       New York          Liberty               NY
## 1074            9       New York          Liberty               NY
## 1075            9       New York          Liberty               NY
## 1076            9       New York          Liberty               NY
## 1077            9       New York          Liberty               NY
## 1078            9       New York          Liberty               NY
## 1079            9       New York          Liberty               NY
## 1080            9       New York          Liberty               NY
## 1081            9       New York          Liberty               NY
## 1082            9       New York          Liberty               NY
## 1083            9       New York          Liberty               NY
## 1084            9       New York          Liberty               NY
## 1085            9       New York          Liberty               NY
## 1086            9       New York          Liberty               NY
## 1087            9       New York          Liberty               NY
## 1088            9       New York          Liberty               NY
## 1089            9       New York          Liberty               NY
## 1090            9       New York          Liberty               NY
## 1091            9       New York          Liberty               NY
## 1092            9       New York          Liberty               NY
## 1093            9       New York          Liberty               NY
## 1094            9       New York          Liberty               NY
## 1095            9       New York          Liberty               NY
## 1096            9       New York          Liberty               NY
## 1097            9       New York          Liberty               NY
## 1098            9       New York          Liberty               NY
## 1099            9       New York          Liberty               NY
## 1100            9       New York          Liberty               NY
## 1101            9       New York          Liberty               NY
## 1102            9       New York          Liberty               NY
## 1103            9       New York          Liberty               NY
## 1104            9       New York          Liberty               NY
## 1105            9       New York          Liberty               NY
## 1106            9       New York          Liberty               NY
## 1107            9       New York          Liberty               NY
## 1108            9       New York          Liberty               NY
## 1109            9       New York          Liberty               NY
## 1110            9       New York          Liberty               NY
## 1111            9       New York          Liberty               NY
## 1112            9       New York          Liberty               NY
## 1113            9       New York          Liberty               NY
## 1114            9       New York          Liberty               NY
## 1115            9       New York          Liberty               NY
## 1116            9       New York          Liberty               NY
## 1117            9       New York          Liberty               NY
## 1118            9       New York          Liberty               NY
## 1119            9       New York          Liberty               NY
## 1120            9       New York          Liberty               NY
## 1121            9       New York          Liberty               NY
## 1122            9       New York          Liberty               NY
## 1123            9       New York          Liberty               NY
## 1124            9       New York          Liberty               NY
## 1125            9       New York          Liberty               NY
## 1126            9       New York          Liberty               NY
## 1127            9       New York          Liberty               NY
## 1128            9       New York          Liberty               NY
## 1129            9       New York          Liberty               NY
## 1130            9       New York          Liberty               NY
## 1131            9       New York          Liberty               NY
## 1132            9       New York          Liberty               NY
## 1133            9       New York          Liberty               NY
## 1134            9       New York          Liberty               NY
## 1135            9       New York          Liberty               NY
## 1136            9       New York          Liberty               NY
## 1137            9       New York          Liberty               NY
## 1138            9       New York          Liberty               NY
## 1139            9       New York          Liberty               NY
## 1140            9       New York          Liberty               NY
## 1141            9       New York          Liberty               NY
## 1142            9       New York          Liberty               NY
## 1143            9       New York          Liberty               NY
## 1144            9       New York          Liberty               NY
## 1145            9       New York          Liberty               NY
## 1146            9       New York          Liberty               NY
## 1147            9       New York          Liberty               NY
## 1148            9       New York          Liberty               NY
## 1149            9       New York          Liberty               NY
## 1150            9       New York          Liberty               NY
## 1151            9       New York          Liberty               NY
## 1152            9       New York          Liberty               NY
## 1153            9       New York          Liberty               NY
## 1154            9       New York          Liberty               NY
## 1155            9       New York          Liberty               NY
## 1156            9       New York          Liberty               NY
## 1157            9       New York          Liberty               NY
## 1158            9       New York          Liberty               NY
## 1159            9       New York          Liberty               NY
## 1160            9       New York          Liberty               NY
## 1161            9       New York          Liberty               NY
## 1162            9       New York          Liberty               NY
## 1163            9       New York          Liberty               NY
## 1164            9       New York          Liberty               NY
## 1165            9       New York          Liberty               NY
## 1166            9       New York          Liberty               NY
## 1167            9       New York          Liberty               NY
## 1168            9       New York          Liberty               NY
## 1169            9       New York          Liberty               NY
## 1170            9       New York          Liberty               NY
## 1171            9       New York          Liberty               NY
## 1172            9       New York          Liberty               NY
## 1173            9       New York          Liberty               NY
## 1174            9       New York          Liberty               NY
## 1175            9       New York          Liberty               NY
## 1176            9       New York          Liberty               NY
## 1177            9       New York          Liberty               NY
## 1178            9       New York          Liberty               NY
## 1179            9       New York          Liberty               NY
## 1180            9       New York          Liberty               NY
## 1181            9       New York          Liberty               NY
## 1182            9       New York          Liberty               NY
## 1183            9       New York          Liberty               NY
## 1184            9       New York          Liberty               NY
## 1185            9       New York          Liberty               NY
## 1186            9       New York          Liberty               NY
## 1187            9       New York          Liberty               NY
## 1188            9       New York          Liberty               NY
## 1189            9       New York          Liberty               NY
## 1190            9       New York          Liberty               NY
## 1191            9       New York          Liberty               NY
## 1192            9       New York          Liberty               NY
## 1193            9       New York          Liberty               NY
## 1194            9       New York          Liberty               NY
## 1195            9       New York          Liberty               NY
## 1196            9       New York          Liberty               NY
## 1197            9       New York          Liberty               NY
## 1198            9       New York          Liberty               NY
## 1199            9       New York          Liberty               NY
## 1200            9       New York          Liberty               NY
## 1201            9       New York          Liberty               NY
## 1202            9       New York          Liberty               NY
## 1203            9       New York          Liberty               NY
## 1204            9       New York          Liberty               NY
## 1205            9       New York          Liberty               NY
## 1206            9       New York          Liberty               NY
## 1207            9       New York          Liberty               NY
## 1208            9       New York          Liberty               NY
## 1209            9       New York          Liberty               NY
## 1210            9       New York          Liberty               NY
## 1211            9       New York          Liberty               NY
## 1212            9       New York          Liberty               NY
## 1213            9       New York          Liberty               NY
## 1214            9       New York          Liberty               NY
## 1215            9       New York          Liberty               NY
## 1216            9       New York          Liberty               NY
## 1217            9       New York          Liberty               NY
## 1218            9       New York          Liberty               NY
## 1219            9       New York          Liberty               NY
## 1220            9       New York          Liberty               NY
## 1221            9       New York          Liberty               NY
## 1222            9       New York          Liberty               NY
## 1223            9       New York          Liberty               NY
## 1224            9       New York          Liberty               NY
## 1225            9       New York          Liberty               NY
## 1226            9       New York          Liberty               NY
## 1227            9       New York          Liberty               NY
## 1228            9       New York          Liberty               NY
## 1229            9       New York          Liberty               NY
## 1230            9       New York          Liberty               NY
## 1231            9       New York          Liberty               NY
## 1232            9       New York          Liberty               NY
## 1233            9       New York          Liberty               NY
## 1234            9       New York          Liberty               NY
## 1235            9       New York          Liberty               NY
## 1236            9       New York          Liberty               NY
## 1237            9       New York          Liberty               NY
## 1238            9       New York          Liberty               NY
## 1239            9       New York          Liberty               NY
## 1240           11        Phoenix          Mercury              PHX
## 1241           11        Phoenix          Mercury              PHX
## 1242           11        Phoenix          Mercury              PHX
## 1243           11        Phoenix          Mercury              PHX
## 1244           11        Phoenix          Mercury              PHX
## 1245           11        Phoenix          Mercury              PHX
## 1246           11        Phoenix          Mercury              PHX
## 1247           11        Phoenix          Mercury              PHX
## 1248           11        Phoenix          Mercury              PHX
## 1249           11        Phoenix          Mercury              PHX
## 1250           11        Phoenix          Mercury              PHX
## 1251           11        Phoenix          Mercury              PHX
## 1252           11        Phoenix          Mercury              PHX
## 1253           11        Phoenix          Mercury              PHX
## 1254           11        Phoenix          Mercury              PHX
## 1255           11        Phoenix          Mercury              PHX
## 1256           11        Phoenix          Mercury              PHX
## 1257           11        Phoenix          Mercury              PHX
## 1258           11        Phoenix          Mercury              PHX
## 1259           11        Phoenix          Mercury              PHX
## 1260           11        Phoenix          Mercury              PHX
## 1261           11        Phoenix          Mercury              PHX
## 1262           11        Phoenix          Mercury              PHX
## 1263           11        Phoenix          Mercury              PHX
## 1264           11        Phoenix          Mercury              PHX
## 1265           11        Phoenix          Mercury              PHX
## 1266           11        Phoenix          Mercury              PHX
## 1267           11        Phoenix          Mercury              PHX
## 1268           11        Phoenix          Mercury              PHX
## 1269           11        Phoenix          Mercury              PHX
## 1270           11        Phoenix          Mercury              PHX
## 1271           11        Phoenix          Mercury              PHX
## 1272           11        Phoenix          Mercury              PHX
## 1273           11        Phoenix          Mercury              PHX
## 1274           11        Phoenix          Mercury              PHX
## 1275           11        Phoenix          Mercury              PHX
## 1276           11        Phoenix          Mercury              PHX
## 1277           11        Phoenix          Mercury              PHX
## 1278           11        Phoenix          Mercury              PHX
## 1279           11        Phoenix          Mercury              PHX
## 1280           11        Phoenix          Mercury              PHX
## 1281           11        Phoenix          Mercury              PHX
## 1282           11        Phoenix          Mercury              PHX
## 1283           11        Phoenix          Mercury              PHX
## 1284           11        Phoenix          Mercury              PHX
## 1285           11        Phoenix          Mercury              PHX
## 1286           11        Phoenix          Mercury              PHX
## 1287           11        Phoenix          Mercury              PHX
## 1288           11        Phoenix          Mercury              PHX
## 1289           11        Phoenix          Mercury              PHX
## 1290           11        Phoenix          Mercury              PHX
## 1291           11        Phoenix          Mercury              PHX
## 1292           11        Phoenix          Mercury              PHX
## 1293           11        Phoenix          Mercury              PHX
## 1294           11        Phoenix          Mercury              PHX
## 1295           11        Phoenix          Mercury              PHX
## 1296           11        Phoenix          Mercury              PHX
## 1297           11        Phoenix          Mercury              PHX
## 1298           11        Phoenix          Mercury              PHX
## 1299           11        Phoenix          Mercury              PHX
## 1300           11        Phoenix          Mercury              PHX
## 1301           11        Phoenix          Mercury              PHX
## 1302           11        Phoenix          Mercury              PHX
## 1303           11        Phoenix          Mercury              PHX
## 1304           11        Phoenix          Mercury              PHX
## 1305           11        Phoenix          Mercury              PHX
## 1306           11        Phoenix          Mercury              PHX
## 1307           11        Phoenix          Mercury              PHX
## 1308           11        Phoenix          Mercury              PHX
## 1309           11        Phoenix          Mercury              PHX
## 1310           11        Phoenix          Mercury              PHX
## 1311           11        Phoenix          Mercury              PHX
## 1312           11        Phoenix          Mercury              PHX
## 1313           11        Phoenix          Mercury              PHX
## 1314           11        Phoenix          Mercury              PHX
## 1315           11        Phoenix          Mercury              PHX
## 1316           11        Phoenix          Mercury              PHX
## 1317           11        Phoenix          Mercury              PHX
## 1318           11        Phoenix          Mercury              PHX
## 1319           11        Phoenix          Mercury              PHX
## 1320           11        Phoenix          Mercury              PHX
## 1321           11        Phoenix          Mercury              PHX
## 1322           11        Phoenix          Mercury              PHX
## 1323           11        Phoenix          Mercury              PHX
## 1324           11        Phoenix          Mercury              PHX
## 1325           11        Phoenix          Mercury              PHX
## 1326           11        Phoenix          Mercury              PHX
## 1327           11        Phoenix          Mercury              PHX
## 1328           11        Phoenix          Mercury              PHX
## 1329           11        Phoenix          Mercury              PHX
## 1330           11        Phoenix          Mercury              PHX
## 1331           11        Phoenix          Mercury              PHX
## 1332           11        Phoenix          Mercury              PHX
## 1333           11        Phoenix          Mercury              PHX
## 1334           11        Phoenix          Mercury              PHX
## 1335           11        Phoenix          Mercury              PHX
## 1336           11        Phoenix          Mercury              PHX
## 1337           11        Phoenix          Mercury              PHX
## 1338           11        Phoenix          Mercury              PHX
## 1339           11        Phoenix          Mercury              PHX
## 1340           11        Phoenix          Mercury              PHX
## 1341           11        Phoenix          Mercury              PHX
## 1342           11        Phoenix          Mercury              PHX
## 1343           11        Phoenix          Mercury              PHX
## 1344           11        Phoenix          Mercury              PHX
## 1345           11        Phoenix          Mercury              PHX
## 1346           11        Phoenix          Mercury              PHX
## 1347           11        Phoenix          Mercury              PHX
## 1348           11        Phoenix          Mercury              PHX
## 1349           11        Phoenix          Mercury              PHX
## 1350           11        Phoenix          Mercury              PHX
## 1351           11        Phoenix          Mercury              PHX
## 1352           11        Phoenix          Mercury              PHX
## 1353           11        Phoenix          Mercury              PHX
## 1354           11        Phoenix          Mercury              PHX
## 1355           11        Phoenix          Mercury              PHX
## 1356           11        Phoenix          Mercury              PHX
## 1357           11        Phoenix          Mercury              PHX
## 1358           11        Phoenix          Mercury              PHX
## 1359           11        Phoenix          Mercury              PHX
## 1360           11        Phoenix          Mercury              PHX
## 1361           11        Phoenix          Mercury              PHX
## 1362           11        Phoenix          Mercury              PHX
## 1363           11        Phoenix          Mercury              PHX
## 1364           11        Phoenix          Mercury              PHX
## 1365           11        Phoenix          Mercury              PHX
## 1366           11        Phoenix          Mercury              PHX
## 1367           11        Phoenix          Mercury              PHX
## 1368           11        Phoenix          Mercury              PHX
## 1369           11        Phoenix          Mercury              PHX
## 1370           11        Phoenix          Mercury              PHX
## 1371           11        Phoenix          Mercury              PHX
## 1372           11        Phoenix          Mercury              PHX
## 1373           11        Phoenix          Mercury              PHX
## 1374           11        Phoenix          Mercury              PHX
## 1375           11        Phoenix          Mercury              PHX
## 1376           11        Phoenix          Mercury              PHX
## 1377           11        Phoenix          Mercury              PHX
## 1378           11        Phoenix          Mercury              PHX
## 1379           11        Phoenix          Mercury              PHX
## 1380           11        Phoenix          Mercury              PHX
## 1381           11        Phoenix          Mercury              PHX
## 1382           11        Phoenix          Mercury              PHX
## 1383           11        Phoenix          Mercury              PHX
## 1384           11        Phoenix          Mercury              PHX
## 1385           11        Phoenix          Mercury              PHX
## 1386           11        Phoenix          Mercury              PHX
## 1387           11        Phoenix          Mercury              PHX
## 1388           11        Phoenix          Mercury              PHX
## 1389           11        Phoenix          Mercury              PHX
## 1390           11        Phoenix          Mercury              PHX
## 1391           11        Phoenix          Mercury              PHX
## 1392           11        Phoenix          Mercury              PHX
## 1393           11        Phoenix          Mercury              PHX
## 1394           11        Phoenix          Mercury              PHX
## 1395           11        Phoenix          Mercury              PHX
## 1396           11        Phoenix          Mercury              PHX
## 1397           11        Phoenix          Mercury              PHX
## 1398           11        Phoenix          Mercury              PHX
## 1399           11        Phoenix          Mercury              PHX
## 1400           11        Phoenix          Mercury              PHX
## 1401           11        Phoenix          Mercury              PHX
## 1402           11        Phoenix          Mercury              PHX
## 1403           11        Phoenix          Mercury              PHX
## 1404           11        Phoenix          Mercury              PHX
## 1405           11        Phoenix          Mercury              PHX
## 1406           11        Phoenix          Mercury              PHX
## 1407           11        Phoenix          Mercury              PHX
## 1408           11        Phoenix          Mercury              PHX
## 1409           11        Phoenix          Mercury              PHX
## 1410           11        Phoenix          Mercury              PHX
## 1411           11        Phoenix          Mercury              PHX
## 1412           11        Phoenix          Mercury              PHX
## 1413           11        Phoenix          Mercury              PHX
## 1414            8      Minnesota             Lynx              MIN
## 1415            8      Minnesota             Lynx              MIN
## 1416            8      Minnesota             Lynx              MIN
## 1417            8      Minnesota             Lynx              MIN
## 1418            8      Minnesota             Lynx              MIN
## 1419            8      Minnesota             Lynx              MIN
## 1420            8      Minnesota             Lynx              MIN
## 1421            8      Minnesota             Lynx              MIN
## 1422            8      Minnesota             Lynx              MIN
## 1423            8      Minnesota             Lynx              MIN
## 1424            8      Minnesota             Lynx              MIN
## 1425            8      Minnesota             Lynx              MIN
## 1426            8      Minnesota             Lynx              MIN
## 1427            8      Minnesota             Lynx              MIN
## 1428            8      Minnesota             Lynx              MIN
## 1429            8      Minnesota             Lynx              MIN
## 1430            8      Minnesota             Lynx              MIN
## 1431            8      Minnesota             Lynx              MIN
## 1432            8      Minnesota             Lynx              MIN
## 1433            8      Minnesota             Lynx              MIN
## 1434            8      Minnesota             Lynx              MIN
## 1435            8      Minnesota             Lynx              MIN
## 1436            8      Minnesota             Lynx              MIN
## 1437            8      Minnesota             Lynx              MIN
## 1438            8      Minnesota             Lynx              MIN
## 1439            8      Minnesota             Lynx              MIN
## 1440            8      Minnesota             Lynx              MIN
## 1441            8      Minnesota             Lynx              MIN
## 1442            8      Minnesota             Lynx              MIN
## 1443            8      Minnesota             Lynx              MIN
## 1444            8      Minnesota             Lynx              MIN
## 1445            8      Minnesota             Lynx              MIN
## 1446            8      Minnesota             Lynx              MIN
## 1447            8      Minnesota             Lynx              MIN
## 1448            8      Minnesota             Lynx              MIN
## 1449            8      Minnesota             Lynx              MIN
## 1450            8      Minnesota             Lynx              MIN
## 1451            8      Minnesota             Lynx              MIN
## 1452            8      Minnesota             Lynx              MIN
## 1453            8      Minnesota             Lynx              MIN
## 1454            8      Minnesota             Lynx              MIN
## 1455            8      Minnesota             Lynx              MIN
## 1456            8      Minnesota             Lynx              MIN
## 1457            8      Minnesota             Lynx              MIN
## 1458            8      Minnesota             Lynx              MIN
## 1459            8      Minnesota             Lynx              MIN
## 1460            8      Minnesota             Lynx              MIN
## 1461            8      Minnesota             Lynx              MIN
## 1462            8      Minnesota             Lynx              MIN
## 1463            8      Minnesota             Lynx              MIN
## 1464            8      Minnesota             Lynx              MIN
## 1465            8      Minnesota             Lynx              MIN
## 1466            8      Minnesota             Lynx              MIN
## 1467            8      Minnesota             Lynx              MIN
## 1468            8      Minnesota             Lynx              MIN
## 1469            8      Minnesota             Lynx              MIN
## 1470            8      Minnesota             Lynx              MIN
## 1471            8      Minnesota             Lynx              MIN
## 1472            8      Minnesota             Lynx              MIN
## 1473            8      Minnesota             Lynx              MIN
## 1474            8      Minnesota             Lynx              MIN
## 1475            8      Minnesota             Lynx              MIN
## 1476            8      Minnesota             Lynx              MIN
## 1477            8      Minnesota             Lynx              MIN
## 1478            8      Minnesota             Lynx              MIN
## 1479            8      Minnesota             Lynx              MIN
## 1480            8      Minnesota             Lynx              MIN
## 1481            8      Minnesota             Lynx              MIN
## 1482            8      Minnesota             Lynx              MIN
## 1483            8      Minnesota             Lynx              MIN
## 1484            8      Minnesota             Lynx              MIN
## 1485            8      Minnesota             Lynx              MIN
## 1486            8      Minnesota             Lynx              MIN
## 1487            8      Minnesota             Lynx              MIN
## 1488            8      Minnesota             Lynx              MIN
## 1489            8      Minnesota             Lynx              MIN
## 1490            8      Minnesota             Lynx              MIN
## 1491            8      Minnesota             Lynx              MIN
## 1492            8      Minnesota             Lynx              MIN
## 1493            8      Minnesota             Lynx              MIN
## 1494            8      Minnesota             Lynx              MIN
## 1495            8      Minnesota             Lynx              MIN
## 1496            8      Minnesota             Lynx              MIN
## 1497            8      Minnesota             Lynx              MIN
## 1498            8      Minnesota             Lynx              MIN
## 1499            8      Minnesota             Lynx              MIN
## 1500            8      Minnesota             Lynx              MIN
## 1501            8      Minnesota             Lynx              MIN
## 1502            8      Minnesota             Lynx              MIN
## 1503            8      Minnesota             Lynx              MIN
## 1504            8      Minnesota             Lynx              MIN
## 1505            8      Minnesota             Lynx              MIN
## 1506            8      Minnesota             Lynx              MIN
## 1507            8      Minnesota             Lynx              MIN
## 1508            8      Minnesota             Lynx              MIN
## 1509            8      Minnesota             Lynx              MIN
## 1510            8      Minnesota             Lynx              MIN
## 1511            8      Minnesota             Lynx              MIN
## 1512            8      Minnesota             Lynx              MIN
## 1513            8      Minnesota             Lynx              MIN
## 1514            8      Minnesota             Lynx              MIN
## 1515            8      Minnesota             Lynx              MIN
## 1516            8      Minnesota             Lynx              MIN
## 1517            8      Minnesota             Lynx              MIN
## 1518            8      Minnesota             Lynx              MIN
## 1519            8      Minnesota             Lynx              MIN
## 1520            8      Minnesota             Lynx              MIN
## 1521            8      Minnesota             Lynx              MIN
## 1522            8      Minnesota             Lynx              MIN
## 1523            8      Minnesota             Lynx              MIN
## 1524            8      Minnesota             Lynx              MIN
## 1525            8      Minnesota             Lynx              MIN
## 1526            8      Minnesota             Lynx              MIN
## 1527            8      Minnesota             Lynx              MIN
## 1528            8      Minnesota             Lynx              MIN
## 1529            8      Minnesota             Lynx              MIN
## 1530            8      Minnesota             Lynx              MIN
## 1531            8      Minnesota             Lynx              MIN
## 1532            8      Minnesota             Lynx              MIN
## 1533            8      Minnesota             Lynx              MIN
## 1534            8      Minnesota             Lynx              MIN
## 1535            8      Minnesota             Lynx              MIN
## 1536            8      Minnesota             Lynx              MIN
## 1537            8      Minnesota             Lynx              MIN
## 1538            8      Minnesota             Lynx              MIN
## 1539            8      Minnesota             Lynx              MIN
## 1540            8      Minnesota             Lynx              MIN
## 1541            8      Minnesota             Lynx              MIN
## 1542            8      Minnesota             Lynx              MIN
## 1543            8      Minnesota             Lynx              MIN
## 1544            8      Minnesota             Lynx              MIN
## 1545            8      Minnesota             Lynx              MIN
## 1546            8      Minnesota             Lynx              MIN
## 1547            8      Minnesota             Lynx              MIN
## 1548            8      Minnesota             Lynx              MIN
## 1549            8      Minnesota             Lynx              MIN
## 1550            8      Minnesota             Lynx              MIN
## 1551            8      Minnesota             Lynx              MIN
## 1552            8      Minnesota             Lynx              MIN
## 1553            8      Minnesota             Lynx              MIN
## 1554            8      Minnesota             Lynx              MIN
## 1555            8      Minnesota             Lynx              MIN
## 1556            8      Minnesota             Lynx              MIN
## 1557            8      Minnesota             Lynx              MIN
## 1558            8      Minnesota             Lynx              MIN
## 1559            8      Minnesota             Lynx              MIN
## 1560            8      Minnesota             Lynx              MIN
## 1561            8      Minnesota             Lynx              MIN
## 1562            8      Minnesota             Lynx              MIN
## 1563            8      Minnesota             Lynx              MIN
## 1564            8      Minnesota             Lynx              MIN
## 1565            8      Minnesota             Lynx              MIN
## 1566            8      Minnesota             Lynx              MIN
## 1567            8      Minnesota             Lynx              MIN
## 1568            8      Minnesota             Lynx              MIN
## 1569            8      Minnesota             Lynx              MIN
## 1570            8      Minnesota             Lynx              MIN
## 1571            8      Minnesota             Lynx              MIN
## 1572            8      Minnesota             Lynx              MIN
## 1573            8      Minnesota             Lynx              MIN
## 1574            8      Minnesota             Lynx              MIN
## 1575            8      Minnesota             Lynx              MIN
## 1576            8      Minnesota             Lynx              MIN
## 1577            8      Minnesota             Lynx              MIN
## 1578            8      Minnesota             Lynx              MIN
## 1579            8      Minnesota             Lynx              MIN
## 1580            8      Minnesota             Lynx              MIN
## 1581            8      Minnesota             Lynx              MIN
## 1582            8      Minnesota             Lynx              MIN
## 1583            8      Minnesota             Lynx              MIN
## 1584            8      Minnesota             Lynx              MIN
## 1585            8      Minnesota             Lynx              MIN
## 1586            8      Minnesota             Lynx              MIN
## 1587            8      Minnesota             Lynx              MIN
## 1588            8      Minnesota             Lynx              MIN
## 1589            8      Minnesota             Lynx              MIN
## 1590            8      Minnesota             Lynx              MIN
## 1591           11        Phoenix          Mercury              PHX
## 1592           11        Phoenix          Mercury              PHX
## 1593           11        Phoenix          Mercury              PHX
## 1594           11        Phoenix          Mercury              PHX
## 1595           11        Phoenix          Mercury              PHX
## 1596           11        Phoenix          Mercury              PHX
## 1597           11        Phoenix          Mercury              PHX
## 1598           11        Phoenix          Mercury              PHX
## 1599           11        Phoenix          Mercury              PHX
## 1600           11        Phoenix          Mercury              PHX
## 1601           11        Phoenix          Mercury              PHX
## 1602           11        Phoenix          Mercury              PHX
## 1603           11        Phoenix          Mercury              PHX
## 1604           11        Phoenix          Mercury              PHX
## 1605           11        Phoenix          Mercury              PHX
## 1606           11        Phoenix          Mercury              PHX
## 1607           11        Phoenix          Mercury              PHX
## 1608           11        Phoenix          Mercury              PHX
## 1609           11        Phoenix          Mercury              PHX
## 1610           11        Phoenix          Mercury              PHX
## 1611           11        Phoenix          Mercury              PHX
## 1612           11        Phoenix          Mercury              PHX
## 1613           11        Phoenix          Mercury              PHX
## 1614           11        Phoenix          Mercury              PHX
## 1615           11        Phoenix          Mercury              PHX
## 1616           11        Phoenix          Mercury              PHX
## 1617           11        Phoenix          Mercury              PHX
## 1618           11        Phoenix          Mercury              PHX
## 1619           11        Phoenix          Mercury              PHX
## 1620           11        Phoenix          Mercury              PHX
## 1621           11        Phoenix          Mercury              PHX
## 1622           11        Phoenix          Mercury              PHX
## 1623           11        Phoenix          Mercury              PHX
## 1624           11        Phoenix          Mercury              PHX
## 1625           11        Phoenix          Mercury              PHX
## 1626           11        Phoenix          Mercury              PHX
## 1627           11        Phoenix          Mercury              PHX
## 1628           11        Phoenix          Mercury              PHX
## 1629           11        Phoenix          Mercury              PHX
## 1630           11        Phoenix          Mercury              PHX
## 1631           11        Phoenix          Mercury              PHX
## 1632           11        Phoenix          Mercury              PHX
## 1633           11        Phoenix          Mercury              PHX
## 1634           11        Phoenix          Mercury              PHX
## 1635           11        Phoenix          Mercury              PHX
## 1636           11        Phoenix          Mercury              PHX
## 1637           11        Phoenix          Mercury              PHX
## 1638           11        Phoenix          Mercury              PHX
## 1639           11        Phoenix          Mercury              PHX
## 1640           11        Phoenix          Mercury              PHX
## 1641           11        Phoenix          Mercury              PHX
## 1642           11        Phoenix          Mercury              PHX
## 1643           11        Phoenix          Mercury              PHX
## 1644           11        Phoenix          Mercury              PHX
## 1645           11        Phoenix          Mercury              PHX
## 1646           11        Phoenix          Mercury              PHX
## 1647           11        Phoenix          Mercury              PHX
## 1648           11        Phoenix          Mercury              PHX
## 1649           11        Phoenix          Mercury              PHX
## 1650           11        Phoenix          Mercury              PHX
## 1651           11        Phoenix          Mercury              PHX
## 1652           11        Phoenix          Mercury              PHX
## 1653           11        Phoenix          Mercury              PHX
## 1654           11        Phoenix          Mercury              PHX
## 1655           11        Phoenix          Mercury              PHX
## 1656           11        Phoenix          Mercury              PHX
## 1657           11        Phoenix          Mercury              PHX
## 1658           11        Phoenix          Mercury              PHX
## 1659           11        Phoenix          Mercury              PHX
## 1660           11        Phoenix          Mercury              PHX
## 1661           11        Phoenix          Mercury              PHX
## 1662           11        Phoenix          Mercury              PHX
## 1663           11        Phoenix          Mercury              PHX
## 1664           11        Phoenix          Mercury              PHX
## 1665           11        Phoenix          Mercury              PHX
## 1666           11        Phoenix          Mercury              PHX
## 1667           11        Phoenix          Mercury              PHX
## 1668           11        Phoenix          Mercury              PHX
## 1669           11        Phoenix          Mercury              PHX
## 1670           11        Phoenix          Mercury              PHX
## 1671           11        Phoenix          Mercury              PHX
## 1672           11        Phoenix          Mercury              PHX
## 1673           11        Phoenix          Mercury              PHX
## 1674           11        Phoenix          Mercury              PHX
## 1675           11        Phoenix          Mercury              PHX
## 1676           11        Phoenix          Mercury              PHX
## 1677           11        Phoenix          Mercury              PHX
## 1678           11        Phoenix          Mercury              PHX
## 1679           11        Phoenix          Mercury              PHX
## 1680           11        Phoenix          Mercury              PHX
## 1681           11        Phoenix          Mercury              PHX
## 1682           11        Phoenix          Mercury              PHX
## 1683           11        Phoenix          Mercury              PHX
## 1684           11        Phoenix          Mercury              PHX
## 1685           11        Phoenix          Mercury              PHX
## 1686           11        Phoenix          Mercury              PHX
## 1687           11        Phoenix          Mercury              PHX
## 1688           11        Phoenix          Mercury              PHX
## 1689           11        Phoenix          Mercury              PHX
## 1690           11        Phoenix          Mercury              PHX
## 1691           11        Phoenix          Mercury              PHX
## 1692           11        Phoenix          Mercury              PHX
## 1693           11        Phoenix          Mercury              PHX
## 1694           11        Phoenix          Mercury              PHX
## 1695           11        Phoenix          Mercury              PHX
## 1696           11        Phoenix          Mercury              PHX
## 1697           11        Phoenix          Mercury              PHX
## 1698           11        Phoenix          Mercury              PHX
## 1699           11        Phoenix          Mercury              PHX
## 1700           11        Phoenix          Mercury              PHX
## 1701           11        Phoenix          Mercury              PHX
## 1702           11        Phoenix          Mercury              PHX
## 1703           11        Phoenix          Mercury              PHX
## 1704           11        Phoenix          Mercury              PHX
## 1705           11        Phoenix          Mercury              PHX
## 1706           11        Phoenix          Mercury              PHX
## 1707           11        Phoenix          Mercury              PHX
## 1708           11        Phoenix          Mercury              PHX
## 1709           11        Phoenix          Mercury              PHX
## 1710           11        Phoenix          Mercury              PHX
## 1711           11        Phoenix          Mercury              PHX
## 1712           11        Phoenix          Mercury              PHX
## 1713           11        Phoenix          Mercury              PHX
## 1714           11        Phoenix          Mercury              PHX
## 1715           11        Phoenix          Mercury              PHX
## 1716           11        Phoenix          Mercury              PHX
## 1717           11        Phoenix          Mercury              PHX
## 1718           11        Phoenix          Mercury              PHX
## 1719           11        Phoenix          Mercury              PHX
## 1720           11        Phoenix          Mercury              PHX
## 1721           11        Phoenix          Mercury              PHX
## 1722           11        Phoenix          Mercury              PHX
## 1723           11        Phoenix          Mercury              PHX
## 1724           11        Phoenix          Mercury              PHX
## 1725           11        Phoenix          Mercury              PHX
## 1726           11        Phoenix          Mercury              PHX
## 1727           11        Phoenix          Mercury              PHX
## 1728           11        Phoenix          Mercury              PHX
## 1729           11        Phoenix          Mercury              PHX
## 1730           11        Phoenix          Mercury              PHX
## 1731           11        Phoenix          Mercury              PHX
## 1732           11        Phoenix          Mercury              PHX
## 1733           11        Phoenix          Mercury              PHX
## 1734           11        Phoenix          Mercury              PHX
## 1735           11        Phoenix          Mercury              PHX
## 1736           11        Phoenix          Mercury              PHX
## 1737           11        Phoenix          Mercury              PHX
## 1738           11        Phoenix          Mercury              PHX
## 1739           11        Phoenix          Mercury              PHX
## 1740           11        Phoenix          Mercury              PHX
## 1741           11        Phoenix          Mercury              PHX
## 1742           11        Phoenix          Mercury              PHX
## 1743           11        Phoenix          Mercury              PHX
## 1744           11        Phoenix          Mercury              PHX
## 1745           11        Phoenix          Mercury              PHX
## 1746           11        Phoenix          Mercury              PHX
## 1747           11        Phoenix          Mercury              PHX
## 1748           11        Phoenix          Mercury              PHX
## 1749           11        Phoenix          Mercury              PHX
## 1750           11        Phoenix          Mercury              PHX
## 1751           11        Phoenix          Mercury              PHX
## 1752           11        Phoenix          Mercury              PHX
## 1753           11        Phoenix          Mercury              PHX
## 1754           11        Phoenix          Mercury              PHX
## 1755           11        Phoenix          Mercury              PHX
## 1756           11        Phoenix          Mercury              PHX
## 1757           11        Phoenix          Mercury              PHX
## 1758           11        Phoenix          Mercury              PHX
## 1759           11        Phoenix          Mercury              PHX
## 1760           11        Phoenix          Mercury              PHX
## 1761           11        Phoenix          Mercury              PHX
## 1762           11        Phoenix          Mercury              PHX
## 1763           11        Phoenix          Mercury              PHX
## 1764           11        Phoenix          Mercury              PHX
## 1765           11        Phoenix          Mercury              PHX
## 1766           11        Phoenix          Mercury              PHX
## 1767           11        Phoenix          Mercury              PHX
## 1768           11        Phoenix          Mercury              PHX
## 1769           11        Phoenix          Mercury              PHX
## 1770           11        Phoenix          Mercury              PHX
## 1771           11        Phoenix          Mercury              PHX
## 1772           11        Phoenix          Mercury              PHX
## 1773           11        Phoenix          Mercury              PHX
## 1774           11        Phoenix          Mercury              PHX
## 1775           11        Phoenix          Mercury              PHX
## 1776           11        Phoenix          Mercury              PHX
## 1777           11        Phoenix          Mercury              PHX
## 1778           17      Las Vegas             Aces               LV
## 1779           17      Las Vegas             Aces               LV
## 1780           17      Las Vegas             Aces               LV
## 1781           17      Las Vegas             Aces               LV
## 1782           17      Las Vegas             Aces               LV
## 1783           17      Las Vegas             Aces               LV
## 1784           17      Las Vegas             Aces               LV
## 1785           17      Las Vegas             Aces               LV
## 1786           17      Las Vegas             Aces               LV
## 1787           17      Las Vegas             Aces               LV
## 1788           17      Las Vegas             Aces               LV
## 1789           17      Las Vegas             Aces               LV
## 1790           17      Las Vegas             Aces               LV
## 1791           17      Las Vegas             Aces               LV
## 1792           17      Las Vegas             Aces               LV
## 1793           17      Las Vegas             Aces               LV
## 1794           17      Las Vegas             Aces               LV
## 1795           17      Las Vegas             Aces               LV
## 1796           17      Las Vegas             Aces               LV
## 1797           17      Las Vegas             Aces               LV
## 1798           17      Las Vegas             Aces               LV
## 1799           17      Las Vegas             Aces               LV
## 1800           17      Las Vegas             Aces               LV
## 1801           17      Las Vegas             Aces               LV
## 1802           17      Las Vegas             Aces               LV
## 1803           17      Las Vegas             Aces               LV
## 1804           17      Las Vegas             Aces               LV
## 1805           17      Las Vegas             Aces               LV
## 1806           17      Las Vegas             Aces               LV
## 1807           17      Las Vegas             Aces               LV
## 1808           17      Las Vegas             Aces               LV
## 1809           17      Las Vegas             Aces               LV
## 1810           17      Las Vegas             Aces               LV
## 1811           17      Las Vegas             Aces               LV
## 1812           17      Las Vegas             Aces               LV
## 1813           17      Las Vegas             Aces               LV
## 1814           17      Las Vegas             Aces               LV
## 1815           17      Las Vegas             Aces               LV
## 1816           17      Las Vegas             Aces               LV
## 1817           17      Las Vegas             Aces               LV
## 1818           17      Las Vegas             Aces               LV
## 1819           17      Las Vegas             Aces               LV
## 1820           17      Las Vegas             Aces               LV
## 1821           17      Las Vegas             Aces               LV
## 1822           17      Las Vegas             Aces               LV
## 1823           17      Las Vegas             Aces               LV
## 1824           17      Las Vegas             Aces               LV
## 1825           17      Las Vegas             Aces               LV
## 1826           17      Las Vegas             Aces               LV
## 1827           17      Las Vegas             Aces               LV
## 1828           17      Las Vegas             Aces               LV
## 1829           17      Las Vegas             Aces               LV
## 1830           17      Las Vegas             Aces               LV
## 1831           17      Las Vegas             Aces               LV
## 1832           17      Las Vegas             Aces               LV
## 1833           17      Las Vegas             Aces               LV
## 1834           17      Las Vegas             Aces               LV
## 1835           17      Las Vegas             Aces               LV
## 1836           17      Las Vegas             Aces               LV
## 1837           17      Las Vegas             Aces               LV
## 1838           17      Las Vegas             Aces               LV
## 1839           17      Las Vegas             Aces               LV
## 1840           17      Las Vegas             Aces               LV
## 1841           17      Las Vegas             Aces               LV
## 1842           17      Las Vegas             Aces               LV
## 1843           17      Las Vegas             Aces               LV
## 1844           17      Las Vegas             Aces               LV
## 1845           17      Las Vegas             Aces               LV
## 1846           17      Las Vegas             Aces               LV
## 1847           17      Las Vegas             Aces               LV
## 1848           17      Las Vegas             Aces               LV
## 1849           17      Las Vegas             Aces               LV
## 1850           17      Las Vegas             Aces               LV
## 1851           17      Las Vegas             Aces               LV
## 1852           17      Las Vegas             Aces               LV
## 1853           17      Las Vegas             Aces               LV
## 1854           17      Las Vegas             Aces               LV
## 1855           17      Las Vegas             Aces               LV
## 1856           17      Las Vegas             Aces               LV
## 1857           17      Las Vegas             Aces               LV
## 1858           17      Las Vegas             Aces               LV
## 1859           17      Las Vegas             Aces               LV
## 1860           17      Las Vegas             Aces               LV
## 1861           17      Las Vegas             Aces               LV
## 1862           17      Las Vegas             Aces               LV
## 1863           17      Las Vegas             Aces               LV
## 1864           17      Las Vegas             Aces               LV
## 1865           17      Las Vegas             Aces               LV
## 1866           17      Las Vegas             Aces               LV
## 1867           17      Las Vegas             Aces               LV
## 1868           17      Las Vegas             Aces               LV
## 1869           17      Las Vegas             Aces               LV
## 1870           17      Las Vegas             Aces               LV
## 1871           17      Las Vegas             Aces               LV
## 1872           17      Las Vegas             Aces               LV
## 1873           17      Las Vegas             Aces               LV
## 1874           17      Las Vegas             Aces               LV
## 1875           17      Las Vegas             Aces               LV
## 1876           17      Las Vegas             Aces               LV
## 1877           17      Las Vegas             Aces               LV
## 1878           17      Las Vegas             Aces               LV
## 1879           17      Las Vegas             Aces               LV
## 1880           17      Las Vegas             Aces               LV
## 1881           17      Las Vegas             Aces               LV
## 1882           17      Las Vegas             Aces               LV
## 1883           17      Las Vegas             Aces               LV
## 1884           17      Las Vegas             Aces               LV
## 1885           17      Las Vegas             Aces               LV
## 1886           17      Las Vegas             Aces               LV
## 1887           17      Las Vegas             Aces               LV
## 1888           17      Las Vegas             Aces               LV
## 1889           17      Las Vegas             Aces               LV
## 1890           17      Las Vegas             Aces               LV
## 1891           17      Las Vegas             Aces               LV
## 1892           17      Las Vegas             Aces               LV
## 1893           17      Las Vegas             Aces               LV
## 1894           17      Las Vegas             Aces               LV
## 1895           17      Las Vegas             Aces               LV
## 1896           17      Las Vegas             Aces               LV
## 1897           17      Las Vegas             Aces               LV
## 1898           17      Las Vegas             Aces               LV
## 1899           17      Las Vegas             Aces               LV
## 1900           17      Las Vegas             Aces               LV
## 1901           17      Las Vegas             Aces               LV
## 1902           17      Las Vegas             Aces               LV
## 1903           17      Las Vegas             Aces               LV
## 1904           17      Las Vegas             Aces               LV
## 1905           17      Las Vegas             Aces               LV
## 1906           17      Las Vegas             Aces               LV
## 1907           17      Las Vegas             Aces               LV
## 1908           17      Las Vegas             Aces               LV
## 1909           17      Las Vegas             Aces               LV
## 1910           17      Las Vegas             Aces               LV
## 1911           17      Las Vegas             Aces               LV
## 1912           17      Las Vegas             Aces               LV
## 1913           17      Las Vegas             Aces               LV
## 1914           17      Las Vegas             Aces               LV
## 1915           17      Las Vegas             Aces               LV
## 1916           17      Las Vegas             Aces               LV
## 1917           17      Las Vegas             Aces               LV
## 1918           17      Las Vegas             Aces               LV
## 1919           17      Las Vegas             Aces               LV
## 1920           17      Las Vegas             Aces               LV
## 1921           17      Las Vegas             Aces               LV
## 1922           17      Las Vegas             Aces               LV
## 1923           17      Las Vegas             Aces               LV
## 1924           17      Las Vegas             Aces               LV
## 1925           17      Las Vegas             Aces               LV
## 1926           17      Las Vegas             Aces               LV
## 1927           17      Las Vegas             Aces               LV
## 1928           17      Las Vegas             Aces               LV
## 1929           17      Las Vegas             Aces               LV
## 1930           17      Las Vegas             Aces               LV
## 1931           17      Las Vegas             Aces               LV
## 1932           17      Las Vegas             Aces               LV
## 1933           17      Las Vegas             Aces               LV
## 1934           17      Las Vegas             Aces               LV
## 1935           17      Las Vegas             Aces               LV
## 1936           17      Las Vegas             Aces               LV
## 1937           17      Las Vegas             Aces               LV
## 1938           17      Las Vegas             Aces               LV
## 1939           17      Las Vegas             Aces               LV
## 1940           17      Las Vegas             Aces               LV
## 1941           17      Las Vegas             Aces               LV
## 1942           17      Las Vegas             Aces               LV
## 1943           17      Las Vegas             Aces               LV
## 1944           17      Las Vegas             Aces               LV
## 1945           17      Las Vegas             Aces               LV
## 1946           17      Las Vegas             Aces               LV
## 1947           17      Las Vegas             Aces               LV
## 1948           17      Las Vegas             Aces               LV
## 1949           17      Las Vegas             Aces               LV
## 1950           17      Las Vegas             Aces               LV
## 1951           17      Las Vegas             Aces               LV
## 1952           17      Las Vegas             Aces               LV
## 1953           19        Chicago              Sky              CHI
## 1954           19        Chicago              Sky              CHI
## 1955           19        Chicago              Sky              CHI
## 1956           19        Chicago              Sky              CHI
## 1957           19        Chicago              Sky              CHI
## 1958           19        Chicago              Sky              CHI
## 1959           19        Chicago              Sky              CHI
## 1960           19        Chicago              Sky              CHI
## 1961           19        Chicago              Sky              CHI
## 1962           19        Chicago              Sky              CHI
## 1963           19        Chicago              Sky              CHI
## 1964           19        Chicago              Sky              CHI
## 1965           19        Chicago              Sky              CHI
## 1966           19        Chicago              Sky              CHI
## 1967           19        Chicago              Sky              CHI
## 1968           19        Chicago              Sky              CHI
## 1969           19        Chicago              Sky              CHI
## 1970           19        Chicago              Sky              CHI
## 1971           19        Chicago              Sky              CHI
## 1972           19        Chicago              Sky              CHI
## 1973           19        Chicago              Sky              CHI
## 1974           19        Chicago              Sky              CHI
## 1975           19        Chicago              Sky              CHI
## 1976           19        Chicago              Sky              CHI
## 1977           19        Chicago              Sky              CHI
## 1978           19        Chicago              Sky              CHI
## 1979           19        Chicago              Sky              CHI
## 1980           19        Chicago              Sky              CHI
## 1981           19        Chicago              Sky              CHI
## 1982           19        Chicago              Sky              CHI
## 1983           19        Chicago              Sky              CHI
## 1984           19        Chicago              Sky              CHI
## 1985           19        Chicago              Sky              CHI
## 1986           19        Chicago              Sky              CHI
## 1987           19        Chicago              Sky              CHI
## 1988           19        Chicago              Sky              CHI
## 1989           19        Chicago              Sky              CHI
## 1990           19        Chicago              Sky              CHI
## 1991           19        Chicago              Sky              CHI
## 1992           19        Chicago              Sky              CHI
## 1993           19        Chicago              Sky              CHI
## 1994           19        Chicago              Sky              CHI
## 1995           19        Chicago              Sky              CHI
## 1996           19        Chicago              Sky              CHI
## 1997           19        Chicago              Sky              CHI
## 1998           19        Chicago              Sky              CHI
## 1999           19        Chicago              Sky              CHI
## 2000           19        Chicago              Sky              CHI
## 2001           19        Chicago              Sky              CHI
## 2002           19        Chicago              Sky              CHI
## 2003           19        Chicago              Sky              CHI
## 2004           19        Chicago              Sky              CHI
## 2005           19        Chicago              Sky              CHI
## 2006           19        Chicago              Sky              CHI
## 2007           19        Chicago              Sky              CHI
## 2008           19        Chicago              Sky              CHI
## 2009           19        Chicago              Sky              CHI
## 2010           19        Chicago              Sky              CHI
## 2011           19        Chicago              Sky              CHI
## 2012           19        Chicago              Sky              CHI
## 2013           19        Chicago              Sky              CHI
## 2014           19        Chicago              Sky              CHI
## 2015           19        Chicago              Sky              CHI
## 2016           19        Chicago              Sky              CHI
## 2017           19        Chicago              Sky              CHI
## 2018           19        Chicago              Sky              CHI
## 2019           19        Chicago              Sky              CHI
## 2020           19        Chicago              Sky              CHI
## 2021           19        Chicago              Sky              CHI
## 2022           19        Chicago              Sky              CHI
## 2023           19        Chicago              Sky              CHI
## 2024           19        Chicago              Sky              CHI
## 2025           19        Chicago              Sky              CHI
## 2026           19        Chicago              Sky              CHI
## 2027           19        Chicago              Sky              CHI
## 2028           19        Chicago              Sky              CHI
## 2029           19        Chicago              Sky              CHI
## 2030           19        Chicago              Sky              CHI
## 2031           19        Chicago              Sky              CHI
## 2032           19        Chicago              Sky              CHI
## 2033           19        Chicago              Sky              CHI
## 2034           19        Chicago              Sky              CHI
## 2035           19        Chicago              Sky              CHI
## 2036           19        Chicago              Sky              CHI
## 2037           19        Chicago              Sky              CHI
## 2038           19        Chicago              Sky              CHI
## 2039           19        Chicago              Sky              CHI
## 2040           19        Chicago              Sky              CHI
## 2041           19        Chicago              Sky              CHI
## 2042           19        Chicago              Sky              CHI
## 2043           19        Chicago              Sky              CHI
## 2044           19        Chicago              Sky              CHI
## 2045           19        Chicago              Sky              CHI
## 2046           19        Chicago              Sky              CHI
## 2047           19        Chicago              Sky              CHI
## 2048           19        Chicago              Sky              CHI
## 2049           19        Chicago              Sky              CHI
## 2050           19        Chicago              Sky              CHI
## 2051           19        Chicago              Sky              CHI
## 2052           19        Chicago              Sky              CHI
## 2053           19        Chicago              Sky              CHI
## 2054           19        Chicago              Sky              CHI
## 2055           19        Chicago              Sky              CHI
## 2056           19        Chicago              Sky              CHI
## 2057           19        Chicago              Sky              CHI
## 2058           19        Chicago              Sky              CHI
## 2059           19        Chicago              Sky              CHI
## 2060           19        Chicago              Sky              CHI
## 2061           19        Chicago              Sky              CHI
## 2062           19        Chicago              Sky              CHI
## 2063           19        Chicago              Sky              CHI
## 2064           19        Chicago              Sky              CHI
## 2065           19        Chicago              Sky              CHI
## 2066           19        Chicago              Sky              CHI
## 2067           19        Chicago              Sky              CHI
## 2068           19        Chicago              Sky              CHI
## 2069           19        Chicago              Sky              CHI
## 2070           19        Chicago              Sky              CHI
## 2071           19        Chicago              Sky              CHI
## 2072           19        Chicago              Sky              CHI
## 2073           19        Chicago              Sky              CHI
## 2074           19        Chicago              Sky              CHI
## 2075           19        Chicago              Sky              CHI
## 2076           19        Chicago              Sky              CHI
## 2077           19        Chicago              Sky              CHI
## 2078           19        Chicago              Sky              CHI
## 2079           19        Chicago              Sky              CHI
## 2080           19        Chicago              Sky              CHI
## 2081           19        Chicago              Sky              CHI
## 2082           19        Chicago              Sky              CHI
## 2083           19        Chicago              Sky              CHI
## 2084           19        Chicago              Sky              CHI
## 2085           19        Chicago              Sky              CHI
## 2086           19        Chicago              Sky              CHI
## 2087           19        Chicago              Sky              CHI
## 2088           19        Chicago              Sky              CHI
## 2089           19        Chicago              Sky              CHI
## 2090           19        Chicago              Sky              CHI
## 2091           19        Chicago              Sky              CHI
## 2092           19        Chicago              Sky              CHI
## 2093           19        Chicago              Sky              CHI
## 2094           19        Chicago              Sky              CHI
## 2095           19        Chicago              Sky              CHI
## 2096           19        Chicago              Sky              CHI
## 2097           19        Chicago              Sky              CHI
## 2098           19        Chicago              Sky              CHI
## 2099           19        Chicago              Sky              CHI
## 2100           19        Chicago              Sky              CHI
## 2101           19        Chicago              Sky              CHI
## 2102           19        Chicago              Sky              CHI
## 2103           19        Chicago              Sky              CHI
## 2104           19        Chicago              Sky              CHI
## 2105           19        Chicago              Sky              CHI
## 2106           19        Chicago              Sky              CHI
## 2107           19        Chicago              Sky              CHI
## 2108           19        Chicago              Sky              CHI
## 2109           19        Chicago              Sky              CHI
## 2110           19        Chicago              Sky              CHI
## 2111           19        Chicago              Sky              CHI
## 2112           19        Chicago              Sky              CHI
## 2113           19        Chicago              Sky              CHI
## 2114           19        Chicago              Sky              CHI
## 2115           19        Chicago              Sky              CHI
## 2116           19        Chicago              Sky              CHI
## 2117           19        Chicago              Sky              CHI
## 2118           19        Chicago              Sky              CHI
## 2119           19        Chicago              Sky              CHI
## 2120           19        Chicago              Sky              CHI
## 2121           19        Chicago              Sky              CHI
## 2122           19        Chicago              Sky              CHI
## 2123           19        Chicago              Sky              CHI
## 2124           19        Chicago              Sky              CHI
## 2125           19        Chicago              Sky              CHI
## 2126           19        Chicago              Sky              CHI
## 2127           19        Chicago              Sky              CHI
## 2128           19        Chicago              Sky              CHI
## 2129           19        Chicago              Sky              CHI
## 2130           19        Chicago              Sky              CHI
## 2131           19        Chicago              Sky              CHI
## 2132           19        Chicago              Sky              CHI
## 2133           19        Chicago              Sky              CHI
## 2134           19        Chicago              Sky              CHI
## 2135           19        Chicago              Sky              CHI
## 2136           19        Chicago              Sky              CHI
## 2137           19        Chicago              Sky              CHI
## 2138           19        Chicago              Sky              CHI
## 2139           19        Chicago              Sky              CHI
## 2140           19        Chicago              Sky              CHI
## 2141           19        Chicago              Sky              CHI
## 2142           19        Chicago              Sky              CHI
## 2143           19        Chicago              Sky              CHI
## 2144           19        Chicago              Sky              CHI
## 2145           19        Chicago              Sky              CHI
## 2146           19        Chicago              Sky              CHI
## 2147           19        Chicago              Sky              CHI
## 2148           19        Chicago              Sky              CHI
## 2149           19        Chicago              Sky              CHI
## 2150           19        Chicago              Sky              CHI
## 2151           19        Chicago              Sky              CHI
## 2152           19        Chicago              Sky              CHI
## 2153           19        Chicago              Sky              CHI
## 2154           19        Chicago              Sky              CHI
## 2155           19        Chicago              Sky              CHI
## 2156           19        Chicago              Sky              CHI
## 2157           19        Chicago              Sky              CHI
## 2158           19        Chicago              Sky              CHI
## 2159           19        Chicago              Sky              CHI
## 2160            5        Indiana            Fever              IND
## 2161            5        Indiana            Fever              IND
## 2162            5        Indiana            Fever              IND
## 2163            5        Indiana            Fever              IND
## 2164            5        Indiana            Fever              IND
## 2165            5        Indiana            Fever              IND
## 2166            5        Indiana            Fever              IND
## 2167            5        Indiana            Fever              IND
## 2168            5        Indiana            Fever              IND
## 2169            5        Indiana            Fever              IND
## 2170            5        Indiana            Fever              IND
## 2171            5        Indiana            Fever              IND
## 2172            5        Indiana            Fever              IND
## 2173            5        Indiana            Fever              IND
## 2174            5        Indiana            Fever              IND
## 2175            5        Indiana            Fever              IND
## 2176            5        Indiana            Fever              IND
## 2177            5        Indiana            Fever              IND
## 2178            5        Indiana            Fever              IND
## 2179            5        Indiana            Fever              IND
## 2180            5        Indiana            Fever              IND
## 2181            5        Indiana            Fever              IND
## 2182            5        Indiana            Fever              IND
## 2183            5        Indiana            Fever              IND
## 2184            5        Indiana            Fever              IND
## 2185            5        Indiana            Fever              IND
## 2186            5        Indiana            Fever              IND
## 2187            5        Indiana            Fever              IND
## 2188            5        Indiana            Fever              IND
## 2189            5        Indiana            Fever              IND
## 2190            5        Indiana            Fever              IND
## 2191            5        Indiana            Fever              IND
## 2192            5        Indiana            Fever              IND
## 2193            5        Indiana            Fever              IND
## 2194            5        Indiana            Fever              IND
## 2195            5        Indiana            Fever              IND
## 2196            5        Indiana            Fever              IND
## 2197            5        Indiana            Fever              IND
## 2198            5        Indiana            Fever              IND
## 2199            5        Indiana            Fever              IND
## 2200            5        Indiana            Fever              IND
## 2201            5        Indiana            Fever              IND
## 2202            5        Indiana            Fever              IND
## 2203            5        Indiana            Fever              IND
## 2204            5        Indiana            Fever              IND
## 2205            5        Indiana            Fever              IND
## 2206            5        Indiana            Fever              IND
## 2207            5        Indiana            Fever              IND
## 2208            5        Indiana            Fever              IND
## 2209            5        Indiana            Fever              IND
## 2210            5        Indiana            Fever              IND
## 2211            5        Indiana            Fever              IND
## 2212            5        Indiana            Fever              IND
## 2213            5        Indiana            Fever              IND
## 2214            5        Indiana            Fever              IND
## 2215            5        Indiana            Fever              IND
## 2216            5        Indiana            Fever              IND
## 2217            5        Indiana            Fever              IND
## 2218            5        Indiana            Fever              IND
## 2219            5        Indiana            Fever              IND
## 2220            5        Indiana            Fever              IND
## 2221            5        Indiana            Fever              IND
## 2222            5        Indiana            Fever              IND
## 2223            5        Indiana            Fever              IND
## 2224            5        Indiana            Fever              IND
## 2225            5        Indiana            Fever              IND
## 2226            5        Indiana            Fever              IND
## 2227            5        Indiana            Fever              IND
## 2228            5        Indiana            Fever              IND
## 2229            5        Indiana            Fever              IND
## 2230            5        Indiana            Fever              IND
## 2231            5        Indiana            Fever              IND
## 2232            5        Indiana            Fever              IND
## 2233            5        Indiana            Fever              IND
## 2234            5        Indiana            Fever              IND
## 2235            5        Indiana            Fever              IND
## 2236            5        Indiana            Fever              IND
## 2237            5        Indiana            Fever              IND
## 2238            5        Indiana            Fever              IND
## 2239            5        Indiana            Fever              IND
## 2240            5        Indiana            Fever              IND
## 2241            5        Indiana            Fever              IND
## 2242            5        Indiana            Fever              IND
## 2243            5        Indiana            Fever              IND
## 2244            5        Indiana            Fever              IND
## 2245            5        Indiana            Fever              IND
## 2246            5        Indiana            Fever              IND
## 2247            5        Indiana            Fever              IND
## 2248            5        Indiana            Fever              IND
## 2249            5        Indiana            Fever              IND
## 2250            5        Indiana            Fever              IND
## 2251            5        Indiana            Fever              IND
## 2252            5        Indiana            Fever              IND
## 2253            5        Indiana            Fever              IND
## 2254            5        Indiana            Fever              IND
## 2255            5        Indiana            Fever              IND
## 2256            5        Indiana            Fever              IND
## 2257            5        Indiana            Fever              IND
## 2258            5        Indiana            Fever              IND
## 2259            5        Indiana            Fever              IND
## 2260            5        Indiana            Fever              IND
## 2261            5        Indiana            Fever              IND
## 2262            5        Indiana            Fever              IND
## 2263            5        Indiana            Fever              IND
## 2264            5        Indiana            Fever              IND
## 2265            5        Indiana            Fever              IND
## 2266            5        Indiana            Fever              IND
## 2267            5        Indiana            Fever              IND
## 2268            5        Indiana            Fever              IND
## 2269            5        Indiana            Fever              IND
## 2270            5        Indiana            Fever              IND
## 2271            5        Indiana            Fever              IND
## 2272            5        Indiana            Fever              IND
## 2273            5        Indiana            Fever              IND
## 2274            5        Indiana            Fever              IND
## 2275            5        Indiana            Fever              IND
## 2276            5        Indiana            Fever              IND
## 2277            5        Indiana            Fever              IND
## 2278            5        Indiana            Fever              IND
## 2279            5        Indiana            Fever              IND
## 2280            5        Indiana            Fever              IND
## 2281            5        Indiana            Fever              IND
## 2282            5        Indiana            Fever              IND
## 2283            5        Indiana            Fever              IND
## 2284            5        Indiana            Fever              IND
## 2285            5        Indiana            Fever              IND
## 2286            5        Indiana            Fever              IND
## 2287            5        Indiana            Fever              IND
## 2288            5        Indiana            Fever              IND
## 2289            5        Indiana            Fever              IND
## 2290            5        Indiana            Fever              IND
## 2291            5        Indiana            Fever              IND
## 2292            5        Indiana            Fever              IND
## 2293            5        Indiana            Fever              IND
## 2294            5        Indiana            Fever              IND
## 2295            5        Indiana            Fever              IND
## 2296            5        Indiana            Fever              IND
## 2297            5        Indiana            Fever              IND
## 2298            5        Indiana            Fever              IND
## 2299            5        Indiana            Fever              IND
## 2300            5        Indiana            Fever              IND
## 2301            5        Indiana            Fever              IND
## 2302            5        Indiana            Fever              IND
## 2303            5        Indiana            Fever              IND
## 2304            5        Indiana            Fever              IND
## 2305            5        Indiana            Fever              IND
## 2306            5        Indiana            Fever              IND
## 2307            5        Indiana            Fever              IND
## 2308            5        Indiana            Fever              IND
## 2309            5        Indiana            Fever              IND
## 2310            5        Indiana            Fever              IND
## 2311            5        Indiana            Fever              IND
## 2312            5        Indiana            Fever              IND
## 2313            5        Indiana            Fever              IND
## 2314            5        Indiana            Fever              IND
## 2315            5        Indiana            Fever              IND
## 2316           14        Seattle            Storm              SEA
## 2317           14        Seattle            Storm              SEA
## 2318           14        Seattle            Storm              SEA
## 2319           14        Seattle            Storm              SEA
## 2320           14        Seattle            Storm              SEA
## 2321           14        Seattle            Storm              SEA
## 2322           14        Seattle            Storm              SEA
## 2323           14        Seattle            Storm              SEA
## 2324           14        Seattle            Storm              SEA
## 2325           14        Seattle            Storm              SEA
## 2326           14        Seattle            Storm              SEA
## 2327           14        Seattle            Storm              SEA
## 2328           14        Seattle            Storm              SEA
## 2329           14        Seattle            Storm              SEA
## 2330           14        Seattle            Storm              SEA
## 2331           14        Seattle            Storm              SEA
## 2332           14        Seattle            Storm              SEA
## 2333           14        Seattle            Storm              SEA
## 2334           14        Seattle            Storm              SEA
## 2335           14        Seattle            Storm              SEA
## 2336           14        Seattle            Storm              SEA
## 2337           14        Seattle            Storm              SEA
## 2338           14        Seattle            Storm              SEA
## 2339           14        Seattle            Storm              SEA
## 2340           14        Seattle            Storm              SEA
## 2341           14        Seattle            Storm              SEA
## 2342           14        Seattle            Storm              SEA
## 2343           14        Seattle            Storm              SEA
## 2344           14        Seattle            Storm              SEA
## 2345           14        Seattle            Storm              SEA
## 2346           14        Seattle            Storm              SEA
## 2347           14        Seattle            Storm              SEA
## 2348           14        Seattle            Storm              SEA
## 2349           14        Seattle            Storm              SEA
## 2350           14        Seattle            Storm              SEA
## 2351           14        Seattle            Storm              SEA
## 2352           14        Seattle            Storm              SEA
## 2353           14        Seattle            Storm              SEA
## 2354           14        Seattle            Storm              SEA
## 2355           14        Seattle            Storm              SEA
## 2356           14        Seattle            Storm              SEA
## 2357           14        Seattle            Storm              SEA
## 2358           14        Seattle            Storm              SEA
## 2359           14        Seattle            Storm              SEA
## 2360           14        Seattle            Storm              SEA
## 2361           14        Seattle            Storm              SEA
## 2362           14        Seattle            Storm              SEA
## 2363           14        Seattle            Storm              SEA
## 2364           14        Seattle            Storm              SEA
## 2365           14        Seattle            Storm              SEA
## 2366           14        Seattle            Storm              SEA
## 2367           14        Seattle            Storm              SEA
## 2368           14        Seattle            Storm              SEA
## 2369           14        Seattle            Storm              SEA
## 2370           14        Seattle            Storm              SEA
## 2371           14        Seattle            Storm              SEA
## 2372           14        Seattle            Storm              SEA
## 2373           14        Seattle            Storm              SEA
## 2374           14        Seattle            Storm              SEA
## 2375           14        Seattle            Storm              SEA
## 2376           14        Seattle            Storm              SEA
## 2377           14        Seattle            Storm              SEA
## 2378           14        Seattle            Storm              SEA
## 2379           14        Seattle            Storm              SEA
## 2380           14        Seattle            Storm              SEA
## 2381           14        Seattle            Storm              SEA
## 2382           14        Seattle            Storm              SEA
## 2383           14        Seattle            Storm              SEA
## 2384           14        Seattle            Storm              SEA
## 2385           14        Seattle            Storm              SEA
## 2386           14        Seattle            Storm              SEA
## 2387           14        Seattle            Storm              SEA
## 2388           14        Seattle            Storm              SEA
## 2389           14        Seattle            Storm              SEA
## 2390           14        Seattle            Storm              SEA
## 2391           14        Seattle            Storm              SEA
## 2392           14        Seattle            Storm              SEA
## 2393           14        Seattle            Storm              SEA
## 2394           14        Seattle            Storm              SEA
## 2395           14        Seattle            Storm              SEA
## 2396           14        Seattle            Storm              SEA
## 2397           14        Seattle            Storm              SEA
## 2398           14        Seattle            Storm              SEA
## 2399           14        Seattle            Storm              SEA
## 2400           14        Seattle            Storm              SEA
## 2401           14        Seattle            Storm              SEA
## 2402           14        Seattle            Storm              SEA
## 2403           14        Seattle            Storm              SEA
## 2404           14        Seattle            Storm              SEA
## 2405           14        Seattle            Storm              SEA
## 2406           14        Seattle            Storm              SEA
## 2407           14        Seattle            Storm              SEA
## 2408           14        Seattle            Storm              SEA
## 2409           14        Seattle            Storm              SEA
## 2410           14        Seattle            Storm              SEA
## 2411           14        Seattle            Storm              SEA
## 2412           14        Seattle            Storm              SEA
## 2413           14        Seattle            Storm              SEA
## 2414           14        Seattle            Storm              SEA
## 2415           14        Seattle            Storm              SEA
## 2416           14        Seattle            Storm              SEA
## 2417           14        Seattle            Storm              SEA
## 2418           14        Seattle            Storm              SEA
## 2419           14        Seattle            Storm              SEA
## 2420           14        Seattle            Storm              SEA
## 2421           14        Seattle            Storm              SEA
## 2422           14        Seattle            Storm              SEA
## 2423           14        Seattle            Storm              SEA
## 2424           14        Seattle            Storm              SEA
## 2425           14        Seattle            Storm              SEA
## 2426           14        Seattle            Storm              SEA
## 2427           14        Seattle            Storm              SEA
## 2428           14        Seattle            Storm              SEA
## 2429           14        Seattle            Storm              SEA
## 2430           14        Seattle            Storm              SEA
## 2431           14        Seattle            Storm              SEA
## 2432           14        Seattle            Storm              SEA
## 2433           14        Seattle            Storm              SEA
## 2434           14        Seattle            Storm              SEA
## 2435           14        Seattle            Storm              SEA
## 2436           14        Seattle            Storm              SEA
## 2437           14        Seattle            Storm              SEA
## 2438           14        Seattle            Storm              SEA
## 2439           14        Seattle            Storm              SEA
## 2440           14        Seattle            Storm              SEA
## 2441           14        Seattle            Storm              SEA
## 2442           14        Seattle            Storm              SEA
## 2443           14        Seattle            Storm              SEA
## 2444           14        Seattle            Storm              SEA
## 2445           14        Seattle            Storm              SEA
## 2446           14        Seattle            Storm              SEA
## 2447           14        Seattle            Storm              SEA
## 2448           14        Seattle            Storm              SEA
## 2449           14        Seattle            Storm              SEA
## 2450           14        Seattle            Storm              SEA
## 2451           14        Seattle            Storm              SEA
## 2452           14        Seattle            Storm              SEA
## 2453           14        Seattle            Storm              SEA
## 2454           14        Seattle            Storm              SEA
## 2455           14        Seattle            Storm              SEA
## 2456           14        Seattle            Storm              SEA
## 2457           14        Seattle            Storm              SEA
## 2458           14        Seattle            Storm              SEA
## 2459           14        Seattle            Storm              SEA
## 2460           14        Seattle            Storm              SEA
## 2461           14        Seattle            Storm              SEA
## 2462           14        Seattle            Storm              SEA
## 2463           14        Seattle            Storm              SEA
## 2464           14        Seattle            Storm              SEA
## 2465           14        Seattle            Storm              SEA
## 2466           14        Seattle            Storm              SEA
## 2467           14        Seattle            Storm              SEA
## 2468           14        Seattle            Storm              SEA
## 2469           14        Seattle            Storm              SEA
## 2470           14        Seattle            Storm              SEA
## 2471           14        Seattle            Storm              SEA
## 2472           14        Seattle            Storm              SEA
## 2473           14        Seattle            Storm              SEA
## 2474           14        Seattle            Storm              SEA
## 2475           14        Seattle            Storm              SEA
## 2476           14        Seattle            Storm              SEA
## 2477           14        Seattle            Storm              SEA
## 2478           14        Seattle            Storm              SEA
## 2479           14        Seattle            Storm              SEA
## 2480           14        Seattle            Storm              SEA
## 2481           14        Seattle            Storm              SEA
## 2482           14        Seattle            Storm              SEA
## 2483           14        Seattle            Storm              SEA
## 2484           14        Seattle            Storm              SEA
## 2485           14        Seattle            Storm              SEA
## 2486           14        Seattle            Storm              SEA
## 2487           14        Seattle            Storm              SEA
## 2488           20        Atlanta            Dream              ATL
## 2489           20        Atlanta            Dream              ATL
## 2490           20        Atlanta            Dream              ATL
## 2491           20        Atlanta            Dream              ATL
## 2492           20        Atlanta            Dream              ATL
## 2493           20        Atlanta            Dream              ATL
## 2494           20        Atlanta            Dream              ATL
## 2495           20        Atlanta            Dream              ATL
## 2496           20        Atlanta            Dream              ATL
## 2497           20        Atlanta            Dream              ATL
## 2498           20        Atlanta            Dream              ATL
## 2499           20        Atlanta            Dream              ATL
## 2500           20        Atlanta            Dream              ATL
## 2501           20        Atlanta            Dream              ATL
## 2502           20        Atlanta            Dream              ATL
## 2503           20        Atlanta            Dream              ATL
## 2504           20        Atlanta            Dream              ATL
## 2505           20        Atlanta            Dream              ATL
## 2506           20        Atlanta            Dream              ATL
## 2507           20        Atlanta            Dream              ATL
## 2508           20        Atlanta            Dream              ATL
## 2509           20        Atlanta            Dream              ATL
## 2510           20        Atlanta            Dream              ATL
## 2511           20        Atlanta            Dream              ATL
## 2512           20        Atlanta            Dream              ATL
## 2513           20        Atlanta            Dream              ATL
## 2514           20        Atlanta            Dream              ATL
## 2515           20        Atlanta            Dream              ATL
## 2516           20        Atlanta            Dream              ATL
## 2517           20        Atlanta            Dream              ATL
## 2518           20        Atlanta            Dream              ATL
## 2519           20        Atlanta            Dream              ATL
## 2520           20        Atlanta            Dream              ATL
## 2521           20        Atlanta            Dream              ATL
## 2522           20        Atlanta            Dream              ATL
## 2523           20        Atlanta            Dream              ATL
## 2524           20        Atlanta            Dream              ATL
## 2525           20        Atlanta            Dream              ATL
## 2526           20        Atlanta            Dream              ATL
## 2527           20        Atlanta            Dream              ATL
## 2528           20        Atlanta            Dream              ATL
## 2529           20        Atlanta            Dream              ATL
## 2530           20        Atlanta            Dream              ATL
## 2531           20        Atlanta            Dream              ATL
## 2532           20        Atlanta            Dream              ATL
## 2533           20        Atlanta            Dream              ATL
## 2534           20        Atlanta            Dream              ATL
## 2535           20        Atlanta            Dream              ATL
## 2536           20        Atlanta            Dream              ATL
## 2537           20        Atlanta            Dream              ATL
## 2538           20        Atlanta            Dream              ATL
## 2539           20        Atlanta            Dream              ATL
## 2540           20        Atlanta            Dream              ATL
## 2541           20        Atlanta            Dream              ATL
## 2542           20        Atlanta            Dream              ATL
## 2543           20        Atlanta            Dream              ATL
## 2544           20        Atlanta            Dream              ATL
## 2545           20        Atlanta            Dream              ATL
## 2546           20        Atlanta            Dream              ATL
## 2547           20        Atlanta            Dream              ATL
## 2548           20        Atlanta            Dream              ATL
## 2549           20        Atlanta            Dream              ATL
## 2550           20        Atlanta            Dream              ATL
## 2551           20        Atlanta            Dream              ATL
## 2552           20        Atlanta            Dream              ATL
## 2553           20        Atlanta            Dream              ATL
## 2554           20        Atlanta            Dream              ATL
## 2555           20        Atlanta            Dream              ATL
## 2556           20        Atlanta            Dream              ATL
## 2557           20        Atlanta            Dream              ATL
## 2558           20        Atlanta            Dream              ATL
## 2559           20        Atlanta            Dream              ATL
## 2560           20        Atlanta            Dream              ATL
## 2561           20        Atlanta            Dream              ATL
## 2562           20        Atlanta            Dream              ATL
## 2563           20        Atlanta            Dream              ATL
## 2564           20        Atlanta            Dream              ATL
## 2565           20        Atlanta            Dream              ATL
## 2566           20        Atlanta            Dream              ATL
## 2567           20        Atlanta            Dream              ATL
## 2568           20        Atlanta            Dream              ATL
## 2569           20        Atlanta            Dream              ATL
## 2570           20        Atlanta            Dream              ATL
## 2571           20        Atlanta            Dream              ATL
## 2572           20        Atlanta            Dream              ATL
## 2573           20        Atlanta            Dream              ATL
## 2574           20        Atlanta            Dream              ATL
## 2575           20        Atlanta            Dream              ATL
## 2576           20        Atlanta            Dream              ATL
## 2577           20        Atlanta            Dream              ATL
## 2578           20        Atlanta            Dream              ATL
## 2579           20        Atlanta            Dream              ATL
## 2580           20        Atlanta            Dream              ATL
## 2581           20        Atlanta            Dream              ATL
## 2582           20        Atlanta            Dream              ATL
## 2583           20        Atlanta            Dream              ATL
## 2584           20        Atlanta            Dream              ATL
## 2585           20        Atlanta            Dream              ATL
## 2586           20        Atlanta            Dream              ATL
## 2587           20        Atlanta            Dream              ATL
## 2588           20        Atlanta            Dream              ATL
## 2589           20        Atlanta            Dream              ATL
## 2590           20        Atlanta            Dream              ATL
## 2591           20        Atlanta            Dream              ATL
## 2592           20        Atlanta            Dream              ATL
## 2593           20        Atlanta            Dream              ATL
## 2594           20        Atlanta            Dream              ATL
## 2595           20        Atlanta            Dream              ATL
## 2596           20        Atlanta            Dream              ATL
## 2597           20        Atlanta            Dream              ATL
## 2598           20        Atlanta            Dream              ATL
## 2599           20        Atlanta            Dream              ATL
## 2600           20        Atlanta            Dream              ATL
## 2601           20        Atlanta            Dream              ATL
## 2602           20        Atlanta            Dream              ATL
## 2603           20        Atlanta            Dream              ATL
## 2604           20        Atlanta            Dream              ATL
## 2605           20        Atlanta            Dream              ATL
## 2606           20        Atlanta            Dream              ATL
## 2607           20        Atlanta            Dream              ATL
## 2608           20        Atlanta            Dream              ATL
## 2609           20        Atlanta            Dream              ATL
## 2610           20        Atlanta            Dream              ATL
## 2611           20        Atlanta            Dream              ATL
## 2612           20        Atlanta            Dream              ATL
## 2613           20        Atlanta            Dream              ATL
## 2614           20        Atlanta            Dream              ATL
## 2615           20        Atlanta            Dream              ATL
## 2616           20        Atlanta            Dream              ATL
## 2617           20        Atlanta            Dream              ATL
## 2618           20        Atlanta            Dream              ATL
## 2619           20        Atlanta            Dream              ATL
## 2620           20        Atlanta            Dream              ATL
## 2621           20        Atlanta            Dream              ATL
## 2622           20        Atlanta            Dream              ATL
## 2623           20        Atlanta            Dream              ATL
## 2624           20        Atlanta            Dream              ATL
## 2625           20        Atlanta            Dream              ATL
## 2626           20        Atlanta            Dream              ATL
## 2627           20        Atlanta            Dream              ATL
## 2628           20        Atlanta            Dream              ATL
## 2629           20        Atlanta            Dream              ATL
## 2630           20        Atlanta            Dream              ATL
## 2631           20        Atlanta            Dream              ATL
## 2632           20        Atlanta            Dream              ATL
## 2633           20        Atlanta            Dream              ATL
## 2634           20        Atlanta            Dream              ATL
## 2635           20        Atlanta            Dream              ATL
## 2636           20        Atlanta            Dream              ATL
## 2637           20        Atlanta            Dream              ATL
## 2638           20        Atlanta            Dream              ATL
## 2639           20        Atlanta            Dream              ATL
## 2640           20        Atlanta            Dream              ATL
## 2641           20        Atlanta            Dream              ATL
## 2642           20        Atlanta            Dream              ATL
## 2643           20        Atlanta            Dream              ATL
## 2644           20        Atlanta            Dream              ATL
## 2645           20        Atlanta            Dream              ATL
## 2646           20        Atlanta            Dream              ATL
## 2647           20        Atlanta            Dream              ATL
## 2648           20        Atlanta            Dream              ATL
## 2649           20        Atlanta            Dream              ATL
## 2650           20        Atlanta            Dream              ATL
## 2651           20        Atlanta            Dream              ATL
## 2652           20        Atlanta            Dream              ATL
## 2653           20        Atlanta            Dream              ATL
## 2654           20        Atlanta            Dream              ATL
## 2655           20        Atlanta            Dream              ATL
## 2656           20        Atlanta            Dream              ATL
## 2657           20        Atlanta            Dream              ATL
## 2658           20        Atlanta            Dream              ATL
## 2659            9       New York          Liberty               NY
## 2660            9       New York          Liberty               NY
## 2661            9       New York          Liberty               NY
## 2662            9       New York          Liberty               NY
## 2663            9       New York          Liberty               NY
## 2664            9       New York          Liberty               NY
## 2665            9       New York          Liberty               NY
## 2666            9       New York          Liberty               NY
## 2667            9       New York          Liberty               NY
## 2668            9       New York          Liberty               NY
## 2669            9       New York          Liberty               NY
## 2670            9       New York          Liberty               NY
## 2671            9       New York          Liberty               NY
## 2672            9       New York          Liberty               NY
## 2673            9       New York          Liberty               NY
## 2674            9       New York          Liberty               NY
## 2675            9       New York          Liberty               NY
## 2676            9       New York          Liberty               NY
## 2677            9       New York          Liberty               NY
## 2678            9       New York          Liberty               NY
## 2679            9       New York          Liberty               NY
## 2680            9       New York          Liberty               NY
## 2681            9       New York          Liberty               NY
## 2682            9       New York          Liberty               NY
## 2683            9       New York          Liberty               NY
## 2684            9       New York          Liberty               NY
## 2685            9       New York          Liberty               NY
## 2686            9       New York          Liberty               NY
## 2687            9       New York          Liberty               NY
## 2688            9       New York          Liberty               NY
## 2689            9       New York          Liberty               NY
## 2690            9       New York          Liberty               NY
## 2691            9       New York          Liberty               NY
## 2692            9       New York          Liberty               NY
## 2693            9       New York          Liberty               NY
## 2694            9       New York          Liberty               NY
## 2695            9       New York          Liberty               NY
## 2696            9       New York          Liberty               NY
## 2697            9       New York          Liberty               NY
## 2698            9       New York          Liberty               NY
## 2699            9       New York          Liberty               NY
## 2700            9       New York          Liberty               NY
## 2701            9       New York          Liberty               NY
## 2702            9       New York          Liberty               NY
## 2703            9       New York          Liberty               NY
## 2704            9       New York          Liberty               NY
## 2705            9       New York          Liberty               NY
## 2706            9       New York          Liberty               NY
## 2707            9       New York          Liberty               NY
## 2708            9       New York          Liberty               NY
## 2709            9       New York          Liberty               NY
## 2710            9       New York          Liberty               NY
## 2711            9       New York          Liberty               NY
## 2712            9       New York          Liberty               NY
## 2713            9       New York          Liberty               NY
## 2714            9       New York          Liberty               NY
## 2715            9       New York          Liberty               NY
## 2716            9       New York          Liberty               NY
## 2717            9       New York          Liberty               NY
## 2718            9       New York          Liberty               NY
## 2719            9       New York          Liberty               NY
## 2720            9       New York          Liberty               NY
## 2721            9       New York          Liberty               NY
## 2722            9       New York          Liberty               NY
## 2723            9       New York          Liberty               NY
## 2724            9       New York          Liberty               NY
## 2725            9       New York          Liberty               NY
## 2726            9       New York          Liberty               NY
## 2727            9       New York          Liberty               NY
## 2728            9       New York          Liberty               NY
## 2729            9       New York          Liberty               NY
## 2730            9       New York          Liberty               NY
## 2731            9       New York          Liberty               NY
## 2732            9       New York          Liberty               NY
## 2733            9       New York          Liberty               NY
## 2734            9       New York          Liberty               NY
## 2735            9       New York          Liberty               NY
## 2736            9       New York          Liberty               NY
## 2737            9       New York          Liberty               NY
## 2738            9       New York          Liberty               NY
## 2739            9       New York          Liberty               NY
## 2740            9       New York          Liberty               NY
## 2741            9       New York          Liberty               NY
## 2742            9       New York          Liberty               NY
## 2743            9       New York          Liberty               NY
## 2744            9       New York          Liberty               NY
## 2745            9       New York          Liberty               NY
## 2746            9       New York          Liberty               NY
## 2747            9       New York          Liberty               NY
## 2748            9       New York          Liberty               NY
## 2749            9       New York          Liberty               NY
## 2750            9       New York          Liberty               NY
## 2751            9       New York          Liberty               NY
## 2752            9       New York          Liberty               NY
## 2753            9       New York          Liberty               NY
## 2754            9       New York          Liberty               NY
## 2755            9       New York          Liberty               NY
## 2756            9       New York          Liberty               NY
## 2757            9       New York          Liberty               NY
## 2758            9       New York          Liberty               NY
## 2759            9       New York          Liberty               NY
## 2760            9       New York          Liberty               NY
## 2761            9       New York          Liberty               NY
## 2762            9       New York          Liberty               NY
## 2763            9       New York          Liberty               NY
## 2764            9       New York          Liberty               NY
## 2765            9       New York          Liberty               NY
## 2766            9       New York          Liberty               NY
## 2767            9       New York          Liberty               NY
## 2768            9       New York          Liberty               NY
## 2769            9       New York          Liberty               NY
## 2770            9       New York          Liberty               NY
## 2771            9       New York          Liberty               NY
## 2772            9       New York          Liberty               NY
## 2773            9       New York          Liberty               NY
## 2774            9       New York          Liberty               NY
## 2775            9       New York          Liberty               NY
## 2776            9       New York          Liberty               NY
## 2777            9       New York          Liberty               NY
## 2778            9       New York          Liberty               NY
## 2779            9       New York          Liberty               NY
## 2780            9       New York          Liberty               NY
## 2781            9       New York          Liberty               NY
## 2782            9       New York          Liberty               NY
## 2783            9       New York          Liberty               NY
## 2784            9       New York          Liberty               NY
## 2785            9       New York          Liberty               NY
## 2786            9       New York          Liberty               NY
## 2787            9       New York          Liberty               NY
## 2788            9       New York          Liberty               NY
## 2789            9       New York          Liberty               NY
## 2790            9       New York          Liberty               NY
## 2791            9       New York          Liberty               NY
## 2792            9       New York          Liberty               NY
## 2793            9       New York          Liberty               NY
## 2794            9       New York          Liberty               NY
## 2795            9       New York          Liberty               NY
## 2796            9       New York          Liberty               NY
## 2797            9       New York          Liberty               NY
## 2798            9       New York          Liberty               NY
## 2799            9       New York          Liberty               NY
## 2800            9       New York          Liberty               NY
## 2801            9       New York          Liberty               NY
## 2802            9       New York          Liberty               NY
## 2803            9       New York          Liberty               NY
## 2804            9       New York          Liberty               NY
## 2805            9       New York          Liberty               NY
## 2806            9       New York          Liberty               NY
## 2807            9       New York          Liberty               NY
## 2808            9       New York          Liberty               NY
## 2809            9       New York          Liberty               NY
## 2810            9       New York          Liberty               NY
## 2811            9       New York          Liberty               NY
## 2812            9       New York          Liberty               NY
## 2813            9       New York          Liberty               NY
## 2814            9       New York          Liberty               NY
## 2815            9       New York          Liberty               NY
## 2816            9       New York          Liberty               NY
## 2817            9       New York          Liberty               NY
## 2818            9       New York          Liberty               NY
## 2819            9       New York          Liberty               NY
## 2820            9       New York          Liberty               NY
## 2821            9       New York          Liberty               NY
## 2822           18    Connecticut              Sun             CONN
## 2823           18    Connecticut              Sun             CONN
## 2824           18    Connecticut              Sun             CONN
## 2825           18    Connecticut              Sun             CONN
## 2826           18    Connecticut              Sun             CONN
## 2827           18    Connecticut              Sun             CONN
## 2828           18    Connecticut              Sun             CONN
## 2829           18    Connecticut              Sun             CONN
## 2830           18    Connecticut              Sun             CONN
## 2831           18    Connecticut              Sun             CONN
## 2832           18    Connecticut              Sun             CONN
## 2833           18    Connecticut              Sun             CONN
## 2834           18    Connecticut              Sun             CONN
## 2835           18    Connecticut              Sun             CONN
## 2836           18    Connecticut              Sun             CONN
## 2837           18    Connecticut              Sun             CONN
## 2838           18    Connecticut              Sun             CONN
## 2839           18    Connecticut              Sun             CONN
## 2840           18    Connecticut              Sun             CONN
## 2841           18    Connecticut              Sun             CONN
## 2842           18    Connecticut              Sun             CONN
## 2843           18    Connecticut              Sun             CONN
## 2844           18    Connecticut              Sun             CONN
## 2845           18    Connecticut              Sun             CONN
## 2846           18    Connecticut              Sun             CONN
## 2847           18    Connecticut              Sun             CONN
## 2848           18    Connecticut              Sun             CONN
## 2849           18    Connecticut              Sun             CONN
## 2850           18    Connecticut              Sun             CONN
## 2851           18    Connecticut              Sun             CONN
## 2852           18    Connecticut              Sun             CONN
## 2853           18    Connecticut              Sun             CONN
## 2854           18    Connecticut              Sun             CONN
## 2855           18    Connecticut              Sun             CONN
## 2856           18    Connecticut              Sun             CONN
## 2857           18    Connecticut              Sun             CONN
## 2858           18    Connecticut              Sun             CONN
## 2859           18    Connecticut              Sun             CONN
## 2860           18    Connecticut              Sun             CONN
## 2861           18    Connecticut              Sun             CONN
## 2862           18    Connecticut              Sun             CONN
## 2863           18    Connecticut              Sun             CONN
## 2864           18    Connecticut              Sun             CONN
## 2865           18    Connecticut              Sun             CONN
## 2866           18    Connecticut              Sun             CONN
## 2867           18    Connecticut              Sun             CONN
## 2868           18    Connecticut              Sun             CONN
## 2869           18    Connecticut              Sun             CONN
## 2870           18    Connecticut              Sun             CONN
## 2871           18    Connecticut              Sun             CONN
## 2872           18    Connecticut              Sun             CONN
## 2873           18    Connecticut              Sun             CONN
## 2874           18    Connecticut              Sun             CONN
## 2875           18    Connecticut              Sun             CONN
## 2876           18    Connecticut              Sun             CONN
## 2877           18    Connecticut              Sun             CONN
## 2878           18    Connecticut              Sun             CONN
## 2879           18    Connecticut              Sun             CONN
## 2880           18    Connecticut              Sun             CONN
## 2881           18    Connecticut              Sun             CONN
## 2882           18    Connecticut              Sun             CONN
## 2883           18    Connecticut              Sun             CONN
## 2884           18    Connecticut              Sun             CONN
## 2885           18    Connecticut              Sun             CONN
## 2886           18    Connecticut              Sun             CONN
## 2887           18    Connecticut              Sun             CONN
## 2888           18    Connecticut              Sun             CONN
## 2889           18    Connecticut              Sun             CONN
## 2890           18    Connecticut              Sun             CONN
## 2891           18    Connecticut              Sun             CONN
## 2892           18    Connecticut              Sun             CONN
## 2893           18    Connecticut              Sun             CONN
## 2894           18    Connecticut              Sun             CONN
## 2895           18    Connecticut              Sun             CONN
## 2896           18    Connecticut              Sun             CONN
## 2897           18    Connecticut              Sun             CONN
## 2898           18    Connecticut              Sun             CONN
## 2899           18    Connecticut              Sun             CONN
## 2900           18    Connecticut              Sun             CONN
## 2901           18    Connecticut              Sun             CONN
## 2902           18    Connecticut              Sun             CONN
## 2903           18    Connecticut              Sun             CONN
## 2904           18    Connecticut              Sun             CONN
## 2905           18    Connecticut              Sun             CONN
## 2906           18    Connecticut              Sun             CONN
## 2907           18    Connecticut              Sun             CONN
## 2908           18    Connecticut              Sun             CONN
## 2909           18    Connecticut              Sun             CONN
## 2910           18    Connecticut              Sun             CONN
## 2911           18    Connecticut              Sun             CONN
## 2912           18    Connecticut              Sun             CONN
## 2913           18    Connecticut              Sun             CONN
## 2914           18    Connecticut              Sun             CONN
## 2915           18    Connecticut              Sun             CONN
## 2916           18    Connecticut              Sun             CONN
## 2917           18    Connecticut              Sun             CONN
## 2918           18    Connecticut              Sun             CONN
## 2919           18    Connecticut              Sun             CONN
## 2920           18    Connecticut              Sun             CONN
## 2921           18    Connecticut              Sun             CONN
## 2922           18    Connecticut              Sun             CONN
## 2923           18    Connecticut              Sun             CONN
## 2924           18    Connecticut              Sun             CONN
## 2925           18    Connecticut              Sun             CONN
## 2926           18    Connecticut              Sun             CONN
## 2927           18    Connecticut              Sun             CONN
## 2928           18    Connecticut              Sun             CONN
## 2929           18    Connecticut              Sun             CONN
## 2930           18    Connecticut              Sun             CONN
## 2931           18    Connecticut              Sun             CONN
## 2932           18    Connecticut              Sun             CONN
## 2933           18    Connecticut              Sun             CONN
## 2934           18    Connecticut              Sun             CONN
## 2935           18    Connecticut              Sun             CONN
## 2936           18    Connecticut              Sun             CONN
## 2937           18    Connecticut              Sun             CONN
## 2938           18    Connecticut              Sun             CONN
## 2939           18    Connecticut              Sun             CONN
## 2940           18    Connecticut              Sun             CONN
## 2941           18    Connecticut              Sun             CONN
## 2942           18    Connecticut              Sun             CONN
## 2943           18    Connecticut              Sun             CONN
## 2944           18    Connecticut              Sun             CONN
## 2945           18    Connecticut              Sun             CONN
## 2946           18    Connecticut              Sun             CONN
## 2947           18    Connecticut              Sun             CONN
## 2948           18    Connecticut              Sun             CONN
## 2949           18    Connecticut              Sun             CONN
## 2950           18    Connecticut              Sun             CONN
## 2951           18    Connecticut              Sun             CONN
## 2952           18    Connecticut              Sun             CONN
## 2953           18    Connecticut              Sun             CONN
## 2954           18    Connecticut              Sun             CONN
## 2955           18    Connecticut              Sun             CONN
## 2956           18    Connecticut              Sun             CONN
## 2957           18    Connecticut              Sun             CONN
## 2958           18    Connecticut              Sun             CONN
## 2959           18    Connecticut              Sun             CONN
## 2960           18    Connecticut              Sun             CONN
## 2961           18    Connecticut              Sun             CONN
## 2962           18    Connecticut              Sun             CONN
## 2963           18    Connecticut              Sun             CONN
## 2964           18    Connecticut              Sun             CONN
## 2965           18    Connecticut              Sun             CONN
## 2966           18    Connecticut              Sun             CONN
## 2967           18    Connecticut              Sun             CONN
## 2968           18    Connecticut              Sun             CONN
## 2969           18    Connecticut              Sun             CONN
## 2970           18    Connecticut              Sun             CONN
## 2971           18    Connecticut              Sun             CONN
## 2972           18    Connecticut              Sun             CONN
## 2973           18    Connecticut              Sun             CONN
## 2974           18    Connecticut              Sun             CONN
## 2975           18    Connecticut              Sun             CONN
## 2976           18    Connecticut              Sun             CONN
## 2977           18    Connecticut              Sun             CONN
## 2978           18    Connecticut              Sun             CONN
## 2979           18    Connecticut              Sun             CONN
## 2980           18    Connecticut              Sun             CONN
## 2981           18    Connecticut              Sun             CONN
## 2982           18    Connecticut              Sun             CONN
## 2983           18    Connecticut              Sun             CONN
## 2984           18    Connecticut              Sun             CONN
## 2985           18    Connecticut              Sun             CONN
## 2986           18    Connecticut              Sun             CONN
## 2987           18    Connecticut              Sun             CONN
## 2988            6    Los Angeles           Sparks               LA
## 2989            6    Los Angeles           Sparks               LA
## 2990            6    Los Angeles           Sparks               LA
## 2991            6    Los Angeles           Sparks               LA
## 2992            6    Los Angeles           Sparks               LA
## 2993            6    Los Angeles           Sparks               LA
## 2994            6    Los Angeles           Sparks               LA
## 2995            6    Los Angeles           Sparks               LA
## 2996            6    Los Angeles           Sparks               LA
## 2997            6    Los Angeles           Sparks               LA
## 2998            6    Los Angeles           Sparks               LA
## 2999            6    Los Angeles           Sparks               LA
## 3000            6    Los Angeles           Sparks               LA
## 3001            6    Los Angeles           Sparks               LA
## 3002            6    Los Angeles           Sparks               LA
## 3003            6    Los Angeles           Sparks               LA
## 3004            6    Los Angeles           Sparks               LA
## 3005            6    Los Angeles           Sparks               LA
## 3006            6    Los Angeles           Sparks               LA
## 3007            6    Los Angeles           Sparks               LA
## 3008            6    Los Angeles           Sparks               LA
## 3009            6    Los Angeles           Sparks               LA
## 3010            6    Los Angeles           Sparks               LA
## 3011            6    Los Angeles           Sparks               LA
## 3012            6    Los Angeles           Sparks               LA
## 3013            6    Los Angeles           Sparks               LA
## 3014            6    Los Angeles           Sparks               LA
## 3015            6    Los Angeles           Sparks               LA
## 3016            6    Los Angeles           Sparks               LA
## 3017            6    Los Angeles           Sparks               LA
## 3018            6    Los Angeles           Sparks               LA
## 3019            6    Los Angeles           Sparks               LA
## 3020            6    Los Angeles           Sparks               LA
## 3021            6    Los Angeles           Sparks               LA
## 3022            6    Los Angeles           Sparks               LA
## 3023            6    Los Angeles           Sparks               LA
## 3024            6    Los Angeles           Sparks               LA
## 3025            6    Los Angeles           Sparks               LA
## 3026            6    Los Angeles           Sparks               LA
## 3027            6    Los Angeles           Sparks               LA
## 3028            6    Los Angeles           Sparks               LA
## 3029            6    Los Angeles           Sparks               LA
## 3030            6    Los Angeles           Sparks               LA
##      away_team_name_alt home_team_id home_team_name home_team_mascot
## 1               Indiana            9       New York          Liberty
## 2               Indiana            9       New York          Liberty
## 3               Indiana            9       New York          Liberty
## 4               Indiana            9       New York          Liberty
## 5               Indiana            9       New York          Liberty
## 6               Indiana            9       New York          Liberty
## 7               Indiana            9       New York          Liberty
## 8               Indiana            9       New York          Liberty
## 9               Indiana            9       New York          Liberty
## 10              Indiana            9       New York          Liberty
## 11              Indiana            9       New York          Liberty
## 12              Indiana            9       New York          Liberty
## 13              Indiana            9       New York          Liberty
## 14              Indiana            9       New York          Liberty
## 15              Indiana            9       New York          Liberty
## 16              Indiana            9       New York          Liberty
## 17              Indiana            9       New York          Liberty
## 18              Indiana            9       New York          Liberty
## 19              Indiana            9       New York          Liberty
## 20              Indiana            9       New York          Liberty
## 21              Indiana            9       New York          Liberty
## 22              Indiana            9       New York          Liberty
## 23              Indiana            9       New York          Liberty
## 24              Indiana            9       New York          Liberty
## 25              Indiana            9       New York          Liberty
## 26              Indiana            9       New York          Liberty
## 27              Indiana            9       New York          Liberty
## 28              Indiana            9       New York          Liberty
## 29              Indiana            9       New York          Liberty
## 30              Indiana            9       New York          Liberty
## 31              Indiana            9       New York          Liberty
## 32              Indiana            9       New York          Liberty
## 33              Indiana            9       New York          Liberty
## 34              Indiana            9       New York          Liberty
## 35              Indiana            9       New York          Liberty
## 36              Indiana            9       New York          Liberty
## 37              Indiana            9       New York          Liberty
## 38              Indiana            9       New York          Liberty
## 39              Indiana            9       New York          Liberty
## 40              Indiana            9       New York          Liberty
## 41              Indiana            9       New York          Liberty
## 42              Indiana            9       New York          Liberty
## 43              Indiana            9       New York          Liberty
## 44              Indiana            9       New York          Liberty
## 45              Indiana            9       New York          Liberty
## 46              Indiana            9       New York          Liberty
## 47              Indiana            9       New York          Liberty
## 48              Indiana            9       New York          Liberty
## 49              Indiana            9       New York          Liberty
## 50              Indiana            9       New York          Liberty
## 51              Indiana            9       New York          Liberty
## 52              Indiana            9       New York          Liberty
## 53              Indiana            9       New York          Liberty
## 54              Indiana            9       New York          Liberty
## 55              Indiana            9       New York          Liberty
## 56              Indiana            9       New York          Liberty
## 57              Indiana            9       New York          Liberty
## 58              Indiana            9       New York          Liberty
## 59              Indiana            9       New York          Liberty
## 60              Indiana            9       New York          Liberty
## 61              Indiana            9       New York          Liberty
## 62              Indiana            9       New York          Liberty
## 63              Indiana            9       New York          Liberty
## 64              Indiana            9       New York          Liberty
## 65              Indiana            9       New York          Liberty
## 66              Indiana            9       New York          Liberty
## 67              Indiana            9       New York          Liberty
## 68              Indiana            9       New York          Liberty
## 69              Indiana            9       New York          Liberty
## 70              Indiana            9       New York          Liberty
## 71              Indiana            9       New York          Liberty
## 72              Indiana            9       New York          Liberty
## 73              Indiana            9       New York          Liberty
## 74              Indiana            9       New York          Liberty
## 75              Indiana            9       New York          Liberty
## 76              Indiana            9       New York          Liberty
## 77              Indiana            9       New York          Liberty
## 78              Indiana            9       New York          Liberty
## 79              Indiana            9       New York          Liberty
## 80              Indiana            9       New York          Liberty
## 81              Indiana            9       New York          Liberty
## 82              Indiana            9       New York          Liberty
## 83              Indiana            9       New York          Liberty
## 84              Indiana            9       New York          Liberty
## 85              Indiana            9       New York          Liberty
## 86              Indiana            9       New York          Liberty
## 87              Indiana            9       New York          Liberty
## 88              Indiana            9       New York          Liberty
## 89              Indiana            9       New York          Liberty
## 90              Indiana            9       New York          Liberty
## 91              Indiana            9       New York          Liberty
## 92              Indiana            9       New York          Liberty
## 93              Indiana            9       New York          Liberty
## 94              Indiana            9       New York          Liberty
## 95              Indiana            9       New York          Liberty
## 96              Indiana            9       New York          Liberty
## 97              Indiana            9       New York          Liberty
## 98              Indiana            9       New York          Liberty
## 99              Indiana            9       New York          Liberty
## 100             Indiana            9       New York          Liberty
## 101             Indiana            9       New York          Liberty
## 102             Indiana            9       New York          Liberty
## 103             Indiana            9       New York          Liberty
## 104             Indiana            9       New York          Liberty
## 105             Indiana            9       New York          Liberty
## 106             Indiana            9       New York          Liberty
## 107             Indiana            9       New York          Liberty
## 108             Indiana            9       New York          Liberty
## 109             Indiana            9       New York          Liberty
## 110             Indiana            9       New York          Liberty
## 111             Indiana            9       New York          Liberty
## 112             Indiana            9       New York          Liberty
## 113             Indiana            9       New York          Liberty
## 114             Indiana            9       New York          Liberty
## 115             Indiana            9       New York          Liberty
## 116             Indiana            9       New York          Liberty
## 117             Indiana            9       New York          Liberty
## 118             Indiana            9       New York          Liberty
## 119             Indiana            9       New York          Liberty
## 120             Indiana            9       New York          Liberty
## 121             Indiana            9       New York          Liberty
## 122             Indiana            9       New York          Liberty
## 123             Indiana            9       New York          Liberty
## 124             Indiana            9       New York          Liberty
## 125             Indiana            9       New York          Liberty
## 126             Indiana            9       New York          Liberty
## 127             Indiana            9       New York          Liberty
## 128             Indiana            9       New York          Liberty
## 129             Indiana            9       New York          Liberty
## 130             Indiana            9       New York          Liberty
## 131             Indiana            9       New York          Liberty
## 132             Indiana            9       New York          Liberty
## 133             Indiana            9       New York          Liberty
## 134             Indiana            9       New York          Liberty
## 135             Indiana            9       New York          Liberty
## 136             Indiana            9       New York          Liberty
## 137             Indiana            9       New York          Liberty
## 138             Indiana            9       New York          Liberty
## 139             Indiana            9       New York          Liberty
## 140             Indiana            9       New York          Liberty
## 141             Indiana            9       New York          Liberty
## 142             Indiana            9       New York          Liberty
## 143             Indiana            9       New York          Liberty
## 144             Indiana            9       New York          Liberty
## 145             Indiana            9       New York          Liberty
## 146             Indiana            9       New York          Liberty
## 147             Indiana            9       New York          Liberty
## 148             Indiana            9       New York          Liberty
## 149             Indiana            9       New York          Liberty
## 150             Indiana            9       New York          Liberty
## 151             Indiana            9       New York          Liberty
## 152             Indiana            9       New York          Liberty
## 153             Indiana            9       New York          Liberty
## 154             Indiana            9       New York          Liberty
## 155             Indiana            9       New York          Liberty
## 156             Indiana            9       New York          Liberty
## 157             Indiana            9       New York          Liberty
## 158             Indiana            9       New York          Liberty
## 159             Indiana            9       New York          Liberty
## 160             Indiana            9       New York          Liberty
## 161             Indiana            9       New York          Liberty
## 162             Indiana            9       New York          Liberty
## 163             Indiana            9       New York          Liberty
## 164             Indiana            9       New York          Liberty
## 165             Indiana            9       New York          Liberty
## 166             Indiana            9       New York          Liberty
## 167             Indiana            9       New York          Liberty
## 168             Indiana            9       New York          Liberty
## 169             Indiana            9       New York          Liberty
## 170             Indiana            9       New York          Liberty
## 171             Indiana            9       New York          Liberty
## 172             Indiana            9       New York          Liberty
## 173             Indiana            9       New York          Liberty
## 174             Indiana            9       New York          Liberty
## 175             Indiana            9       New York          Liberty
## 176             Indiana            9       New York          Liberty
## 177             Indiana            9       New York          Liberty
## 178             Indiana            9       New York          Liberty
## 179             Indiana            9       New York          Liberty
## 180             Indiana            9       New York          Liberty
## 181             Indiana            9       New York          Liberty
## 182             Indiana            9       New York          Liberty
## 183             Indiana            9       New York          Liberty
## 184             Indiana            9       New York          Liberty
## 185             Indiana            9       New York          Liberty
## 186         Connecticut           20        Atlanta            Dream
## 187         Connecticut           20        Atlanta            Dream
## 188         Connecticut           20        Atlanta            Dream
## 189         Connecticut           20        Atlanta            Dream
## 190         Connecticut           20        Atlanta            Dream
## 191         Connecticut           20        Atlanta            Dream
## 192         Connecticut           20        Atlanta            Dream
## 193         Connecticut           20        Atlanta            Dream
## 194         Connecticut           20        Atlanta            Dream
## 195         Connecticut           20        Atlanta            Dream
## 196         Connecticut           20        Atlanta            Dream
## 197         Connecticut           20        Atlanta            Dream
## 198         Connecticut           20        Atlanta            Dream
## 199         Connecticut           20        Atlanta            Dream
## 200         Connecticut           20        Atlanta            Dream
## 201         Connecticut           20        Atlanta            Dream
## 202         Connecticut           20        Atlanta            Dream
## 203         Connecticut           20        Atlanta            Dream
## 204         Connecticut           20        Atlanta            Dream
## 205         Connecticut           20        Atlanta            Dream
## 206         Connecticut           20        Atlanta            Dream
## 207         Connecticut           20        Atlanta            Dream
## 208         Connecticut           20        Atlanta            Dream
## 209         Connecticut           20        Atlanta            Dream
## 210         Connecticut           20        Atlanta            Dream
## 211         Connecticut           20        Atlanta            Dream
## 212         Connecticut           20        Atlanta            Dream
## 213         Connecticut           20        Atlanta            Dream
## 214         Connecticut           20        Atlanta            Dream
## 215         Connecticut           20        Atlanta            Dream
## 216         Connecticut           20        Atlanta            Dream
## 217         Connecticut           20        Atlanta            Dream
## 218         Connecticut           20        Atlanta            Dream
## 219         Connecticut           20        Atlanta            Dream
## 220         Connecticut           20        Atlanta            Dream
## 221         Connecticut           20        Atlanta            Dream
## 222         Connecticut           20        Atlanta            Dream
## 223         Connecticut           20        Atlanta            Dream
## 224         Connecticut           20        Atlanta            Dream
## 225         Connecticut           20        Atlanta            Dream
## 226         Connecticut           20        Atlanta            Dream
## 227         Connecticut           20        Atlanta            Dream
## 228         Connecticut           20        Atlanta            Dream
## 229         Connecticut           20        Atlanta            Dream
## 230         Connecticut           20        Atlanta            Dream
## 231         Connecticut           20        Atlanta            Dream
## 232         Connecticut           20        Atlanta            Dream
## 233         Connecticut           20        Atlanta            Dream
## 234         Connecticut           20        Atlanta            Dream
## 235         Connecticut           20        Atlanta            Dream
## 236         Connecticut           20        Atlanta            Dream
## 237         Connecticut           20        Atlanta            Dream
## 238         Connecticut           20        Atlanta            Dream
## 239         Connecticut           20        Atlanta            Dream
## 240         Connecticut           20        Atlanta            Dream
## 241         Connecticut           20        Atlanta            Dream
## 242         Connecticut           20        Atlanta            Dream
## 243         Connecticut           20        Atlanta            Dream
## 244         Connecticut           20        Atlanta            Dream
## 245         Connecticut           20        Atlanta            Dream
## 246         Connecticut           20        Atlanta            Dream
## 247         Connecticut           20        Atlanta            Dream
## 248         Connecticut           20        Atlanta            Dream
## 249         Connecticut           20        Atlanta            Dream
## 250         Connecticut           20        Atlanta            Dream
## 251         Connecticut           20        Atlanta            Dream
## 252         Connecticut           20        Atlanta            Dream
## 253         Connecticut           20        Atlanta            Dream
## 254         Connecticut           20        Atlanta            Dream
## 255         Connecticut           20        Atlanta            Dream
## 256         Connecticut           20        Atlanta            Dream
## 257         Connecticut           20        Atlanta            Dream
## 258         Connecticut           20        Atlanta            Dream
## 259         Connecticut           20        Atlanta            Dream
## 260         Connecticut           20        Atlanta            Dream
## 261         Connecticut           20        Atlanta            Dream
## 262         Connecticut           20        Atlanta            Dream
## 263         Connecticut           20        Atlanta            Dream
## 264         Connecticut           20        Atlanta            Dream
## 265         Connecticut           20        Atlanta            Dream
## 266         Connecticut           20        Atlanta            Dream
## 267         Connecticut           20        Atlanta            Dream
## 268         Connecticut           20        Atlanta            Dream
## 269         Connecticut           20        Atlanta            Dream
## 270         Connecticut           20        Atlanta            Dream
## 271         Connecticut           20        Atlanta            Dream
## 272         Connecticut           20        Atlanta            Dream
## 273         Connecticut           20        Atlanta            Dream
## 274         Connecticut           20        Atlanta            Dream
## 275         Connecticut           20        Atlanta            Dream
## 276         Connecticut           20        Atlanta            Dream
## 277         Connecticut           20        Atlanta            Dream
## 278         Connecticut           20        Atlanta            Dream
## 279         Connecticut           20        Atlanta            Dream
## 280         Connecticut           20        Atlanta            Dream
## 281         Connecticut           20        Atlanta            Dream
## 282         Connecticut           20        Atlanta            Dream
## 283         Connecticut           20        Atlanta            Dream
## 284         Connecticut           20        Atlanta            Dream
## 285         Connecticut           20        Atlanta            Dream
## 286         Connecticut           20        Atlanta            Dream
## 287         Connecticut           20        Atlanta            Dream
## 288         Connecticut           20        Atlanta            Dream
## 289         Connecticut           20        Atlanta            Dream
## 290         Connecticut           20        Atlanta            Dream
## 291         Connecticut           20        Atlanta            Dream
## 292         Connecticut           20        Atlanta            Dream
## 293         Connecticut           20        Atlanta            Dream
## 294         Connecticut           20        Atlanta            Dream
## 295         Connecticut           20        Atlanta            Dream
## 296         Connecticut           20        Atlanta            Dream
## 297         Connecticut           20        Atlanta            Dream
## 298         Connecticut           20        Atlanta            Dream
## 299         Connecticut           20        Atlanta            Dream
## 300         Connecticut           20        Atlanta            Dream
## 301         Connecticut           20        Atlanta            Dream
## 302         Connecticut           20        Atlanta            Dream
## 303         Connecticut           20        Atlanta            Dream
## 304         Connecticut           20        Atlanta            Dream
## 305         Connecticut           20        Atlanta            Dream
## 306         Connecticut           20        Atlanta            Dream
## 307         Connecticut           20        Atlanta            Dream
## 308         Connecticut           20        Atlanta            Dream
## 309         Connecticut           20        Atlanta            Dream
## 310         Connecticut           20        Atlanta            Dream
## 311         Connecticut           20        Atlanta            Dream
## 312         Connecticut           20        Atlanta            Dream
## 313         Connecticut           20        Atlanta            Dream
## 314         Connecticut           20        Atlanta            Dream
## 315         Connecticut           20        Atlanta            Dream
## 316         Connecticut           20        Atlanta            Dream
## 317         Connecticut           20        Atlanta            Dream
## 318         Connecticut           20        Atlanta            Dream
## 319         Connecticut           20        Atlanta            Dream
## 320         Connecticut           20        Atlanta            Dream
## 321         Connecticut           20        Atlanta            Dream
## 322         Connecticut           20        Atlanta            Dream
## 323         Connecticut           20        Atlanta            Dream
## 324         Connecticut           20        Atlanta            Dream
## 325         Connecticut           20        Atlanta            Dream
## 326         Connecticut           20        Atlanta            Dream
## 327         Connecticut           20        Atlanta            Dream
## 328         Connecticut           20        Atlanta            Dream
## 329         Connecticut           20        Atlanta            Dream
## 330         Connecticut           20        Atlanta            Dream
## 331         Connecticut           20        Atlanta            Dream
## 332         Connecticut           20        Atlanta            Dream
## 333         Connecticut           20        Atlanta            Dream
## 334         Connecticut           20        Atlanta            Dream
## 335         Connecticut           20        Atlanta            Dream
## 336         Connecticut           20        Atlanta            Dream
## 337         Connecticut           20        Atlanta            Dream
## 338         Connecticut           20        Atlanta            Dream
## 339         Connecticut           20        Atlanta            Dream
## 340         Connecticut           20        Atlanta            Dream
## 341         Connecticut           20        Atlanta            Dream
## 342         Connecticut           20        Atlanta            Dream
## 343         Connecticut           20        Atlanta            Dream
## 344         Connecticut           20        Atlanta            Dream
## 345         Connecticut           20        Atlanta            Dream
## 346         Connecticut           20        Atlanta            Dream
## 347         Connecticut           20        Atlanta            Dream
## 348         Connecticut           20        Atlanta            Dream
## 349         Connecticut           20        Atlanta            Dream
## 350         Connecticut           20        Atlanta            Dream
## 351         Connecticut           20        Atlanta            Dream
## 352         Connecticut           20        Atlanta            Dream
## 353         Connecticut           20        Atlanta            Dream
## 354             Phoenix            8      Minnesota             Lynx
## 355             Phoenix            8      Minnesota             Lynx
## 356             Phoenix            8      Minnesota             Lynx
## 357             Phoenix            8      Minnesota             Lynx
## 358             Phoenix            8      Minnesota             Lynx
## 359             Phoenix            8      Minnesota             Lynx
## 360             Phoenix            8      Minnesota             Lynx
## 361             Phoenix            8      Minnesota             Lynx
## 362             Phoenix            8      Minnesota             Lynx
## 363             Phoenix            8      Minnesota             Lynx
## 364             Phoenix            8      Minnesota             Lynx
## 365             Phoenix            8      Minnesota             Lynx
## 366             Phoenix            8      Minnesota             Lynx
## 367             Phoenix            8      Minnesota             Lynx
## 368             Phoenix            8      Minnesota             Lynx
## 369             Phoenix            8      Minnesota             Lynx
## 370             Phoenix            8      Minnesota             Lynx
## 371             Phoenix            8      Minnesota             Lynx
## 372             Phoenix            8      Minnesota             Lynx
## 373             Phoenix            8      Minnesota             Lynx
## 374             Phoenix            8      Minnesota             Lynx
## 375             Phoenix            8      Minnesota             Lynx
## 376             Phoenix            8      Minnesota             Lynx
## 377             Phoenix            8      Minnesota             Lynx
## 378             Phoenix            8      Minnesota             Lynx
## 379             Phoenix            8      Minnesota             Lynx
## 380             Phoenix            8      Minnesota             Lynx
## 381             Phoenix            8      Minnesota             Lynx
## 382             Phoenix            8      Minnesota             Lynx
## 383             Phoenix            8      Minnesota             Lynx
## 384             Phoenix            8      Minnesota             Lynx
## 385             Phoenix            8      Minnesota             Lynx
## 386             Phoenix            8      Minnesota             Lynx
## 387             Phoenix            8      Minnesota             Lynx
## 388             Phoenix            8      Minnesota             Lynx
## 389             Phoenix            8      Minnesota             Lynx
## 390             Phoenix            8      Minnesota             Lynx
## 391             Phoenix            8      Minnesota             Lynx
## 392             Phoenix            8      Minnesota             Lynx
## 393             Phoenix            8      Minnesota             Lynx
## 394             Phoenix            8      Minnesota             Lynx
## 395             Phoenix            8      Minnesota             Lynx
## 396             Phoenix            8      Minnesota             Lynx
## 397             Phoenix            8      Minnesota             Lynx
## 398             Phoenix            8      Minnesota             Lynx
## 399             Phoenix            8      Minnesota             Lynx
## 400             Phoenix            8      Minnesota             Lynx
## 401             Phoenix            8      Minnesota             Lynx
## 402             Phoenix            8      Minnesota             Lynx
## 403             Phoenix            8      Minnesota             Lynx
## 404             Phoenix            8      Minnesota             Lynx
## 405             Phoenix            8      Minnesota             Lynx
## 406             Phoenix            8      Minnesota             Lynx
## 407             Phoenix            8      Minnesota             Lynx
## 408             Phoenix            8      Minnesota             Lynx
## 409             Phoenix            8      Minnesota             Lynx
## 410             Phoenix            8      Minnesota             Lynx
## 411             Phoenix            8      Minnesota             Lynx
## 412             Phoenix            8      Minnesota             Lynx
## 413             Phoenix            8      Minnesota             Lynx
## 414             Phoenix            8      Minnesota             Lynx
## 415             Phoenix            8      Minnesota             Lynx
## 416             Phoenix            8      Minnesota             Lynx
## 417             Phoenix            8      Minnesota             Lynx
## 418             Phoenix            8      Minnesota             Lynx
## 419             Phoenix            8      Minnesota             Lynx
## 420             Phoenix            8      Minnesota             Lynx
## 421             Phoenix            8      Minnesota             Lynx
## 422             Phoenix            8      Minnesota             Lynx
## 423             Phoenix            8      Minnesota             Lynx
## 424             Phoenix            8      Minnesota             Lynx
## 425             Phoenix            8      Minnesota             Lynx
## 426             Phoenix            8      Minnesota             Lynx
## 427             Phoenix            8      Minnesota             Lynx
## 428             Phoenix            8      Minnesota             Lynx
## 429             Phoenix            8      Minnesota             Lynx
## 430             Phoenix            8      Minnesota             Lynx
## 431             Phoenix            8      Minnesota             Lynx
## 432             Phoenix            8      Minnesota             Lynx
## 433             Phoenix            8      Minnesota             Lynx
## 434             Phoenix            8      Minnesota             Lynx
## 435             Phoenix            8      Minnesota             Lynx
## 436             Phoenix            8      Minnesota             Lynx
## 437             Phoenix            8      Minnesota             Lynx
## 438             Phoenix            8      Minnesota             Lynx
## 439             Phoenix            8      Minnesota             Lynx
## 440             Phoenix            8      Minnesota             Lynx
## 441             Phoenix            8      Minnesota             Lynx
## 442             Phoenix            8      Minnesota             Lynx
## 443             Phoenix            8      Minnesota             Lynx
## 444             Phoenix            8      Minnesota             Lynx
## 445             Phoenix            8      Minnesota             Lynx
## 446             Phoenix            8      Minnesota             Lynx
## 447             Phoenix            8      Minnesota             Lynx
## 448             Phoenix            8      Minnesota             Lynx
## 449             Phoenix            8      Minnesota             Lynx
## 450             Phoenix            8      Minnesota             Lynx
## 451             Phoenix            8      Minnesota             Lynx
## 452             Phoenix            8      Minnesota             Lynx
## 453             Phoenix            8      Minnesota             Lynx
## 454             Phoenix            8      Minnesota             Lynx
## 455             Phoenix            8      Minnesota             Lynx
## 456             Phoenix            8      Minnesota             Lynx
## 457             Phoenix            8      Minnesota             Lynx
## 458             Phoenix            8      Minnesota             Lynx
## 459             Phoenix            8      Minnesota             Lynx
## 460             Phoenix            8      Minnesota             Lynx
## 461             Phoenix            8      Minnesota             Lynx
## 462             Phoenix            8      Minnesota             Lynx
## 463             Phoenix            8      Minnesota             Lynx
## 464             Phoenix            8      Minnesota             Lynx
## 465             Phoenix            8      Minnesota             Lynx
## 466             Phoenix            8      Minnesota             Lynx
## 467             Phoenix            8      Minnesota             Lynx
## 468             Phoenix            8      Minnesota             Lynx
## 469             Phoenix            8      Minnesota             Lynx
## 470             Phoenix            8      Minnesota             Lynx
## 471             Phoenix            8      Minnesota             Lynx
## 472             Phoenix            8      Minnesota             Lynx
## 473             Phoenix            8      Minnesota             Lynx
## 474             Phoenix            8      Minnesota             Lynx
## 475             Phoenix            8      Minnesota             Lynx
## 476             Phoenix            8      Minnesota             Lynx
## 477             Phoenix            8      Minnesota             Lynx
## 478             Phoenix            8      Minnesota             Lynx
## 479             Phoenix            8      Minnesota             Lynx
## 480             Phoenix            8      Minnesota             Lynx
## 481             Phoenix            8      Minnesota             Lynx
## 482             Phoenix            8      Minnesota             Lynx
## 483             Phoenix            8      Minnesota             Lynx
## 484             Phoenix            8      Minnesota             Lynx
## 485             Phoenix            8      Minnesota             Lynx
## 486             Phoenix            8      Minnesota             Lynx
## 487             Phoenix            8      Minnesota             Lynx
## 488             Phoenix            8      Minnesota             Lynx
## 489             Phoenix            8      Minnesota             Lynx
## 490             Phoenix            8      Minnesota             Lynx
## 491             Phoenix            8      Minnesota             Lynx
## 492             Phoenix            8      Minnesota             Lynx
## 493             Phoenix            8      Minnesota             Lynx
## 494             Phoenix            8      Minnesota             Lynx
## 495             Phoenix            8      Minnesota             Lynx
## 496             Phoenix            8      Minnesota             Lynx
## 497             Phoenix            8      Minnesota             Lynx
## 498             Phoenix            8      Minnesota             Lynx
## 499             Phoenix            8      Minnesota             Lynx
## 500             Phoenix            8      Minnesota             Lynx
## 501             Phoenix            8      Minnesota             Lynx
## 502             Phoenix            8      Minnesota             Lynx
## 503             Phoenix            8      Minnesota             Lynx
## 504             Phoenix            8      Minnesota             Lynx
## 505             Phoenix            8      Minnesota             Lynx
## 506             Phoenix            8      Minnesota             Lynx
## 507             Phoenix            8      Minnesota             Lynx
## 508             Phoenix            8      Minnesota             Lynx
## 509             Phoenix            8      Minnesota             Lynx
## 510             Phoenix            8      Minnesota             Lynx
## 511             Phoenix            8      Minnesota             Lynx
## 512             Phoenix            8      Minnesota             Lynx
## 513             Phoenix            8      Minnesota             Lynx
## 514             Phoenix            8      Minnesota             Lynx
## 515             Phoenix            8      Minnesota             Lynx
## 516             Phoenix            8      Minnesota             Lynx
## 517             Phoenix            8      Minnesota             Lynx
## 518             Phoenix            8      Minnesota             Lynx
## 519             Phoenix            8      Minnesota             Lynx
## 520             Phoenix            8      Minnesota             Lynx
## 521             Phoenix            8      Minnesota             Lynx
## 522             Phoenix            8      Minnesota             Lynx
## 523             Phoenix            8      Minnesota             Lynx
## 524             Phoenix            8      Minnesota             Lynx
## 525             Phoenix            8      Minnesota             Lynx
## 526             Phoenix            8      Minnesota             Lynx
## 527             Phoenix            8      Minnesota             Lynx
## 528             Phoenix            8      Minnesota             Lynx
## 529             Phoenix            8      Minnesota             Lynx
## 530             Phoenix            8      Minnesota             Lynx
## 531             Phoenix            8      Minnesota             Lynx
## 532             Phoenix            8      Minnesota             Lynx
## 533             Phoenix            8      Minnesota             Lynx
## 534              Dallas            6    Los Angeles           Sparks
## 535              Dallas            6    Los Angeles           Sparks
## 536              Dallas            6    Los Angeles           Sparks
## 537              Dallas            6    Los Angeles           Sparks
## 538              Dallas            6    Los Angeles           Sparks
## 539              Dallas            6    Los Angeles           Sparks
## 540              Dallas            6    Los Angeles           Sparks
## 541              Dallas            6    Los Angeles           Sparks
## 542              Dallas            6    Los Angeles           Sparks
## 543              Dallas            6    Los Angeles           Sparks
## 544              Dallas            6    Los Angeles           Sparks
## 545              Dallas            6    Los Angeles           Sparks
## 546              Dallas            6    Los Angeles           Sparks
## 547              Dallas            6    Los Angeles           Sparks
## 548              Dallas            6    Los Angeles           Sparks
## 549              Dallas            6    Los Angeles           Sparks
## 550              Dallas            6    Los Angeles           Sparks
## 551              Dallas            6    Los Angeles           Sparks
## 552              Dallas            6    Los Angeles           Sparks
## 553              Dallas            6    Los Angeles           Sparks
## 554              Dallas            6    Los Angeles           Sparks
## 555              Dallas            6    Los Angeles           Sparks
## 556              Dallas            6    Los Angeles           Sparks
## 557              Dallas            6    Los Angeles           Sparks
## 558              Dallas            6    Los Angeles           Sparks
## 559              Dallas            6    Los Angeles           Sparks
## 560              Dallas            6    Los Angeles           Sparks
## 561              Dallas            6    Los Angeles           Sparks
## 562              Dallas            6    Los Angeles           Sparks
## 563              Dallas            6    Los Angeles           Sparks
## 564              Dallas            6    Los Angeles           Sparks
## 565              Dallas            6    Los Angeles           Sparks
## 566              Dallas            6    Los Angeles           Sparks
## 567              Dallas            6    Los Angeles           Sparks
## 568              Dallas            6    Los Angeles           Sparks
## 569              Dallas            6    Los Angeles           Sparks
## 570              Dallas            6    Los Angeles           Sparks
## 571              Dallas            6    Los Angeles           Sparks
## 572              Dallas            6    Los Angeles           Sparks
## 573              Dallas            6    Los Angeles           Sparks
## 574              Dallas            6    Los Angeles           Sparks
## 575              Dallas            6    Los Angeles           Sparks
## 576              Dallas            6    Los Angeles           Sparks
## 577              Dallas            6    Los Angeles           Sparks
## 578              Dallas            6    Los Angeles           Sparks
## 579              Dallas            6    Los Angeles           Sparks
## 580              Dallas            6    Los Angeles           Sparks
## 581              Dallas            6    Los Angeles           Sparks
## 582              Dallas            6    Los Angeles           Sparks
## 583              Dallas            6    Los Angeles           Sparks
## 584              Dallas            6    Los Angeles           Sparks
## 585              Dallas            6    Los Angeles           Sparks
## 586              Dallas            6    Los Angeles           Sparks
## 587              Dallas            6    Los Angeles           Sparks
## 588              Dallas            6    Los Angeles           Sparks
## 589              Dallas            6    Los Angeles           Sparks
## 590              Dallas            6    Los Angeles           Sparks
## 591              Dallas            6    Los Angeles           Sparks
## 592              Dallas            6    Los Angeles           Sparks
## 593              Dallas            6    Los Angeles           Sparks
## 594              Dallas            6    Los Angeles           Sparks
## 595              Dallas            6    Los Angeles           Sparks
## 596              Dallas            6    Los Angeles           Sparks
## 597              Dallas            6    Los Angeles           Sparks
## 598              Dallas            6    Los Angeles           Sparks
## 599              Dallas            6    Los Angeles           Sparks
## 600              Dallas            6    Los Angeles           Sparks
## 601              Dallas            6    Los Angeles           Sparks
## 602              Dallas            6    Los Angeles           Sparks
## 603              Dallas            6    Los Angeles           Sparks
## 604              Dallas            6    Los Angeles           Sparks
## 605              Dallas            6    Los Angeles           Sparks
## 606              Dallas            6    Los Angeles           Sparks
## 607              Dallas            6    Los Angeles           Sparks
## 608              Dallas            6    Los Angeles           Sparks
## 609              Dallas            6    Los Angeles           Sparks
## 610              Dallas            6    Los Angeles           Sparks
## 611              Dallas            6    Los Angeles           Sparks
## 612              Dallas            6    Los Angeles           Sparks
## 613              Dallas            6    Los Angeles           Sparks
## 614              Dallas            6    Los Angeles           Sparks
## 615              Dallas            6    Los Angeles           Sparks
## 616              Dallas            6    Los Angeles           Sparks
## 617              Dallas            6    Los Angeles           Sparks
## 618              Dallas            6    Los Angeles           Sparks
## 619              Dallas            6    Los Angeles           Sparks
## 620              Dallas            6    Los Angeles           Sparks
## 621              Dallas            6    Los Angeles           Sparks
## 622              Dallas            6    Los Angeles           Sparks
## 623              Dallas            6    Los Angeles           Sparks
## 624              Dallas            6    Los Angeles           Sparks
## 625              Dallas            6    Los Angeles           Sparks
## 626              Dallas            6    Los Angeles           Sparks
## 627              Dallas            6    Los Angeles           Sparks
## 628              Dallas            6    Los Angeles           Sparks
## 629              Dallas            6    Los Angeles           Sparks
## 630              Dallas            6    Los Angeles           Sparks
## 631              Dallas            6    Los Angeles           Sparks
## 632              Dallas            6    Los Angeles           Sparks
## 633              Dallas            6    Los Angeles           Sparks
## 634              Dallas            6    Los Angeles           Sparks
## 635              Dallas            6    Los Angeles           Sparks
## 636              Dallas            6    Los Angeles           Sparks
## 637              Dallas            6    Los Angeles           Sparks
## 638              Dallas            6    Los Angeles           Sparks
## 639              Dallas            6    Los Angeles           Sparks
## 640              Dallas            6    Los Angeles           Sparks
## 641              Dallas            6    Los Angeles           Sparks
## 642              Dallas            6    Los Angeles           Sparks
## 643              Dallas            6    Los Angeles           Sparks
## 644              Dallas            6    Los Angeles           Sparks
## 645              Dallas            6    Los Angeles           Sparks
## 646              Dallas            6    Los Angeles           Sparks
## 647              Dallas            6    Los Angeles           Sparks
## 648              Dallas            6    Los Angeles           Sparks
## 649              Dallas            6    Los Angeles           Sparks
## 650              Dallas            6    Los Angeles           Sparks
## 651              Dallas            6    Los Angeles           Sparks
## 652              Dallas            6    Los Angeles           Sparks
## 653              Dallas            6    Los Angeles           Sparks
## 654              Dallas            6    Los Angeles           Sparks
## 655              Dallas            6    Los Angeles           Sparks
## 656              Dallas            6    Los Angeles           Sparks
## 657              Dallas            6    Los Angeles           Sparks
## 658              Dallas            6    Los Angeles           Sparks
## 659              Dallas            6    Los Angeles           Sparks
## 660              Dallas            6    Los Angeles           Sparks
## 661              Dallas            6    Los Angeles           Sparks
## 662              Dallas            6    Los Angeles           Sparks
## 663              Dallas            6    Los Angeles           Sparks
## 664              Dallas            6    Los Angeles           Sparks
## 665              Dallas            6    Los Angeles           Sparks
## 666              Dallas            6    Los Angeles           Sparks
## 667              Dallas            6    Los Angeles           Sparks
## 668              Dallas            6    Los Angeles           Sparks
## 669              Dallas            6    Los Angeles           Sparks
## 670              Dallas            6    Los Angeles           Sparks
## 671              Dallas            6    Los Angeles           Sparks
## 672              Dallas            6    Los Angeles           Sparks
## 673              Dallas            6    Los Angeles           Sparks
## 674              Dallas            6    Los Angeles           Sparks
## 675              Dallas            6    Los Angeles           Sparks
## 676              Dallas            6    Los Angeles           Sparks
## 677              Dallas            6    Los Angeles           Sparks
## 678              Dallas            6    Los Angeles           Sparks
## 679              Dallas            6    Los Angeles           Sparks
## 680              Dallas            6    Los Angeles           Sparks
## 681              Dallas            6    Los Angeles           Sparks
## 682              Dallas            6    Los Angeles           Sparks
## 683              Dallas            6    Los Angeles           Sparks
## 684              Dallas            6    Los Angeles           Sparks
## 685              Dallas            6    Los Angeles           Sparks
## 686              Dallas            6    Los Angeles           Sparks
## 687              Dallas            6    Los Angeles           Sparks
## 688              Dallas            6    Los Angeles           Sparks
## 689              Dallas            6    Los Angeles           Sparks
## 690              Dallas            6    Los Angeles           Sparks
## 691              Dallas            6    Los Angeles           Sparks
## 692              Dallas            6    Los Angeles           Sparks
## 693              Dallas            6    Los Angeles           Sparks
## 694              Dallas            6    Los Angeles           Sparks
## 695              Dallas            6    Los Angeles           Sparks
## 696              Dallas            6    Los Angeles           Sparks
## 697              Dallas            6    Los Angeles           Sparks
## 698              Dallas            6    Los Angeles           Sparks
## 699              Dallas            6    Los Angeles           Sparks
## 700              Dallas            6    Los Angeles           Sparks
## 701              Dallas            6    Los Angeles           Sparks
## 702              Dallas            6    Los Angeles           Sparks
## 703              Dallas            6    Los Angeles           Sparks
## 704              Dallas            6    Los Angeles           Sparks
## 705              Dallas            6    Los Angeles           Sparks
## 706              Dallas            6    Los Angeles           Sparks
## 707              Dallas            6    Los Angeles           Sparks
## 708              Dallas            6    Los Angeles           Sparks
## 709              Dallas            6    Los Angeles           Sparks
## 710              Dallas            6    Los Angeles           Sparks
## 711              Dallas            6    Los Angeles           Sparks
## 712             Chicago           16     Washington          Mystics
## 713             Chicago           16     Washington          Mystics
## 714             Chicago           16     Washington          Mystics
## 715             Chicago           16     Washington          Mystics
## 716             Chicago           16     Washington          Mystics
## 717             Chicago           16     Washington          Mystics
## 718             Chicago           16     Washington          Mystics
## 719             Chicago           16     Washington          Mystics
## 720             Chicago           16     Washington          Mystics
## 721             Chicago           16     Washington          Mystics
## 722             Chicago           16     Washington          Mystics
## 723             Chicago           16     Washington          Mystics
## 724             Chicago           16     Washington          Mystics
## 725             Chicago           16     Washington          Mystics
## 726             Chicago           16     Washington          Mystics
## 727             Chicago           16     Washington          Mystics
## 728             Chicago           16     Washington          Mystics
## 729             Chicago           16     Washington          Mystics
## 730             Chicago           16     Washington          Mystics
## 731             Chicago           16     Washington          Mystics
## 732             Chicago           16     Washington          Mystics
## 733             Chicago           16     Washington          Mystics
## 734             Chicago           16     Washington          Mystics
## 735             Chicago           16     Washington          Mystics
## 736             Chicago           16     Washington          Mystics
## 737             Chicago           16     Washington          Mystics
## 738             Chicago           16     Washington          Mystics
## 739             Chicago           16     Washington          Mystics
## 740             Chicago           16     Washington          Mystics
## 741             Chicago           16     Washington          Mystics
## 742             Chicago           16     Washington          Mystics
## 743             Chicago           16     Washington          Mystics
## 744             Chicago           16     Washington          Mystics
## 745             Chicago           16     Washington          Mystics
## 746             Chicago           16     Washington          Mystics
## 747             Chicago           16     Washington          Mystics
## 748             Chicago           16     Washington          Mystics
## 749             Chicago           16     Washington          Mystics
## 750             Chicago           16     Washington          Mystics
## 751             Chicago           16     Washington          Mystics
## 752             Chicago           16     Washington          Mystics
## 753             Chicago           16     Washington          Mystics
## 754             Chicago           16     Washington          Mystics
## 755             Chicago           16     Washington          Mystics
## 756             Chicago           16     Washington          Mystics
## 757             Chicago           16     Washington          Mystics
## 758             Chicago           16     Washington          Mystics
## 759             Chicago           16     Washington          Mystics
## 760             Chicago           16     Washington          Mystics
## 761             Chicago           16     Washington          Mystics
## 762             Chicago           16     Washington          Mystics
## 763             Chicago           16     Washington          Mystics
## 764             Chicago           16     Washington          Mystics
## 765             Chicago           16     Washington          Mystics
## 766             Chicago           16     Washington          Mystics
## 767             Chicago           16     Washington          Mystics
## 768             Chicago           16     Washington          Mystics
## 769             Chicago           16     Washington          Mystics
## 770             Chicago           16     Washington          Mystics
## 771             Chicago           16     Washington          Mystics
## 772             Chicago           16     Washington          Mystics
## 773             Chicago           16     Washington          Mystics
## 774             Chicago           16     Washington          Mystics
## 775             Chicago           16     Washington          Mystics
## 776             Chicago           16     Washington          Mystics
## 777             Chicago           16     Washington          Mystics
## 778             Chicago           16     Washington          Mystics
## 779             Chicago           16     Washington          Mystics
## 780             Chicago           16     Washington          Mystics
## 781             Chicago           16     Washington          Mystics
## 782             Chicago           16     Washington          Mystics
## 783             Chicago           16     Washington          Mystics
## 784             Chicago           16     Washington          Mystics
## 785             Chicago           16     Washington          Mystics
## 786             Chicago           16     Washington          Mystics
## 787             Chicago           16     Washington          Mystics
## 788             Chicago           16     Washington          Mystics
## 789             Chicago           16     Washington          Mystics
## 790             Chicago           16     Washington          Mystics
## 791             Chicago           16     Washington          Mystics
## 792             Chicago           16     Washington          Mystics
## 793             Chicago           16     Washington          Mystics
## 794             Chicago           16     Washington          Mystics
## 795             Chicago           16     Washington          Mystics
## 796             Chicago           16     Washington          Mystics
## 797             Chicago           16     Washington          Mystics
## 798             Chicago           16     Washington          Mystics
## 799             Chicago           16     Washington          Mystics
## 800             Chicago           16     Washington          Mystics
## 801             Chicago           16     Washington          Mystics
## 802             Chicago           16     Washington          Mystics
## 803             Chicago           16     Washington          Mystics
## 804             Chicago           16     Washington          Mystics
## 805             Chicago           16     Washington          Mystics
## 806             Chicago           16     Washington          Mystics
## 807             Chicago           16     Washington          Mystics
## 808             Chicago           16     Washington          Mystics
## 809             Chicago           16     Washington          Mystics
## 810             Chicago           16     Washington          Mystics
## 811             Chicago           16     Washington          Mystics
## 812             Chicago           16     Washington          Mystics
## 813             Chicago           16     Washington          Mystics
## 814             Chicago           16     Washington          Mystics
## 815             Chicago           16     Washington          Mystics
## 816             Chicago           16     Washington          Mystics
## 817             Chicago           16     Washington          Mystics
## 818             Chicago           16     Washington          Mystics
## 819             Chicago           16     Washington          Mystics
## 820             Chicago           16     Washington          Mystics
## 821             Chicago           16     Washington          Mystics
## 822             Chicago           16     Washington          Mystics
## 823             Chicago           16     Washington          Mystics
## 824             Chicago           16     Washington          Mystics
## 825             Chicago           16     Washington          Mystics
## 826             Chicago           16     Washington          Mystics
## 827             Chicago           16     Washington          Mystics
## 828             Chicago           16     Washington          Mystics
## 829             Chicago           16     Washington          Mystics
## 830             Chicago           16     Washington          Mystics
## 831             Chicago           16     Washington          Mystics
## 832             Chicago           16     Washington          Mystics
## 833             Chicago           16     Washington          Mystics
## 834             Chicago           16     Washington          Mystics
## 835             Chicago           16     Washington          Mystics
## 836             Chicago           16     Washington          Mystics
## 837             Chicago           16     Washington          Mystics
## 838             Chicago           16     Washington          Mystics
## 839             Chicago           16     Washington          Mystics
## 840             Chicago           16     Washington          Mystics
## 841             Chicago           16     Washington          Mystics
## 842             Chicago           16     Washington          Mystics
## 843             Chicago           16     Washington          Mystics
## 844             Chicago           16     Washington          Mystics
## 845             Chicago           16     Washington          Mystics
## 846             Chicago           16     Washington          Mystics
## 847             Chicago           16     Washington          Mystics
## 848             Chicago           16     Washington          Mystics
## 849             Chicago           16     Washington          Mystics
## 850             Chicago           16     Washington          Mystics
## 851             Chicago           16     Washington          Mystics
## 852             Chicago           16     Washington          Mystics
## 853             Chicago           16     Washington          Mystics
## 854             Chicago           16     Washington          Mystics
## 855             Chicago           16     Washington          Mystics
## 856             Chicago           16     Washington          Mystics
## 857             Chicago           16     Washington          Mystics
## 858             Chicago           16     Washington          Mystics
## 859             Chicago           16     Washington          Mystics
## 860             Chicago           16     Washington          Mystics
## 861             Chicago           16     Washington          Mystics
## 862             Chicago           16     Washington          Mystics
## 863             Chicago           16     Washington          Mystics
## 864             Chicago           16     Washington          Mystics
## 865             Chicago           16     Washington          Mystics
## 866             Chicago           16     Washington          Mystics
## 867             Chicago           16     Washington          Mystics
## 868             Chicago           16     Washington          Mystics
## 869             Chicago           16     Washington          Mystics
## 870             Chicago           16     Washington          Mystics
## 871             Chicago           16     Washington          Mystics
## 872             Chicago           16     Washington          Mystics
## 873             Chicago           16     Washington          Mystics
## 874             Chicago           16     Washington          Mystics
## 875             Chicago           16     Washington          Mystics
## 876             Chicago           16     Washington          Mystics
## 877             Chicago           16     Washington          Mystics
## 878             Chicago           16     Washington          Mystics
## 879             Chicago           16     Washington          Mystics
## 880             Chicago           16     Washington          Mystics
## 881             Chicago           16     Washington          Mystics
## 882             Chicago           16     Washington          Mystics
## 883             Chicago           16     Washington          Mystics
## 884           Las Vegas           14        Seattle            Storm
## 885           Las Vegas           14        Seattle            Storm
## 886           Las Vegas           14        Seattle            Storm
## 887           Las Vegas           14        Seattle            Storm
## 888           Las Vegas           14        Seattle            Storm
## 889           Las Vegas           14        Seattle            Storm
## 890           Las Vegas           14        Seattle            Storm
## 891           Las Vegas           14        Seattle            Storm
## 892           Las Vegas           14        Seattle            Storm
## 893           Las Vegas           14        Seattle            Storm
## 894           Las Vegas           14        Seattle            Storm
## 895           Las Vegas           14        Seattle            Storm
## 896           Las Vegas           14        Seattle            Storm
## 897           Las Vegas           14        Seattle            Storm
## 898           Las Vegas           14        Seattle            Storm
## 899           Las Vegas           14        Seattle            Storm
## 900           Las Vegas           14        Seattle            Storm
## 901           Las Vegas           14        Seattle            Storm
## 902           Las Vegas           14        Seattle            Storm
## 903           Las Vegas           14        Seattle            Storm
## 904           Las Vegas           14        Seattle            Storm
## 905           Las Vegas           14        Seattle            Storm
## 906           Las Vegas           14        Seattle            Storm
## 907           Las Vegas           14        Seattle            Storm
## 908           Las Vegas           14        Seattle            Storm
## 909           Las Vegas           14        Seattle            Storm
## 910           Las Vegas           14        Seattle            Storm
## 911           Las Vegas           14        Seattle            Storm
## 912           Las Vegas           14        Seattle            Storm
## 913           Las Vegas           14        Seattle            Storm
## 914           Las Vegas           14        Seattle            Storm
## 915           Las Vegas           14        Seattle            Storm
## 916           Las Vegas           14        Seattle            Storm
## 917           Las Vegas           14        Seattle            Storm
## 918           Las Vegas           14        Seattle            Storm
## 919           Las Vegas           14        Seattle            Storm
## 920           Las Vegas           14        Seattle            Storm
## 921           Las Vegas           14        Seattle            Storm
## 922           Las Vegas           14        Seattle            Storm
## 923           Las Vegas           14        Seattle            Storm
## 924           Las Vegas           14        Seattle            Storm
## 925           Las Vegas           14        Seattle            Storm
## 926           Las Vegas           14        Seattle            Storm
## 927           Las Vegas           14        Seattle            Storm
## 928           Las Vegas           14        Seattle            Storm
## 929           Las Vegas           14        Seattle            Storm
## 930           Las Vegas           14        Seattle            Storm
## 931           Las Vegas           14        Seattle            Storm
## 932           Las Vegas           14        Seattle            Storm
## 933           Las Vegas           14        Seattle            Storm
## 934           Las Vegas           14        Seattle            Storm
## 935           Las Vegas           14        Seattle            Storm
## 936           Las Vegas           14        Seattle            Storm
## 937           Las Vegas           14        Seattle            Storm
## 938           Las Vegas           14        Seattle            Storm
## 939           Las Vegas           14        Seattle            Storm
## 940           Las Vegas           14        Seattle            Storm
## 941           Las Vegas           14        Seattle            Storm
## 942           Las Vegas           14        Seattle            Storm
## 943           Las Vegas           14        Seattle            Storm
## 944           Las Vegas           14        Seattle            Storm
## 945           Las Vegas           14        Seattle            Storm
## 946           Las Vegas           14        Seattle            Storm
## 947           Las Vegas           14        Seattle            Storm
## 948           Las Vegas           14        Seattle            Storm
## 949           Las Vegas           14        Seattle            Storm
## 950           Las Vegas           14        Seattle            Storm
## 951           Las Vegas           14        Seattle            Storm
## 952           Las Vegas           14        Seattle            Storm
## 953           Las Vegas           14        Seattle            Storm
## 954           Las Vegas           14        Seattle            Storm
## 955           Las Vegas           14        Seattle            Storm
## 956           Las Vegas           14        Seattle            Storm
## 957           Las Vegas           14        Seattle            Storm
## 958           Las Vegas           14        Seattle            Storm
## 959           Las Vegas           14        Seattle            Storm
## 960           Las Vegas           14        Seattle            Storm
## 961           Las Vegas           14        Seattle            Storm
## 962           Las Vegas           14        Seattle            Storm
## 963           Las Vegas           14        Seattle            Storm
## 964           Las Vegas           14        Seattle            Storm
## 965           Las Vegas           14        Seattle            Storm
## 966           Las Vegas           14        Seattle            Storm
## 967           Las Vegas           14        Seattle            Storm
## 968           Las Vegas           14        Seattle            Storm
## 969           Las Vegas           14        Seattle            Storm
## 970           Las Vegas           14        Seattle            Storm
## 971           Las Vegas           14        Seattle            Storm
## 972           Las Vegas           14        Seattle            Storm
## 973           Las Vegas           14        Seattle            Storm
## 974           Las Vegas           14        Seattle            Storm
## 975           Las Vegas           14        Seattle            Storm
## 976           Las Vegas           14        Seattle            Storm
## 977           Las Vegas           14        Seattle            Storm
## 978           Las Vegas           14        Seattle            Storm
## 979           Las Vegas           14        Seattle            Storm
## 980           Las Vegas           14        Seattle            Storm
## 981           Las Vegas           14        Seattle            Storm
## 982           Las Vegas           14        Seattle            Storm
## 983           Las Vegas           14        Seattle            Storm
## 984           Las Vegas           14        Seattle            Storm
## 985           Las Vegas           14        Seattle            Storm
## 986           Las Vegas           14        Seattle            Storm
## 987           Las Vegas           14        Seattle            Storm
## 988           Las Vegas           14        Seattle            Storm
## 989           Las Vegas           14        Seattle            Storm
## 990           Las Vegas           14        Seattle            Storm
## 991           Las Vegas           14        Seattle            Storm
## 992           Las Vegas           14        Seattle            Storm
## 993           Las Vegas           14        Seattle            Storm
## 994           Las Vegas           14        Seattle            Storm
## 995           Las Vegas           14        Seattle            Storm
## 996           Las Vegas           14        Seattle            Storm
## 997           Las Vegas           14        Seattle            Storm
## 998           Las Vegas           14        Seattle            Storm
## 999           Las Vegas           14        Seattle            Storm
## 1000          Las Vegas           14        Seattle            Storm
## 1001          Las Vegas           14        Seattle            Storm
## 1002          Las Vegas           14        Seattle            Storm
## 1003          Las Vegas           14        Seattle            Storm
## 1004          Las Vegas           14        Seattle            Storm
## 1005          Las Vegas           14        Seattle            Storm
## 1006          Las Vegas           14        Seattle            Storm
## 1007          Las Vegas           14        Seattle            Storm
## 1008          Las Vegas           14        Seattle            Storm
## 1009          Las Vegas           14        Seattle            Storm
## 1010          Las Vegas           14        Seattle            Storm
## 1011          Las Vegas           14        Seattle            Storm
## 1012          Las Vegas           14        Seattle            Storm
## 1013          Las Vegas           14        Seattle            Storm
## 1014          Las Vegas           14        Seattle            Storm
## 1015          Las Vegas           14        Seattle            Storm
## 1016          Las Vegas           14        Seattle            Storm
## 1017          Las Vegas           14        Seattle            Storm
## 1018          Las Vegas           14        Seattle            Storm
## 1019          Las Vegas           14        Seattle            Storm
## 1020          Las Vegas           14        Seattle            Storm
## 1021          Las Vegas           14        Seattle            Storm
## 1022          Las Vegas           14        Seattle            Storm
## 1023          Las Vegas           14        Seattle            Storm
## 1024          Las Vegas           14        Seattle            Storm
## 1025          Las Vegas           14        Seattle            Storm
## 1026          Las Vegas           14        Seattle            Storm
## 1027          Las Vegas           14        Seattle            Storm
## 1028          Las Vegas           14        Seattle            Storm
## 1029          Las Vegas           14        Seattle            Storm
## 1030          Las Vegas           14        Seattle            Storm
## 1031          Las Vegas           14        Seattle            Storm
## 1032          Las Vegas           14        Seattle            Storm
## 1033          Las Vegas           14        Seattle            Storm
## 1034          Las Vegas           14        Seattle            Storm
## 1035          Las Vegas           14        Seattle            Storm
## 1036          Las Vegas           14        Seattle            Storm
## 1037          Las Vegas           14        Seattle            Storm
## 1038          Las Vegas           14        Seattle            Storm
## 1039          Las Vegas           14        Seattle            Storm
## 1040          Las Vegas           14        Seattle            Storm
## 1041          Las Vegas           14        Seattle            Storm
## 1042          Las Vegas           14        Seattle            Storm
## 1043          Las Vegas           14        Seattle            Storm
## 1044          Las Vegas           14        Seattle            Storm
## 1045          Las Vegas           14        Seattle            Storm
## 1046          Las Vegas           14        Seattle            Storm
## 1047          Las Vegas           14        Seattle            Storm
## 1048          Las Vegas           14        Seattle            Storm
## 1049          Las Vegas           14        Seattle            Storm
## 1050          Las Vegas           14        Seattle            Storm
## 1051          Las Vegas           14        Seattle            Storm
## 1052          Las Vegas           14        Seattle            Storm
## 1053          Las Vegas           14        Seattle            Storm
## 1054          Las Vegas           14        Seattle            Storm
## 1055          Las Vegas           14        Seattle            Storm
## 1056          Las Vegas           14        Seattle            Storm
## 1057          Las Vegas           14        Seattle            Storm
## 1058          Las Vegas           14        Seattle            Storm
## 1059          Las Vegas           14        Seattle            Storm
## 1060          Las Vegas           14        Seattle            Storm
## 1061          Las Vegas           14        Seattle            Storm
## 1062          Las Vegas           14        Seattle            Storm
## 1063          Las Vegas           14        Seattle            Storm
## 1064           New York            5        Indiana            Fever
## 1065           New York            5        Indiana            Fever
## 1066           New York            5        Indiana            Fever
## 1067           New York            5        Indiana            Fever
## 1068           New York            5        Indiana            Fever
## 1069           New York            5        Indiana            Fever
## 1070           New York            5        Indiana            Fever
## 1071           New York            5        Indiana            Fever
## 1072           New York            5        Indiana            Fever
## 1073           New York            5        Indiana            Fever
## 1074           New York            5        Indiana            Fever
## 1075           New York            5        Indiana            Fever
## 1076           New York            5        Indiana            Fever
## 1077           New York            5        Indiana            Fever
## 1078           New York            5        Indiana            Fever
## 1079           New York            5        Indiana            Fever
## 1080           New York            5        Indiana            Fever
## 1081           New York            5        Indiana            Fever
## 1082           New York            5        Indiana            Fever
## 1083           New York            5        Indiana            Fever
## 1084           New York            5        Indiana            Fever
## 1085           New York            5        Indiana            Fever
## 1086           New York            5        Indiana            Fever
## 1087           New York            5        Indiana            Fever
## 1088           New York            5        Indiana            Fever
## 1089           New York            5        Indiana            Fever
## 1090           New York            5        Indiana            Fever
## 1091           New York            5        Indiana            Fever
## 1092           New York            5        Indiana            Fever
## 1093           New York            5        Indiana            Fever
## 1094           New York            5        Indiana            Fever
## 1095           New York            5        Indiana            Fever
## 1096           New York            5        Indiana            Fever
## 1097           New York            5        Indiana            Fever
## 1098           New York            5        Indiana            Fever
## 1099           New York            5        Indiana            Fever
## 1100           New York            5        Indiana            Fever
## 1101           New York            5        Indiana            Fever
## 1102           New York            5        Indiana            Fever
## 1103           New York            5        Indiana            Fever
## 1104           New York            5        Indiana            Fever
## 1105           New York            5        Indiana            Fever
## 1106           New York            5        Indiana            Fever
## 1107           New York            5        Indiana            Fever
## 1108           New York            5        Indiana            Fever
## 1109           New York            5        Indiana            Fever
## 1110           New York            5        Indiana            Fever
## 1111           New York            5        Indiana            Fever
## 1112           New York            5        Indiana            Fever
## 1113           New York            5        Indiana            Fever
## 1114           New York            5        Indiana            Fever
## 1115           New York            5        Indiana            Fever
## 1116           New York            5        Indiana            Fever
## 1117           New York            5        Indiana            Fever
## 1118           New York            5        Indiana            Fever
## 1119           New York            5        Indiana            Fever
## 1120           New York            5        Indiana            Fever
## 1121           New York            5        Indiana            Fever
## 1122           New York            5        Indiana            Fever
## 1123           New York            5        Indiana            Fever
## 1124           New York            5        Indiana            Fever
## 1125           New York            5        Indiana            Fever
## 1126           New York            5        Indiana            Fever
## 1127           New York            5        Indiana            Fever
## 1128           New York            5        Indiana            Fever
## 1129           New York            5        Indiana            Fever
## 1130           New York            5        Indiana            Fever
## 1131           New York            5        Indiana            Fever
## 1132           New York            5        Indiana            Fever
## 1133           New York            5        Indiana            Fever
## 1134           New York            5        Indiana            Fever
## 1135           New York            5        Indiana            Fever
## 1136           New York            5        Indiana            Fever
## 1137           New York            5        Indiana            Fever
## 1138           New York            5        Indiana            Fever
## 1139           New York            5        Indiana            Fever
## 1140           New York            5        Indiana            Fever
## 1141           New York            5        Indiana            Fever
## 1142           New York            5        Indiana            Fever
## 1143           New York            5        Indiana            Fever
## 1144           New York            5        Indiana            Fever
## 1145           New York            5        Indiana            Fever
## 1146           New York            5        Indiana            Fever
## 1147           New York            5        Indiana            Fever
## 1148           New York            5        Indiana            Fever
## 1149           New York            5        Indiana            Fever
## 1150           New York            5        Indiana            Fever
## 1151           New York            5        Indiana            Fever
## 1152           New York            5        Indiana            Fever
## 1153           New York            5        Indiana            Fever
## 1154           New York            5        Indiana            Fever
## 1155           New York            5        Indiana            Fever
## 1156           New York            5        Indiana            Fever
## 1157           New York            5        Indiana            Fever
## 1158           New York            5        Indiana            Fever
## 1159           New York            5        Indiana            Fever
## 1160           New York            5        Indiana            Fever
## 1161           New York            5        Indiana            Fever
## 1162           New York            5        Indiana            Fever
## 1163           New York            5        Indiana            Fever
## 1164           New York            5        Indiana            Fever
## 1165           New York            5        Indiana            Fever
## 1166           New York            5        Indiana            Fever
## 1167           New York            5        Indiana            Fever
## 1168           New York            5        Indiana            Fever
## 1169           New York            5        Indiana            Fever
## 1170           New York            5        Indiana            Fever
## 1171           New York            5        Indiana            Fever
## 1172           New York            5        Indiana            Fever
## 1173           New York            5        Indiana            Fever
## 1174           New York            5        Indiana            Fever
## 1175           New York            5        Indiana            Fever
## 1176           New York            5        Indiana            Fever
## 1177           New York            5        Indiana            Fever
## 1178           New York            5        Indiana            Fever
## 1179           New York            5        Indiana            Fever
## 1180           New York            5        Indiana            Fever
## 1181           New York            5        Indiana            Fever
## 1182           New York            5        Indiana            Fever
## 1183           New York            5        Indiana            Fever
## 1184           New York            5        Indiana            Fever
## 1185           New York            5        Indiana            Fever
## 1186           New York            5        Indiana            Fever
## 1187           New York            5        Indiana            Fever
## 1188           New York            5        Indiana            Fever
## 1189           New York            5        Indiana            Fever
## 1190           New York            5        Indiana            Fever
## 1191           New York            5        Indiana            Fever
## 1192           New York            5        Indiana            Fever
## 1193           New York            5        Indiana            Fever
## 1194           New York            5        Indiana            Fever
## 1195           New York            5        Indiana            Fever
## 1196           New York            5        Indiana            Fever
## 1197           New York            5        Indiana            Fever
## 1198           New York            5        Indiana            Fever
## 1199           New York            5        Indiana            Fever
## 1200           New York            5        Indiana            Fever
## 1201           New York            5        Indiana            Fever
## 1202           New York            5        Indiana            Fever
## 1203           New York            5        Indiana            Fever
## 1204           New York            5        Indiana            Fever
## 1205           New York            5        Indiana            Fever
## 1206           New York            5        Indiana            Fever
## 1207           New York            5        Indiana            Fever
## 1208           New York            5        Indiana            Fever
## 1209           New York            5        Indiana            Fever
## 1210           New York            5        Indiana            Fever
## 1211           New York            5        Indiana            Fever
## 1212           New York            5        Indiana            Fever
## 1213           New York            5        Indiana            Fever
## 1214           New York            5        Indiana            Fever
## 1215           New York            5        Indiana            Fever
## 1216           New York            5        Indiana            Fever
## 1217           New York            5        Indiana            Fever
## 1218           New York            5        Indiana            Fever
## 1219           New York            5        Indiana            Fever
## 1220           New York            5        Indiana            Fever
## 1221           New York            5        Indiana            Fever
## 1222           New York            5        Indiana            Fever
## 1223           New York            5        Indiana            Fever
## 1224           New York            5        Indiana            Fever
## 1225           New York            5        Indiana            Fever
## 1226           New York            5        Indiana            Fever
## 1227           New York            5        Indiana            Fever
## 1228           New York            5        Indiana            Fever
## 1229           New York            5        Indiana            Fever
## 1230           New York            5        Indiana            Fever
## 1231           New York            5        Indiana            Fever
## 1232           New York            5        Indiana            Fever
## 1233           New York            5        Indiana            Fever
## 1234           New York            5        Indiana            Fever
## 1235           New York            5        Indiana            Fever
## 1236           New York            5        Indiana            Fever
## 1237           New York            5        Indiana            Fever
## 1238           New York            5        Indiana            Fever
## 1239           New York            5        Indiana            Fever
## 1240            Phoenix           18    Connecticut              Sun
## 1241            Phoenix           18    Connecticut              Sun
## 1242            Phoenix           18    Connecticut              Sun
## 1243            Phoenix           18    Connecticut              Sun
## 1244            Phoenix           18    Connecticut              Sun
## 1245            Phoenix           18    Connecticut              Sun
## 1246            Phoenix           18    Connecticut              Sun
## 1247            Phoenix           18    Connecticut              Sun
## 1248            Phoenix           18    Connecticut              Sun
## 1249            Phoenix           18    Connecticut              Sun
## 1250            Phoenix           18    Connecticut              Sun
## 1251            Phoenix           18    Connecticut              Sun
## 1252            Phoenix           18    Connecticut              Sun
## 1253            Phoenix           18    Connecticut              Sun
## 1254            Phoenix           18    Connecticut              Sun
## 1255            Phoenix           18    Connecticut              Sun
## 1256            Phoenix           18    Connecticut              Sun
## 1257            Phoenix           18    Connecticut              Sun
## 1258            Phoenix           18    Connecticut              Sun
## 1259            Phoenix           18    Connecticut              Sun
## 1260            Phoenix           18    Connecticut              Sun
## 1261            Phoenix           18    Connecticut              Sun
## 1262            Phoenix           18    Connecticut              Sun
## 1263            Phoenix           18    Connecticut              Sun
## 1264            Phoenix           18    Connecticut              Sun
## 1265            Phoenix           18    Connecticut              Sun
## 1266            Phoenix           18    Connecticut              Sun
## 1267            Phoenix           18    Connecticut              Sun
## 1268            Phoenix           18    Connecticut              Sun
## 1269            Phoenix           18    Connecticut              Sun
## 1270            Phoenix           18    Connecticut              Sun
## 1271            Phoenix           18    Connecticut              Sun
## 1272            Phoenix           18    Connecticut              Sun
## 1273            Phoenix           18    Connecticut              Sun
## 1274            Phoenix           18    Connecticut              Sun
## 1275            Phoenix           18    Connecticut              Sun
## 1276            Phoenix           18    Connecticut              Sun
## 1277            Phoenix           18    Connecticut              Sun
## 1278            Phoenix           18    Connecticut              Sun
## 1279            Phoenix           18    Connecticut              Sun
## 1280            Phoenix           18    Connecticut              Sun
## 1281            Phoenix           18    Connecticut              Sun
## 1282            Phoenix           18    Connecticut              Sun
## 1283            Phoenix           18    Connecticut              Sun
## 1284            Phoenix           18    Connecticut              Sun
## 1285            Phoenix           18    Connecticut              Sun
## 1286            Phoenix           18    Connecticut              Sun
## 1287            Phoenix           18    Connecticut              Sun
## 1288            Phoenix           18    Connecticut              Sun
## 1289            Phoenix           18    Connecticut              Sun
## 1290            Phoenix           18    Connecticut              Sun
## 1291            Phoenix           18    Connecticut              Sun
## 1292            Phoenix           18    Connecticut              Sun
## 1293            Phoenix           18    Connecticut              Sun
## 1294            Phoenix           18    Connecticut              Sun
## 1295            Phoenix           18    Connecticut              Sun
## 1296            Phoenix           18    Connecticut              Sun
## 1297            Phoenix           18    Connecticut              Sun
## 1298            Phoenix           18    Connecticut              Sun
## 1299            Phoenix           18    Connecticut              Sun
## 1300            Phoenix           18    Connecticut              Sun
## 1301            Phoenix           18    Connecticut              Sun
## 1302            Phoenix           18    Connecticut              Sun
## 1303            Phoenix           18    Connecticut              Sun
## 1304            Phoenix           18    Connecticut              Sun
## 1305            Phoenix           18    Connecticut              Sun
## 1306            Phoenix           18    Connecticut              Sun
## 1307            Phoenix           18    Connecticut              Sun
## 1308            Phoenix           18    Connecticut              Sun
## 1309            Phoenix           18    Connecticut              Sun
## 1310            Phoenix           18    Connecticut              Sun
## 1311            Phoenix           18    Connecticut              Sun
## 1312            Phoenix           18    Connecticut              Sun
## 1313            Phoenix           18    Connecticut              Sun
## 1314            Phoenix           18    Connecticut              Sun
## 1315            Phoenix           18    Connecticut              Sun
## 1316            Phoenix           18    Connecticut              Sun
## 1317            Phoenix           18    Connecticut              Sun
## 1318            Phoenix           18    Connecticut              Sun
## 1319            Phoenix           18    Connecticut              Sun
## 1320            Phoenix           18    Connecticut              Sun
## 1321            Phoenix           18    Connecticut              Sun
## 1322            Phoenix           18    Connecticut              Sun
## 1323            Phoenix           18    Connecticut              Sun
## 1324            Phoenix           18    Connecticut              Sun
## 1325            Phoenix           18    Connecticut              Sun
## 1326            Phoenix           18    Connecticut              Sun
## 1327            Phoenix           18    Connecticut              Sun
## 1328            Phoenix           18    Connecticut              Sun
## 1329            Phoenix           18    Connecticut              Sun
## 1330            Phoenix           18    Connecticut              Sun
## 1331            Phoenix           18    Connecticut              Sun
## 1332            Phoenix           18    Connecticut              Sun
## 1333            Phoenix           18    Connecticut              Sun
## 1334            Phoenix           18    Connecticut              Sun
## 1335            Phoenix           18    Connecticut              Sun
## 1336            Phoenix           18    Connecticut              Sun
## 1337            Phoenix           18    Connecticut              Sun
## 1338            Phoenix           18    Connecticut              Sun
## 1339            Phoenix           18    Connecticut              Sun
## 1340            Phoenix           18    Connecticut              Sun
## 1341            Phoenix           18    Connecticut              Sun
## 1342            Phoenix           18    Connecticut              Sun
## 1343            Phoenix           18    Connecticut              Sun
## 1344            Phoenix           18    Connecticut              Sun
## 1345            Phoenix           18    Connecticut              Sun
## 1346            Phoenix           18    Connecticut              Sun
## 1347            Phoenix           18    Connecticut              Sun
## 1348            Phoenix           18    Connecticut              Sun
## 1349            Phoenix           18    Connecticut              Sun
## 1350            Phoenix           18    Connecticut              Sun
## 1351            Phoenix           18    Connecticut              Sun
## 1352            Phoenix           18    Connecticut              Sun
## 1353            Phoenix           18    Connecticut              Sun
## 1354            Phoenix           18    Connecticut              Sun
## 1355            Phoenix           18    Connecticut              Sun
## 1356            Phoenix           18    Connecticut              Sun
## 1357            Phoenix           18    Connecticut              Sun
## 1358            Phoenix           18    Connecticut              Sun
## 1359            Phoenix           18    Connecticut              Sun
## 1360            Phoenix           18    Connecticut              Sun
## 1361            Phoenix           18    Connecticut              Sun
## 1362            Phoenix           18    Connecticut              Sun
## 1363            Phoenix           18    Connecticut              Sun
## 1364            Phoenix           18    Connecticut              Sun
## 1365            Phoenix           18    Connecticut              Sun
## 1366            Phoenix           18    Connecticut              Sun
## 1367            Phoenix           18    Connecticut              Sun
## 1368            Phoenix           18    Connecticut              Sun
## 1369            Phoenix           18    Connecticut              Sun
## 1370            Phoenix           18    Connecticut              Sun
## 1371            Phoenix           18    Connecticut              Sun
## 1372            Phoenix           18    Connecticut              Sun
## 1373            Phoenix           18    Connecticut              Sun
## 1374            Phoenix           18    Connecticut              Sun
## 1375            Phoenix           18    Connecticut              Sun
## 1376            Phoenix           18    Connecticut              Sun
## 1377            Phoenix           18    Connecticut              Sun
## 1378            Phoenix           18    Connecticut              Sun
## 1379            Phoenix           18    Connecticut              Sun
## 1380            Phoenix           18    Connecticut              Sun
## 1381            Phoenix           18    Connecticut              Sun
## 1382            Phoenix           18    Connecticut              Sun
## 1383            Phoenix           18    Connecticut              Sun
## 1384            Phoenix           18    Connecticut              Sun
## 1385            Phoenix           18    Connecticut              Sun
## 1386            Phoenix           18    Connecticut              Sun
## 1387            Phoenix           18    Connecticut              Sun
## 1388            Phoenix           18    Connecticut              Sun
## 1389            Phoenix           18    Connecticut              Sun
## 1390            Phoenix           18    Connecticut              Sun
## 1391            Phoenix           18    Connecticut              Sun
## 1392            Phoenix           18    Connecticut              Sun
## 1393            Phoenix           18    Connecticut              Sun
## 1394            Phoenix           18    Connecticut              Sun
## 1395            Phoenix           18    Connecticut              Sun
## 1396            Phoenix           18    Connecticut              Sun
## 1397            Phoenix           18    Connecticut              Sun
## 1398            Phoenix           18    Connecticut              Sun
## 1399            Phoenix           18    Connecticut              Sun
## 1400            Phoenix           18    Connecticut              Sun
## 1401            Phoenix           18    Connecticut              Sun
## 1402            Phoenix           18    Connecticut              Sun
## 1403            Phoenix           18    Connecticut              Sun
## 1404            Phoenix           18    Connecticut              Sun
## 1405            Phoenix           18    Connecticut              Sun
## 1406            Phoenix           18    Connecticut              Sun
## 1407            Phoenix           18    Connecticut              Sun
## 1408            Phoenix           18    Connecticut              Sun
## 1409            Phoenix           18    Connecticut              Sun
## 1410            Phoenix           18    Connecticut              Sun
## 1411            Phoenix           18    Connecticut              Sun
## 1412            Phoenix           18    Connecticut              Sun
## 1413            Phoenix           18    Connecticut              Sun
## 1414          Minnesota            9       New York          Liberty
## 1415          Minnesota            9       New York          Liberty
## 1416          Minnesota            9       New York          Liberty
## 1417          Minnesota            9       New York          Liberty
## 1418          Minnesota            9       New York          Liberty
## 1419          Minnesota            9       New York          Liberty
## 1420          Minnesota            9       New York          Liberty
## 1421          Minnesota            9       New York          Liberty
## 1422          Minnesota            9       New York          Liberty
## 1423          Minnesota            9       New York          Liberty
## 1424          Minnesota            9       New York          Liberty
## 1425          Minnesota            9       New York          Liberty
## 1426          Minnesota            9       New York          Liberty
## 1427          Minnesota            9       New York          Liberty
## 1428          Minnesota            9       New York          Liberty
## 1429          Minnesota            9       New York          Liberty
## 1430          Minnesota            9       New York          Liberty
## 1431          Minnesota            9       New York          Liberty
## 1432          Minnesota            9       New York          Liberty
## 1433          Minnesota            9       New York          Liberty
## 1434          Minnesota            9       New York          Liberty
## 1435          Minnesota            9       New York          Liberty
## 1436          Minnesota            9       New York          Liberty
## 1437          Minnesota            9       New York          Liberty
## 1438          Minnesota            9       New York          Liberty
## 1439          Minnesota            9       New York          Liberty
## 1440          Minnesota            9       New York          Liberty
## 1441          Minnesota            9       New York          Liberty
## 1442          Minnesota            9       New York          Liberty
## 1443          Minnesota            9       New York          Liberty
## 1444          Minnesota            9       New York          Liberty
## 1445          Minnesota            9       New York          Liberty
## 1446          Minnesota            9       New York          Liberty
## 1447          Minnesota            9       New York          Liberty
## 1448          Minnesota            9       New York          Liberty
## 1449          Minnesota            9       New York          Liberty
## 1450          Minnesota            9       New York          Liberty
## 1451          Minnesota            9       New York          Liberty
## 1452          Minnesota            9       New York          Liberty
## 1453          Minnesota            9       New York          Liberty
## 1454          Minnesota            9       New York          Liberty
## 1455          Minnesota            9       New York          Liberty
## 1456          Minnesota            9       New York          Liberty
## 1457          Minnesota            9       New York          Liberty
## 1458          Minnesota            9       New York          Liberty
## 1459          Minnesota            9       New York          Liberty
## 1460          Minnesota            9       New York          Liberty
## 1461          Minnesota            9       New York          Liberty
## 1462          Minnesota            9       New York          Liberty
## 1463          Minnesota            9       New York          Liberty
## 1464          Minnesota            9       New York          Liberty
## 1465          Minnesota            9       New York          Liberty
## 1466          Minnesota            9       New York          Liberty
## 1467          Minnesota            9       New York          Liberty
## 1468          Minnesota            9       New York          Liberty
## 1469          Minnesota            9       New York          Liberty
## 1470          Minnesota            9       New York          Liberty
## 1471          Minnesota            9       New York          Liberty
## 1472          Minnesota            9       New York          Liberty
## 1473          Minnesota            9       New York          Liberty
## 1474          Minnesota            9       New York          Liberty
## 1475          Minnesota            9       New York          Liberty
## 1476          Minnesota            9       New York          Liberty
## 1477          Minnesota            9       New York          Liberty
## 1478          Minnesota            9       New York          Liberty
## 1479          Minnesota            9       New York          Liberty
## 1480          Minnesota            9       New York          Liberty
## 1481          Minnesota            9       New York          Liberty
## 1482          Minnesota            9       New York          Liberty
## 1483          Minnesota            9       New York          Liberty
## 1484          Minnesota            9       New York          Liberty
## 1485          Minnesota            9       New York          Liberty
## 1486          Minnesota            9       New York          Liberty
## 1487          Minnesota            9       New York          Liberty
## 1488          Minnesota            9       New York          Liberty
## 1489          Minnesota            9       New York          Liberty
## 1490          Minnesota            9       New York          Liberty
## 1491          Minnesota            9       New York          Liberty
## 1492          Minnesota            9       New York          Liberty
## 1493          Minnesota            9       New York          Liberty
## 1494          Minnesota            9       New York          Liberty
## 1495          Minnesota            9       New York          Liberty
## 1496          Minnesota            9       New York          Liberty
## 1497          Minnesota            9       New York          Liberty
## 1498          Minnesota            9       New York          Liberty
## 1499          Minnesota            9       New York          Liberty
## 1500          Minnesota            9       New York          Liberty
## 1501          Minnesota            9       New York          Liberty
## 1502          Minnesota            9       New York          Liberty
## 1503          Minnesota            9       New York          Liberty
## 1504          Minnesota            9       New York          Liberty
## 1505          Minnesota            9       New York          Liberty
## 1506          Minnesota            9       New York          Liberty
## 1507          Minnesota            9       New York          Liberty
## 1508          Minnesota            9       New York          Liberty
## 1509          Minnesota            9       New York          Liberty
## 1510          Minnesota            9       New York          Liberty
## 1511          Minnesota            9       New York          Liberty
## 1512          Minnesota            9       New York          Liberty
## 1513          Minnesota            9       New York          Liberty
## 1514          Minnesota            9       New York          Liberty
## 1515          Minnesota            9       New York          Liberty
## 1516          Minnesota            9       New York          Liberty
## 1517          Minnesota            9       New York          Liberty
## 1518          Minnesota            9       New York          Liberty
## 1519          Minnesota            9       New York          Liberty
## 1520          Minnesota            9       New York          Liberty
## 1521          Minnesota            9       New York          Liberty
## 1522          Minnesota            9       New York          Liberty
## 1523          Minnesota            9       New York          Liberty
## 1524          Minnesota            9       New York          Liberty
## 1525          Minnesota            9       New York          Liberty
## 1526          Minnesota            9       New York          Liberty
## 1527          Minnesota            9       New York          Liberty
## 1528          Minnesota            9       New York          Liberty
## 1529          Minnesota            9       New York          Liberty
## 1530          Minnesota            9       New York          Liberty
## 1531          Minnesota            9       New York          Liberty
## 1532          Minnesota            9       New York          Liberty
## 1533          Minnesota            9       New York          Liberty
## 1534          Minnesota            9       New York          Liberty
## 1535          Minnesota            9       New York          Liberty
## 1536          Minnesota            9       New York          Liberty
## 1537          Minnesota            9       New York          Liberty
## 1538          Minnesota            9       New York          Liberty
## 1539          Minnesota            9       New York          Liberty
## 1540          Minnesota            9       New York          Liberty
## 1541          Minnesota            9       New York          Liberty
## 1542          Minnesota            9       New York          Liberty
## 1543          Minnesota            9       New York          Liberty
## 1544          Minnesota            9       New York          Liberty
## 1545          Minnesota            9       New York          Liberty
## 1546          Minnesota            9       New York          Liberty
## 1547          Minnesota            9       New York          Liberty
## 1548          Minnesota            9       New York          Liberty
## 1549          Minnesota            9       New York          Liberty
## 1550          Minnesota            9       New York          Liberty
## 1551          Minnesota            9       New York          Liberty
## 1552          Minnesota            9       New York          Liberty
## 1553          Minnesota            9       New York          Liberty
## 1554          Minnesota            9       New York          Liberty
## 1555          Minnesota            9       New York          Liberty
## 1556          Minnesota            9       New York          Liberty
## 1557          Minnesota            9       New York          Liberty
## 1558          Minnesota            9       New York          Liberty
## 1559          Minnesota            9       New York          Liberty
## 1560          Minnesota            9       New York          Liberty
## 1561          Minnesota            9       New York          Liberty
## 1562          Minnesota            9       New York          Liberty
## 1563          Minnesota            9       New York          Liberty
## 1564          Minnesota            9       New York          Liberty
## 1565          Minnesota            9       New York          Liberty
## 1566          Minnesota            9       New York          Liberty
## 1567          Minnesota            9       New York          Liberty
## 1568          Minnesota            9       New York          Liberty
## 1569          Minnesota            9       New York          Liberty
## 1570          Minnesota            9       New York          Liberty
## 1571          Minnesota            9       New York          Liberty
## 1572          Minnesota            9       New York          Liberty
## 1573          Minnesota            9       New York          Liberty
## 1574          Minnesota            9       New York          Liberty
## 1575          Minnesota            9       New York          Liberty
## 1576          Minnesota            9       New York          Liberty
## 1577          Minnesota            9       New York          Liberty
## 1578          Minnesota            9       New York          Liberty
## 1579          Minnesota            9       New York          Liberty
## 1580          Minnesota            9       New York          Liberty
## 1581          Minnesota            9       New York          Liberty
## 1582          Minnesota            9       New York          Liberty
## 1583          Minnesota            9       New York          Liberty
## 1584          Minnesota            9       New York          Liberty
## 1585          Minnesota            9       New York          Liberty
## 1586          Minnesota            9       New York          Liberty
## 1587          Minnesota            9       New York          Liberty
## 1588          Minnesota            9       New York          Liberty
## 1589          Minnesota            9       New York          Liberty
## 1590          Minnesota            9       New York          Liberty
## 1591            Phoenix           16     Washington          Mystics
## 1592            Phoenix           16     Washington          Mystics
## 1593            Phoenix           16     Washington          Mystics
## 1594            Phoenix           16     Washington          Mystics
## 1595            Phoenix           16     Washington          Mystics
## 1596            Phoenix           16     Washington          Mystics
## 1597            Phoenix           16     Washington          Mystics
## 1598            Phoenix           16     Washington          Mystics
## 1599            Phoenix           16     Washington          Mystics
## 1600            Phoenix           16     Washington          Mystics
## 1601            Phoenix           16     Washington          Mystics
## 1602            Phoenix           16     Washington          Mystics
## 1603            Phoenix           16     Washington          Mystics
## 1604            Phoenix           16     Washington          Mystics
## 1605            Phoenix           16     Washington          Mystics
## 1606            Phoenix           16     Washington          Mystics
## 1607            Phoenix           16     Washington          Mystics
## 1608            Phoenix           16     Washington          Mystics
## 1609            Phoenix           16     Washington          Mystics
## 1610            Phoenix           16     Washington          Mystics
## 1611            Phoenix           16     Washington          Mystics
## 1612            Phoenix           16     Washington          Mystics
## 1613            Phoenix           16     Washington          Mystics
## 1614            Phoenix           16     Washington          Mystics
## 1615            Phoenix           16     Washington          Mystics
## 1616            Phoenix           16     Washington          Mystics
## 1617            Phoenix           16     Washington          Mystics
## 1618            Phoenix           16     Washington          Mystics
## 1619            Phoenix           16     Washington          Mystics
## 1620            Phoenix           16     Washington          Mystics
## 1621            Phoenix           16     Washington          Mystics
## 1622            Phoenix           16     Washington          Mystics
## 1623            Phoenix           16     Washington          Mystics
## 1624            Phoenix           16     Washington          Mystics
## 1625            Phoenix           16     Washington          Mystics
## 1626            Phoenix           16     Washington          Mystics
## 1627            Phoenix           16     Washington          Mystics
## 1628            Phoenix           16     Washington          Mystics
## 1629            Phoenix           16     Washington          Mystics
## 1630            Phoenix           16     Washington          Mystics
## 1631            Phoenix           16     Washington          Mystics
## 1632            Phoenix           16     Washington          Mystics
## 1633            Phoenix           16     Washington          Mystics
## 1634            Phoenix           16     Washington          Mystics
## 1635            Phoenix           16     Washington          Mystics
## 1636            Phoenix           16     Washington          Mystics
## 1637            Phoenix           16     Washington          Mystics
## 1638            Phoenix           16     Washington          Mystics
## 1639            Phoenix           16     Washington          Mystics
## 1640            Phoenix           16     Washington          Mystics
## 1641            Phoenix           16     Washington          Mystics
## 1642            Phoenix           16     Washington          Mystics
## 1643            Phoenix           16     Washington          Mystics
## 1644            Phoenix           16     Washington          Mystics
## 1645            Phoenix           16     Washington          Mystics
## 1646            Phoenix           16     Washington          Mystics
## 1647            Phoenix           16     Washington          Mystics
## 1648            Phoenix           16     Washington          Mystics
## 1649            Phoenix           16     Washington          Mystics
## 1650            Phoenix           16     Washington          Mystics
## 1651            Phoenix           16     Washington          Mystics
## 1652            Phoenix           16     Washington          Mystics
## 1653            Phoenix           16     Washington          Mystics
## 1654            Phoenix           16     Washington          Mystics
## 1655            Phoenix           16     Washington          Mystics
## 1656            Phoenix           16     Washington          Mystics
## 1657            Phoenix           16     Washington          Mystics
## 1658            Phoenix           16     Washington          Mystics
## 1659            Phoenix           16     Washington          Mystics
## 1660            Phoenix           16     Washington          Mystics
## 1661            Phoenix           16     Washington          Mystics
## 1662            Phoenix           16     Washington          Mystics
## 1663            Phoenix           16     Washington          Mystics
## 1664            Phoenix           16     Washington          Mystics
## 1665            Phoenix           16     Washington          Mystics
## 1666            Phoenix           16     Washington          Mystics
## 1667            Phoenix           16     Washington          Mystics
## 1668            Phoenix           16     Washington          Mystics
## 1669            Phoenix           16     Washington          Mystics
## 1670            Phoenix           16     Washington          Mystics
## 1671            Phoenix           16     Washington          Mystics
## 1672            Phoenix           16     Washington          Mystics
## 1673            Phoenix           16     Washington          Mystics
## 1674            Phoenix           16     Washington          Mystics
## 1675            Phoenix           16     Washington          Mystics
## 1676            Phoenix           16     Washington          Mystics
## 1677            Phoenix           16     Washington          Mystics
## 1678            Phoenix           16     Washington          Mystics
## 1679            Phoenix           16     Washington          Mystics
## 1680            Phoenix           16     Washington          Mystics
## 1681            Phoenix           16     Washington          Mystics
## 1682            Phoenix           16     Washington          Mystics
## 1683            Phoenix           16     Washington          Mystics
## 1684            Phoenix           16     Washington          Mystics
## 1685            Phoenix           16     Washington          Mystics
## 1686            Phoenix           16     Washington          Mystics
## 1687            Phoenix           16     Washington          Mystics
## 1688            Phoenix           16     Washington          Mystics
## 1689            Phoenix           16     Washington          Mystics
## 1690            Phoenix           16     Washington          Mystics
## 1691            Phoenix           16     Washington          Mystics
## 1692            Phoenix           16     Washington          Mystics
## 1693            Phoenix           16     Washington          Mystics
## 1694            Phoenix           16     Washington          Mystics
## 1695            Phoenix           16     Washington          Mystics
## 1696            Phoenix           16     Washington          Mystics
## 1697            Phoenix           16     Washington          Mystics
## 1698            Phoenix           16     Washington          Mystics
## 1699            Phoenix           16     Washington          Mystics
## 1700            Phoenix           16     Washington          Mystics
## 1701            Phoenix           16     Washington          Mystics
## 1702            Phoenix           16     Washington          Mystics
## 1703            Phoenix           16     Washington          Mystics
## 1704            Phoenix           16     Washington          Mystics
## 1705            Phoenix           16     Washington          Mystics
## 1706            Phoenix           16     Washington          Mystics
## 1707            Phoenix           16     Washington          Mystics
## 1708            Phoenix           16     Washington          Mystics
## 1709            Phoenix           16     Washington          Mystics
## 1710            Phoenix           16     Washington          Mystics
## 1711            Phoenix           16     Washington          Mystics
## 1712            Phoenix           16     Washington          Mystics
## 1713            Phoenix           16     Washington          Mystics
## 1714            Phoenix           16     Washington          Mystics
## 1715            Phoenix           16     Washington          Mystics
## 1716            Phoenix           16     Washington          Mystics
## 1717            Phoenix           16     Washington          Mystics
## 1718            Phoenix           16     Washington          Mystics
## 1719            Phoenix           16     Washington          Mystics
## 1720            Phoenix           16     Washington          Mystics
## 1721            Phoenix           16     Washington          Mystics
## 1722            Phoenix           16     Washington          Mystics
## 1723            Phoenix           16     Washington          Mystics
## 1724            Phoenix           16     Washington          Mystics
## 1725            Phoenix           16     Washington          Mystics
## 1726            Phoenix           16     Washington          Mystics
## 1727            Phoenix           16     Washington          Mystics
## 1728            Phoenix           16     Washington          Mystics
## 1729            Phoenix           16     Washington          Mystics
## 1730            Phoenix           16     Washington          Mystics
## 1731            Phoenix           16     Washington          Mystics
## 1732            Phoenix           16     Washington          Mystics
## 1733            Phoenix           16     Washington          Mystics
## 1734            Phoenix           16     Washington          Mystics
## 1735            Phoenix           16     Washington          Mystics
## 1736            Phoenix           16     Washington          Mystics
## 1737            Phoenix           16     Washington          Mystics
## 1738            Phoenix           16     Washington          Mystics
## 1739            Phoenix           16     Washington          Mystics
## 1740            Phoenix           16     Washington          Mystics
## 1741            Phoenix           16     Washington          Mystics
## 1742            Phoenix           16     Washington          Mystics
## 1743            Phoenix           16     Washington          Mystics
## 1744            Phoenix           16     Washington          Mystics
## 1745            Phoenix           16     Washington          Mystics
## 1746            Phoenix           16     Washington          Mystics
## 1747            Phoenix           16     Washington          Mystics
## 1748            Phoenix           16     Washington          Mystics
## 1749            Phoenix           16     Washington          Mystics
## 1750            Phoenix           16     Washington          Mystics
## 1751            Phoenix           16     Washington          Mystics
## 1752            Phoenix           16     Washington          Mystics
## 1753            Phoenix           16     Washington          Mystics
## 1754            Phoenix           16     Washington          Mystics
## 1755            Phoenix           16     Washington          Mystics
## 1756            Phoenix           16     Washington          Mystics
## 1757            Phoenix           16     Washington          Mystics
## 1758            Phoenix           16     Washington          Mystics
## 1759            Phoenix           16     Washington          Mystics
## 1760            Phoenix           16     Washington          Mystics
## 1761            Phoenix           16     Washington          Mystics
## 1762            Phoenix           16     Washington          Mystics
## 1763            Phoenix           16     Washington          Mystics
## 1764            Phoenix           16     Washington          Mystics
## 1765            Phoenix           16     Washington          Mystics
## 1766            Phoenix           16     Washington          Mystics
## 1767            Phoenix           16     Washington          Mystics
## 1768            Phoenix           16     Washington          Mystics
## 1769            Phoenix           16     Washington          Mystics
## 1770            Phoenix           16     Washington          Mystics
## 1771            Phoenix           16     Washington          Mystics
## 1772            Phoenix           16     Washington          Mystics
## 1773            Phoenix           16     Washington          Mystics
## 1774            Phoenix           16     Washington          Mystics
## 1775            Phoenix           16     Washington          Mystics
## 1776            Phoenix           16     Washington          Mystics
## 1777            Phoenix           16     Washington          Mystics
## 1778          Las Vegas           14        Seattle            Storm
## 1779          Las Vegas           14        Seattle            Storm
## 1780          Las Vegas           14        Seattle            Storm
## 1781          Las Vegas           14        Seattle            Storm
## 1782          Las Vegas           14        Seattle            Storm
## 1783          Las Vegas           14        Seattle            Storm
## 1784          Las Vegas           14        Seattle            Storm
## 1785          Las Vegas           14        Seattle            Storm
## 1786          Las Vegas           14        Seattle            Storm
## 1787          Las Vegas           14        Seattle            Storm
## 1788          Las Vegas           14        Seattle            Storm
## 1789          Las Vegas           14        Seattle            Storm
## 1790          Las Vegas           14        Seattle            Storm
## 1791          Las Vegas           14        Seattle            Storm
## 1792          Las Vegas           14        Seattle            Storm
## 1793          Las Vegas           14        Seattle            Storm
## 1794          Las Vegas           14        Seattle            Storm
## 1795          Las Vegas           14        Seattle            Storm
## 1796          Las Vegas           14        Seattle            Storm
## 1797          Las Vegas           14        Seattle            Storm
## 1798          Las Vegas           14        Seattle            Storm
## 1799          Las Vegas           14        Seattle            Storm
## 1800          Las Vegas           14        Seattle            Storm
## 1801          Las Vegas           14        Seattle            Storm
## 1802          Las Vegas           14        Seattle            Storm
## 1803          Las Vegas           14        Seattle            Storm
## 1804          Las Vegas           14        Seattle            Storm
## 1805          Las Vegas           14        Seattle            Storm
## 1806          Las Vegas           14        Seattle            Storm
## 1807          Las Vegas           14        Seattle            Storm
## 1808          Las Vegas           14        Seattle            Storm
## 1809          Las Vegas           14        Seattle            Storm
## 1810          Las Vegas           14        Seattle            Storm
## 1811          Las Vegas           14        Seattle            Storm
## 1812          Las Vegas           14        Seattle            Storm
## 1813          Las Vegas           14        Seattle            Storm
## 1814          Las Vegas           14        Seattle            Storm
## 1815          Las Vegas           14        Seattle            Storm
## 1816          Las Vegas           14        Seattle            Storm
## 1817          Las Vegas           14        Seattle            Storm
## 1818          Las Vegas           14        Seattle            Storm
## 1819          Las Vegas           14        Seattle            Storm
## 1820          Las Vegas           14        Seattle            Storm
## 1821          Las Vegas           14        Seattle            Storm
## 1822          Las Vegas           14        Seattle            Storm
## 1823          Las Vegas           14        Seattle            Storm
## 1824          Las Vegas           14        Seattle            Storm
## 1825          Las Vegas           14        Seattle            Storm
## 1826          Las Vegas           14        Seattle            Storm
## 1827          Las Vegas           14        Seattle            Storm
## 1828          Las Vegas           14        Seattle            Storm
## 1829          Las Vegas           14        Seattle            Storm
## 1830          Las Vegas           14        Seattle            Storm
## 1831          Las Vegas           14        Seattle            Storm
## 1832          Las Vegas           14        Seattle            Storm
## 1833          Las Vegas           14        Seattle            Storm
## 1834          Las Vegas           14        Seattle            Storm
## 1835          Las Vegas           14        Seattle            Storm
## 1836          Las Vegas           14        Seattle            Storm
## 1837          Las Vegas           14        Seattle            Storm
## 1838          Las Vegas           14        Seattle            Storm
## 1839          Las Vegas           14        Seattle            Storm
## 1840          Las Vegas           14        Seattle            Storm
## 1841          Las Vegas           14        Seattle            Storm
## 1842          Las Vegas           14        Seattle            Storm
## 1843          Las Vegas           14        Seattle            Storm
## 1844          Las Vegas           14        Seattle            Storm
## 1845          Las Vegas           14        Seattle            Storm
## 1846          Las Vegas           14        Seattle            Storm
## 1847          Las Vegas           14        Seattle            Storm
## 1848          Las Vegas           14        Seattle            Storm
## 1849          Las Vegas           14        Seattle            Storm
## 1850          Las Vegas           14        Seattle            Storm
## 1851          Las Vegas           14        Seattle            Storm
## 1852          Las Vegas           14        Seattle            Storm
## 1853          Las Vegas           14        Seattle            Storm
## 1854          Las Vegas           14        Seattle            Storm
## 1855          Las Vegas           14        Seattle            Storm
## 1856          Las Vegas           14        Seattle            Storm
## 1857          Las Vegas           14        Seattle            Storm
## 1858          Las Vegas           14        Seattle            Storm
## 1859          Las Vegas           14        Seattle            Storm
## 1860          Las Vegas           14        Seattle            Storm
## 1861          Las Vegas           14        Seattle            Storm
## 1862          Las Vegas           14        Seattle            Storm
## 1863          Las Vegas           14        Seattle            Storm
## 1864          Las Vegas           14        Seattle            Storm
## 1865          Las Vegas           14        Seattle            Storm
## 1866          Las Vegas           14        Seattle            Storm
## 1867          Las Vegas           14        Seattle            Storm
## 1868          Las Vegas           14        Seattle            Storm
## 1869          Las Vegas           14        Seattle            Storm
## 1870          Las Vegas           14        Seattle            Storm
## 1871          Las Vegas           14        Seattle            Storm
## 1872          Las Vegas           14        Seattle            Storm
## 1873          Las Vegas           14        Seattle            Storm
## 1874          Las Vegas           14        Seattle            Storm
## 1875          Las Vegas           14        Seattle            Storm
## 1876          Las Vegas           14        Seattle            Storm
## 1877          Las Vegas           14        Seattle            Storm
## 1878          Las Vegas           14        Seattle            Storm
## 1879          Las Vegas           14        Seattle            Storm
## 1880          Las Vegas           14        Seattle            Storm
## 1881          Las Vegas           14        Seattle            Storm
## 1882          Las Vegas           14        Seattle            Storm
## 1883          Las Vegas           14        Seattle            Storm
## 1884          Las Vegas           14        Seattle            Storm
## 1885          Las Vegas           14        Seattle            Storm
## 1886          Las Vegas           14        Seattle            Storm
## 1887          Las Vegas           14        Seattle            Storm
## 1888          Las Vegas           14        Seattle            Storm
## 1889          Las Vegas           14        Seattle            Storm
## 1890          Las Vegas           14        Seattle            Storm
## 1891          Las Vegas           14        Seattle            Storm
## 1892          Las Vegas           14        Seattle            Storm
## 1893          Las Vegas           14        Seattle            Storm
## 1894          Las Vegas           14        Seattle            Storm
## 1895          Las Vegas           14        Seattle            Storm
## 1896          Las Vegas           14        Seattle            Storm
## 1897          Las Vegas           14        Seattle            Storm
## 1898          Las Vegas           14        Seattle            Storm
## 1899          Las Vegas           14        Seattle            Storm
## 1900          Las Vegas           14        Seattle            Storm
## 1901          Las Vegas           14        Seattle            Storm
## 1902          Las Vegas           14        Seattle            Storm
## 1903          Las Vegas           14        Seattle            Storm
## 1904          Las Vegas           14        Seattle            Storm
## 1905          Las Vegas           14        Seattle            Storm
## 1906          Las Vegas           14        Seattle            Storm
## 1907          Las Vegas           14        Seattle            Storm
## 1908          Las Vegas           14        Seattle            Storm
## 1909          Las Vegas           14        Seattle            Storm
## 1910          Las Vegas           14        Seattle            Storm
## 1911          Las Vegas           14        Seattle            Storm
## 1912          Las Vegas           14        Seattle            Storm
## 1913          Las Vegas           14        Seattle            Storm
## 1914          Las Vegas           14        Seattle            Storm
## 1915          Las Vegas           14        Seattle            Storm
## 1916          Las Vegas           14        Seattle            Storm
## 1917          Las Vegas           14        Seattle            Storm
## 1918          Las Vegas           14        Seattle            Storm
## 1919          Las Vegas           14        Seattle            Storm
## 1920          Las Vegas           14        Seattle            Storm
## 1921          Las Vegas           14        Seattle            Storm
## 1922          Las Vegas           14        Seattle            Storm
## 1923          Las Vegas           14        Seattle            Storm
## 1924          Las Vegas           14        Seattle            Storm
## 1925          Las Vegas           14        Seattle            Storm
## 1926          Las Vegas           14        Seattle            Storm
## 1927          Las Vegas           14        Seattle            Storm
## 1928          Las Vegas           14        Seattle            Storm
## 1929          Las Vegas           14        Seattle            Storm
## 1930          Las Vegas           14        Seattle            Storm
## 1931          Las Vegas           14        Seattle            Storm
## 1932          Las Vegas           14        Seattle            Storm
## 1933          Las Vegas           14        Seattle            Storm
## 1934          Las Vegas           14        Seattle            Storm
## 1935          Las Vegas           14        Seattle            Storm
## 1936          Las Vegas           14        Seattle            Storm
## 1937          Las Vegas           14        Seattle            Storm
## 1938          Las Vegas           14        Seattle            Storm
## 1939          Las Vegas           14        Seattle            Storm
## 1940          Las Vegas           14        Seattle            Storm
## 1941          Las Vegas           14        Seattle            Storm
## 1942          Las Vegas           14        Seattle            Storm
## 1943          Las Vegas           14        Seattle            Storm
## 1944          Las Vegas           14        Seattle            Storm
## 1945          Las Vegas           14        Seattle            Storm
## 1946          Las Vegas           14        Seattle            Storm
## 1947          Las Vegas           14        Seattle            Storm
## 1948          Las Vegas           14        Seattle            Storm
## 1949          Las Vegas           14        Seattle            Storm
## 1950          Las Vegas           14        Seattle            Storm
## 1951          Las Vegas           14        Seattle            Storm
## 1952          Las Vegas           14        Seattle            Storm
## 1953            Chicago           20        Atlanta            Dream
## 1954            Chicago           20        Atlanta            Dream
## 1955            Chicago           20        Atlanta            Dream
## 1956            Chicago           20        Atlanta            Dream
## 1957            Chicago           20        Atlanta            Dream
## 1958            Chicago           20        Atlanta            Dream
## 1959            Chicago           20        Atlanta            Dream
## 1960            Chicago           20        Atlanta            Dream
## 1961            Chicago           20        Atlanta            Dream
## 1962            Chicago           20        Atlanta            Dream
## 1963            Chicago           20        Atlanta            Dream
## 1964            Chicago           20        Atlanta            Dream
## 1965            Chicago           20        Atlanta            Dream
## 1966            Chicago           20        Atlanta            Dream
## 1967            Chicago           20        Atlanta            Dream
## 1968            Chicago           20        Atlanta            Dream
## 1969            Chicago           20        Atlanta            Dream
## 1970            Chicago           20        Atlanta            Dream
## 1971            Chicago           20        Atlanta            Dream
## 1972            Chicago           20        Atlanta            Dream
## 1973            Chicago           20        Atlanta            Dream
## 1974            Chicago           20        Atlanta            Dream
## 1975            Chicago           20        Atlanta            Dream
## 1976            Chicago           20        Atlanta            Dream
## 1977            Chicago           20        Atlanta            Dream
## 1978            Chicago           20        Atlanta            Dream
## 1979            Chicago           20        Atlanta            Dream
## 1980            Chicago           20        Atlanta            Dream
## 1981            Chicago           20        Atlanta            Dream
## 1982            Chicago           20        Atlanta            Dream
## 1983            Chicago           20        Atlanta            Dream
## 1984            Chicago           20        Atlanta            Dream
## 1985            Chicago           20        Atlanta            Dream
## 1986            Chicago           20        Atlanta            Dream
## 1987            Chicago           20        Atlanta            Dream
## 1988            Chicago           20        Atlanta            Dream
## 1989            Chicago           20        Atlanta            Dream
## 1990            Chicago           20        Atlanta            Dream
## 1991            Chicago           20        Atlanta            Dream
## 1992            Chicago           20        Atlanta            Dream
## 1993            Chicago           20        Atlanta            Dream
## 1994            Chicago           20        Atlanta            Dream
## 1995            Chicago           20        Atlanta            Dream
## 1996            Chicago           20        Atlanta            Dream
## 1997            Chicago           20        Atlanta            Dream
## 1998            Chicago           20        Atlanta            Dream
## 1999            Chicago           20        Atlanta            Dream
## 2000            Chicago           20        Atlanta            Dream
## 2001            Chicago           20        Atlanta            Dream
## 2002            Chicago           20        Atlanta            Dream
## 2003            Chicago           20        Atlanta            Dream
## 2004            Chicago           20        Atlanta            Dream
## 2005            Chicago           20        Atlanta            Dream
## 2006            Chicago           20        Atlanta            Dream
## 2007            Chicago           20        Atlanta            Dream
## 2008            Chicago           20        Atlanta            Dream
## 2009            Chicago           20        Atlanta            Dream
## 2010            Chicago           20        Atlanta            Dream
## 2011            Chicago           20        Atlanta            Dream
## 2012            Chicago           20        Atlanta            Dream
## 2013            Chicago           20        Atlanta            Dream
## 2014            Chicago           20        Atlanta            Dream
## 2015            Chicago           20        Atlanta            Dream
## 2016            Chicago           20        Atlanta            Dream
## 2017            Chicago           20        Atlanta            Dream
## 2018            Chicago           20        Atlanta            Dream
## 2019            Chicago           20        Atlanta            Dream
## 2020            Chicago           20        Atlanta            Dream
## 2021            Chicago           20        Atlanta            Dream
## 2022            Chicago           20        Atlanta            Dream
## 2023            Chicago           20        Atlanta            Dream
## 2024            Chicago           20        Atlanta            Dream
## 2025            Chicago           20        Atlanta            Dream
## 2026            Chicago           20        Atlanta            Dream
## 2027            Chicago           20        Atlanta            Dream
## 2028            Chicago           20        Atlanta            Dream
## 2029            Chicago           20        Atlanta            Dream
## 2030            Chicago           20        Atlanta            Dream
## 2031            Chicago           20        Atlanta            Dream
## 2032            Chicago           20        Atlanta            Dream
## 2033            Chicago           20        Atlanta            Dream
## 2034            Chicago           20        Atlanta            Dream
## 2035            Chicago           20        Atlanta            Dream
## 2036            Chicago           20        Atlanta            Dream
## 2037            Chicago           20        Atlanta            Dream
## 2038            Chicago           20        Atlanta            Dream
## 2039            Chicago           20        Atlanta            Dream
## 2040            Chicago           20        Atlanta            Dream
## 2041            Chicago           20        Atlanta            Dream
## 2042            Chicago           20        Atlanta            Dream
## 2043            Chicago           20        Atlanta            Dream
## 2044            Chicago           20        Atlanta            Dream
## 2045            Chicago           20        Atlanta            Dream
## 2046            Chicago           20        Atlanta            Dream
## 2047            Chicago           20        Atlanta            Dream
## 2048            Chicago           20        Atlanta            Dream
## 2049            Chicago           20        Atlanta            Dream
## 2050            Chicago           20        Atlanta            Dream
## 2051            Chicago           20        Atlanta            Dream
## 2052            Chicago           20        Atlanta            Dream
## 2053            Chicago           20        Atlanta            Dream
## 2054            Chicago           20        Atlanta            Dream
## 2055            Chicago           20        Atlanta            Dream
## 2056            Chicago           20        Atlanta            Dream
## 2057            Chicago           20        Atlanta            Dream
## 2058            Chicago           20        Atlanta            Dream
## 2059            Chicago           20        Atlanta            Dream
## 2060            Chicago           20        Atlanta            Dream
## 2061            Chicago           20        Atlanta            Dream
## 2062            Chicago           20        Atlanta            Dream
## 2063            Chicago           20        Atlanta            Dream
## 2064            Chicago           20        Atlanta            Dream
## 2065            Chicago           20        Atlanta            Dream
## 2066            Chicago           20        Atlanta            Dream
## 2067            Chicago           20        Atlanta            Dream
## 2068            Chicago           20        Atlanta            Dream
## 2069            Chicago           20        Atlanta            Dream
## 2070            Chicago           20        Atlanta            Dream
## 2071            Chicago           20        Atlanta            Dream
## 2072            Chicago           20        Atlanta            Dream
## 2073            Chicago           20        Atlanta            Dream
## 2074            Chicago           20        Atlanta            Dream
## 2075            Chicago           20        Atlanta            Dream
## 2076            Chicago           20        Atlanta            Dream
## 2077            Chicago           20        Atlanta            Dream
## 2078            Chicago           20        Atlanta            Dream
## 2079            Chicago           20        Atlanta            Dream
## 2080            Chicago           20        Atlanta            Dream
## 2081            Chicago           20        Atlanta            Dream
## 2082            Chicago           20        Atlanta            Dream
## 2083            Chicago           20        Atlanta            Dream
## 2084            Chicago           20        Atlanta            Dream
## 2085            Chicago           20        Atlanta            Dream
## 2086            Chicago           20        Atlanta            Dream
## 2087            Chicago           20        Atlanta            Dream
## 2088            Chicago           20        Atlanta            Dream
## 2089            Chicago           20        Atlanta            Dream
## 2090            Chicago           20        Atlanta            Dream
## 2091            Chicago           20        Atlanta            Dream
## 2092            Chicago           20        Atlanta            Dream
## 2093            Chicago           20        Atlanta            Dream
## 2094            Chicago           20        Atlanta            Dream
## 2095            Chicago           20        Atlanta            Dream
## 2096            Chicago           20        Atlanta            Dream
## 2097            Chicago           20        Atlanta            Dream
## 2098            Chicago           20        Atlanta            Dream
## 2099            Chicago           20        Atlanta            Dream
## 2100            Chicago           20        Atlanta            Dream
## 2101            Chicago           20        Atlanta            Dream
## 2102            Chicago           20        Atlanta            Dream
## 2103            Chicago           20        Atlanta            Dream
## 2104            Chicago           20        Atlanta            Dream
## 2105            Chicago           20        Atlanta            Dream
## 2106            Chicago           20        Atlanta            Dream
## 2107            Chicago           20        Atlanta            Dream
## 2108            Chicago           20        Atlanta            Dream
## 2109            Chicago           20        Atlanta            Dream
## 2110            Chicago           20        Atlanta            Dream
## 2111            Chicago           20        Atlanta            Dream
## 2112            Chicago           20        Atlanta            Dream
## 2113            Chicago           20        Atlanta            Dream
## 2114            Chicago           20        Atlanta            Dream
## 2115            Chicago           20        Atlanta            Dream
## 2116            Chicago           20        Atlanta            Dream
## 2117            Chicago           20        Atlanta            Dream
## 2118            Chicago           20        Atlanta            Dream
## 2119            Chicago           20        Atlanta            Dream
## 2120            Chicago           20        Atlanta            Dream
## 2121            Chicago           20        Atlanta            Dream
## 2122            Chicago           20        Atlanta            Dream
## 2123            Chicago           20        Atlanta            Dream
## 2124            Chicago           20        Atlanta            Dream
## 2125            Chicago           20        Atlanta            Dream
## 2126            Chicago           20        Atlanta            Dream
## 2127            Chicago           20        Atlanta            Dream
## 2128            Chicago           20        Atlanta            Dream
## 2129            Chicago           20        Atlanta            Dream
## 2130            Chicago           20        Atlanta            Dream
## 2131            Chicago           20        Atlanta            Dream
## 2132            Chicago           20        Atlanta            Dream
## 2133            Chicago           20        Atlanta            Dream
## 2134            Chicago           20        Atlanta            Dream
## 2135            Chicago           20        Atlanta            Dream
## 2136            Chicago           20        Atlanta            Dream
## 2137            Chicago           20        Atlanta            Dream
## 2138            Chicago           20        Atlanta            Dream
## 2139            Chicago           20        Atlanta            Dream
## 2140            Chicago           20        Atlanta            Dream
## 2141            Chicago           20        Atlanta            Dream
## 2142            Chicago           20        Atlanta            Dream
## 2143            Chicago           20        Atlanta            Dream
## 2144            Chicago           20        Atlanta            Dream
## 2145            Chicago           20        Atlanta            Dream
## 2146            Chicago           20        Atlanta            Dream
## 2147            Chicago           20        Atlanta            Dream
## 2148            Chicago           20        Atlanta            Dream
## 2149            Chicago           20        Atlanta            Dream
## 2150            Chicago           20        Atlanta            Dream
## 2151            Chicago           20        Atlanta            Dream
## 2152            Chicago           20        Atlanta            Dream
## 2153            Chicago           20        Atlanta            Dream
## 2154            Chicago           20        Atlanta            Dream
## 2155            Chicago           20        Atlanta            Dream
## 2156            Chicago           20        Atlanta            Dream
## 2157            Chicago           20        Atlanta            Dream
## 2158            Chicago           20        Atlanta            Dream
## 2159            Chicago           20        Atlanta            Dream
## 2160            Indiana           18    Connecticut              Sun
## 2161            Indiana           18    Connecticut              Sun
## 2162            Indiana           18    Connecticut              Sun
## 2163            Indiana           18    Connecticut              Sun
## 2164            Indiana           18    Connecticut              Sun
## 2165            Indiana           18    Connecticut              Sun
## 2166            Indiana           18    Connecticut              Sun
## 2167            Indiana           18    Connecticut              Sun
## 2168            Indiana           18    Connecticut              Sun
## 2169            Indiana           18    Connecticut              Sun
## 2170            Indiana           18    Connecticut              Sun
## 2171            Indiana           18    Connecticut              Sun
## 2172            Indiana           18    Connecticut              Sun
## 2173            Indiana           18    Connecticut              Sun
## 2174            Indiana           18    Connecticut              Sun
## 2175            Indiana           18    Connecticut              Sun
## 2176            Indiana           18    Connecticut              Sun
## 2177            Indiana           18    Connecticut              Sun
## 2178            Indiana           18    Connecticut              Sun
## 2179            Indiana           18    Connecticut              Sun
## 2180            Indiana           18    Connecticut              Sun
## 2181            Indiana           18    Connecticut              Sun
## 2182            Indiana           18    Connecticut              Sun
## 2183            Indiana           18    Connecticut              Sun
## 2184            Indiana           18    Connecticut              Sun
## 2185            Indiana           18    Connecticut              Sun
## 2186            Indiana           18    Connecticut              Sun
## 2187            Indiana           18    Connecticut              Sun
## 2188            Indiana           18    Connecticut              Sun
## 2189            Indiana           18    Connecticut              Sun
## 2190            Indiana           18    Connecticut              Sun
## 2191            Indiana           18    Connecticut              Sun
## 2192            Indiana           18    Connecticut              Sun
## 2193            Indiana           18    Connecticut              Sun
## 2194            Indiana           18    Connecticut              Sun
## 2195            Indiana           18    Connecticut              Sun
## 2196            Indiana           18    Connecticut              Sun
## 2197            Indiana           18    Connecticut              Sun
## 2198            Indiana           18    Connecticut              Sun
## 2199            Indiana           18    Connecticut              Sun
## 2200            Indiana           18    Connecticut              Sun
## 2201            Indiana           18    Connecticut              Sun
## 2202            Indiana           18    Connecticut              Sun
## 2203            Indiana           18    Connecticut              Sun
## 2204            Indiana           18    Connecticut              Sun
## 2205            Indiana           18    Connecticut              Sun
## 2206            Indiana           18    Connecticut              Sun
## 2207            Indiana           18    Connecticut              Sun
## 2208            Indiana           18    Connecticut              Sun
## 2209            Indiana           18    Connecticut              Sun
## 2210            Indiana           18    Connecticut              Sun
## 2211            Indiana           18    Connecticut              Sun
## 2212            Indiana           18    Connecticut              Sun
## 2213            Indiana           18    Connecticut              Sun
## 2214            Indiana           18    Connecticut              Sun
## 2215            Indiana           18    Connecticut              Sun
## 2216            Indiana           18    Connecticut              Sun
## 2217            Indiana           18    Connecticut              Sun
## 2218            Indiana           18    Connecticut              Sun
## 2219            Indiana           18    Connecticut              Sun
## 2220            Indiana           18    Connecticut              Sun
## 2221            Indiana           18    Connecticut              Sun
## 2222            Indiana           18    Connecticut              Sun
## 2223            Indiana           18    Connecticut              Sun
## 2224            Indiana           18    Connecticut              Sun
## 2225            Indiana           18    Connecticut              Sun
## 2226            Indiana           18    Connecticut              Sun
## 2227            Indiana           18    Connecticut              Sun
## 2228            Indiana           18    Connecticut              Sun
## 2229            Indiana           18    Connecticut              Sun
## 2230            Indiana           18    Connecticut              Sun
## 2231            Indiana           18    Connecticut              Sun
## 2232            Indiana           18    Connecticut              Sun
## 2233            Indiana           18    Connecticut              Sun
## 2234            Indiana           18    Connecticut              Sun
## 2235            Indiana           18    Connecticut              Sun
## 2236            Indiana           18    Connecticut              Sun
## 2237            Indiana           18    Connecticut              Sun
## 2238            Indiana           18    Connecticut              Sun
## 2239            Indiana           18    Connecticut              Sun
## 2240            Indiana           18    Connecticut              Sun
## 2241            Indiana           18    Connecticut              Sun
## 2242            Indiana           18    Connecticut              Sun
## 2243            Indiana           18    Connecticut              Sun
## 2244            Indiana           18    Connecticut              Sun
## 2245            Indiana           18    Connecticut              Sun
## 2246            Indiana           18    Connecticut              Sun
## 2247            Indiana           18    Connecticut              Sun
## 2248            Indiana           18    Connecticut              Sun
## 2249            Indiana           18    Connecticut              Sun
## 2250            Indiana           18    Connecticut              Sun
## 2251            Indiana           18    Connecticut              Sun
## 2252            Indiana           18    Connecticut              Sun
## 2253            Indiana           18    Connecticut              Sun
## 2254            Indiana           18    Connecticut              Sun
## 2255            Indiana           18    Connecticut              Sun
## 2256            Indiana           18    Connecticut              Sun
## 2257            Indiana           18    Connecticut              Sun
## 2258            Indiana           18    Connecticut              Sun
## 2259            Indiana           18    Connecticut              Sun
## 2260            Indiana           18    Connecticut              Sun
## 2261            Indiana           18    Connecticut              Sun
## 2262            Indiana           18    Connecticut              Sun
## 2263            Indiana           18    Connecticut              Sun
## 2264            Indiana           18    Connecticut              Sun
## 2265            Indiana           18    Connecticut              Sun
## 2266            Indiana           18    Connecticut              Sun
## 2267            Indiana           18    Connecticut              Sun
## 2268            Indiana           18    Connecticut              Sun
## 2269            Indiana           18    Connecticut              Sun
## 2270            Indiana           18    Connecticut              Sun
## 2271            Indiana           18    Connecticut              Sun
## 2272            Indiana           18    Connecticut              Sun
## 2273            Indiana           18    Connecticut              Sun
## 2274            Indiana           18    Connecticut              Sun
## 2275            Indiana           18    Connecticut              Sun
## 2276            Indiana           18    Connecticut              Sun
## 2277            Indiana           18    Connecticut              Sun
## 2278            Indiana           18    Connecticut              Sun
## 2279            Indiana           18    Connecticut              Sun
## 2280            Indiana           18    Connecticut              Sun
## 2281            Indiana           18    Connecticut              Sun
## 2282            Indiana           18    Connecticut              Sun
## 2283            Indiana           18    Connecticut              Sun
## 2284            Indiana           18    Connecticut              Sun
## 2285            Indiana           18    Connecticut              Sun
## 2286            Indiana           18    Connecticut              Sun
## 2287            Indiana           18    Connecticut              Sun
## 2288            Indiana           18    Connecticut              Sun
## 2289            Indiana           18    Connecticut              Sun
## 2290            Indiana           18    Connecticut              Sun
## 2291            Indiana           18    Connecticut              Sun
## 2292            Indiana           18    Connecticut              Sun
## 2293            Indiana           18    Connecticut              Sun
## 2294            Indiana           18    Connecticut              Sun
## 2295            Indiana           18    Connecticut              Sun
## 2296            Indiana           18    Connecticut              Sun
## 2297            Indiana           18    Connecticut              Sun
## 2298            Indiana           18    Connecticut              Sun
## 2299            Indiana           18    Connecticut              Sun
## 2300            Indiana           18    Connecticut              Sun
## 2301            Indiana           18    Connecticut              Sun
## 2302            Indiana           18    Connecticut              Sun
## 2303            Indiana           18    Connecticut              Sun
## 2304            Indiana           18    Connecticut              Sun
## 2305            Indiana           18    Connecticut              Sun
## 2306            Indiana           18    Connecticut              Sun
## 2307            Indiana           18    Connecticut              Sun
## 2308            Indiana           18    Connecticut              Sun
## 2309            Indiana           18    Connecticut              Sun
## 2310            Indiana           18    Connecticut              Sun
## 2311            Indiana           18    Connecticut              Sun
## 2312            Indiana           18    Connecticut              Sun
## 2313            Indiana           18    Connecticut              Sun
## 2314            Indiana           18    Connecticut              Sun
## 2315            Indiana           18    Connecticut              Sun
## 2316            Seattle            8      Minnesota             Lynx
## 2317            Seattle            8      Minnesota             Lynx
## 2318            Seattle            8      Minnesota             Lynx
## 2319            Seattle            8      Minnesota             Lynx
## 2320            Seattle            8      Minnesota             Lynx
## 2321            Seattle            8      Minnesota             Lynx
## 2322            Seattle            8      Minnesota             Lynx
## 2323            Seattle            8      Minnesota             Lynx
## 2324            Seattle            8      Minnesota             Lynx
## 2325            Seattle            8      Minnesota             Lynx
## 2326            Seattle            8      Minnesota             Lynx
## 2327            Seattle            8      Minnesota             Lynx
## 2328            Seattle            8      Minnesota             Lynx
## 2329            Seattle            8      Minnesota             Lynx
## 2330            Seattle            8      Minnesota             Lynx
## 2331            Seattle            8      Minnesota             Lynx
## 2332            Seattle            8      Minnesota             Lynx
## 2333            Seattle            8      Minnesota             Lynx
## 2334            Seattle            8      Minnesota             Lynx
## 2335            Seattle            8      Minnesota             Lynx
## 2336            Seattle            8      Minnesota             Lynx
## 2337            Seattle            8      Minnesota             Lynx
## 2338            Seattle            8      Minnesota             Lynx
## 2339            Seattle            8      Minnesota             Lynx
## 2340            Seattle            8      Minnesota             Lynx
## 2341            Seattle            8      Minnesota             Lynx
## 2342            Seattle            8      Minnesota             Lynx
## 2343            Seattle            8      Minnesota             Lynx
## 2344            Seattle            8      Minnesota             Lynx
## 2345            Seattle            8      Minnesota             Lynx
## 2346            Seattle            8      Minnesota             Lynx
## 2347            Seattle            8      Minnesota             Lynx
## 2348            Seattle            8      Minnesota             Lynx
## 2349            Seattle            8      Minnesota             Lynx
## 2350            Seattle            8      Minnesota             Lynx
## 2351            Seattle            8      Minnesota             Lynx
## 2352            Seattle            8      Minnesota             Lynx
## 2353            Seattle            8      Minnesota             Lynx
## 2354            Seattle            8      Minnesota             Lynx
## 2355            Seattle            8      Minnesota             Lynx
## 2356            Seattle            8      Minnesota             Lynx
## 2357            Seattle            8      Minnesota             Lynx
## 2358            Seattle            8      Minnesota             Lynx
## 2359            Seattle            8      Minnesota             Lynx
## 2360            Seattle            8      Minnesota             Lynx
## 2361            Seattle            8      Minnesota             Lynx
## 2362            Seattle            8      Minnesota             Lynx
## 2363            Seattle            8      Minnesota             Lynx
## 2364            Seattle            8      Minnesota             Lynx
## 2365            Seattle            8      Minnesota             Lynx
## 2366            Seattle            8      Minnesota             Lynx
## 2367            Seattle            8      Minnesota             Lynx
## 2368            Seattle            8      Minnesota             Lynx
## 2369            Seattle            8      Minnesota             Lynx
## 2370            Seattle            8      Minnesota             Lynx
## 2371            Seattle            8      Minnesota             Lynx
## 2372            Seattle            8      Minnesota             Lynx
## 2373            Seattle            8      Minnesota             Lynx
## 2374            Seattle            8      Minnesota             Lynx
## 2375            Seattle            8      Minnesota             Lynx
## 2376            Seattle            8      Minnesota             Lynx
## 2377            Seattle            8      Minnesota             Lynx
## 2378            Seattle            8      Minnesota             Lynx
## 2379            Seattle            8      Minnesota             Lynx
## 2380            Seattle            8      Minnesota             Lynx
## 2381            Seattle            8      Minnesota             Lynx
## 2382            Seattle            8      Minnesota             Lynx
## 2383            Seattle            8      Minnesota             Lynx
## 2384            Seattle            8      Minnesota             Lynx
## 2385            Seattle            8      Minnesota             Lynx
## 2386            Seattle            8      Minnesota             Lynx
## 2387            Seattle            8      Minnesota             Lynx
## 2388            Seattle            8      Minnesota             Lynx
## 2389            Seattle            8      Minnesota             Lynx
## 2390            Seattle            8      Minnesota             Lynx
## 2391            Seattle            8      Minnesota             Lynx
## 2392            Seattle            8      Minnesota             Lynx
## 2393            Seattle            8      Minnesota             Lynx
## 2394            Seattle            8      Minnesota             Lynx
## 2395            Seattle            8      Minnesota             Lynx
## 2396            Seattle            8      Minnesota             Lynx
## 2397            Seattle            8      Minnesota             Lynx
## 2398            Seattle            8      Minnesota             Lynx
## 2399            Seattle            8      Minnesota             Lynx
## 2400            Seattle            8      Minnesota             Lynx
## 2401            Seattle            8      Minnesota             Lynx
## 2402            Seattle            8      Minnesota             Lynx
## 2403            Seattle            8      Minnesota             Lynx
## 2404            Seattle            8      Minnesota             Lynx
## 2405            Seattle            8      Minnesota             Lynx
## 2406            Seattle            8      Minnesota             Lynx
## 2407            Seattle            8      Minnesota             Lynx
## 2408            Seattle            8      Minnesota             Lynx
## 2409            Seattle            8      Minnesota             Lynx
## 2410            Seattle            8      Minnesota             Lynx
## 2411            Seattle            8      Minnesota             Lynx
## 2412            Seattle            8      Minnesota             Lynx
## 2413            Seattle            8      Minnesota             Lynx
## 2414            Seattle            8      Minnesota             Lynx
## 2415            Seattle            8      Minnesota             Lynx
## 2416            Seattle            8      Minnesota             Lynx
## 2417            Seattle            8      Minnesota             Lynx
## 2418            Seattle            8      Minnesota             Lynx
## 2419            Seattle            8      Minnesota             Lynx
## 2420            Seattle            8      Minnesota             Lynx
## 2421            Seattle            8      Minnesota             Lynx
## 2422            Seattle            8      Minnesota             Lynx
## 2423            Seattle            8      Minnesota             Lynx
## 2424            Seattle            8      Minnesota             Lynx
## 2425            Seattle            8      Minnesota             Lynx
## 2426            Seattle            8      Minnesota             Lynx
## 2427            Seattle            8      Minnesota             Lynx
## 2428            Seattle            8      Minnesota             Lynx
## 2429            Seattle            8      Minnesota             Lynx
## 2430            Seattle            8      Minnesota             Lynx
## 2431            Seattle            8      Minnesota             Lynx
## 2432            Seattle            8      Minnesota             Lynx
## 2433            Seattle            8      Minnesota             Lynx
## 2434            Seattle            8      Minnesota             Lynx
## 2435            Seattle            8      Minnesota             Lynx
## 2436            Seattle            8      Minnesota             Lynx
## 2437            Seattle            8      Minnesota             Lynx
## 2438            Seattle            8      Minnesota             Lynx
## 2439            Seattle            8      Minnesota             Lynx
## 2440            Seattle            8      Minnesota             Lynx
## 2441            Seattle            8      Minnesota             Lynx
## 2442            Seattle            8      Minnesota             Lynx
## 2443            Seattle            8      Minnesota             Lynx
## 2444            Seattle            8      Minnesota             Lynx
## 2445            Seattle            8      Minnesota             Lynx
## 2446            Seattle            8      Minnesota             Lynx
## 2447            Seattle            8      Minnesota             Lynx
## 2448            Seattle            8      Minnesota             Lynx
## 2449            Seattle            8      Minnesota             Lynx
## 2450            Seattle            8      Minnesota             Lynx
## 2451            Seattle            8      Minnesota             Lynx
## 2452            Seattle            8      Minnesota             Lynx
## 2453            Seattle            8      Minnesota             Lynx
## 2454            Seattle            8      Minnesota             Lynx
## 2455            Seattle            8      Minnesota             Lynx
## 2456            Seattle            8      Minnesota             Lynx
## 2457            Seattle            8      Minnesota             Lynx
## 2458            Seattle            8      Minnesota             Lynx
## 2459            Seattle            8      Minnesota             Lynx
## 2460            Seattle            8      Minnesota             Lynx
## 2461            Seattle            8      Minnesota             Lynx
## 2462            Seattle            8      Minnesota             Lynx
## 2463            Seattle            8      Minnesota             Lynx
## 2464            Seattle            8      Minnesota             Lynx
## 2465            Seattle            8      Minnesota             Lynx
## 2466            Seattle            8      Minnesota             Lynx
## 2467            Seattle            8      Minnesota             Lynx
## 2468            Seattle            8      Minnesota             Lynx
## 2469            Seattle            8      Minnesota             Lynx
## 2470            Seattle            8      Minnesota             Lynx
## 2471            Seattle            8      Minnesota             Lynx
## 2472            Seattle            8      Minnesota             Lynx
## 2473            Seattle            8      Minnesota             Lynx
## 2474            Seattle            8      Minnesota             Lynx
## 2475            Seattle            8      Minnesota             Lynx
## 2476            Seattle            8      Minnesota             Lynx
## 2477            Seattle            8      Minnesota             Lynx
## 2478            Seattle            8      Minnesota             Lynx
## 2479            Seattle            8      Minnesota             Lynx
## 2480            Seattle            8      Minnesota             Lynx
## 2481            Seattle            8      Minnesota             Lynx
## 2482            Seattle            8      Minnesota             Lynx
## 2483            Seattle            8      Minnesota             Lynx
## 2484            Seattle            8      Minnesota             Lynx
## 2485            Seattle            8      Minnesota             Lynx
## 2486            Seattle            8      Minnesota             Lynx
## 2487            Seattle            8      Minnesota             Lynx
## 2488            Atlanta            5        Indiana            Fever
## 2489            Atlanta            5        Indiana            Fever
## 2490            Atlanta            5        Indiana            Fever
## 2491            Atlanta            5        Indiana            Fever
## 2492            Atlanta            5        Indiana            Fever
## 2493            Atlanta            5        Indiana            Fever
## 2494            Atlanta            5        Indiana            Fever
## 2495            Atlanta            5        Indiana            Fever
## 2496            Atlanta            5        Indiana            Fever
## 2497            Atlanta            5        Indiana            Fever
## 2498            Atlanta            5        Indiana            Fever
## 2499            Atlanta            5        Indiana            Fever
## 2500            Atlanta            5        Indiana            Fever
## 2501            Atlanta            5        Indiana            Fever
## 2502            Atlanta            5        Indiana            Fever
## 2503            Atlanta            5        Indiana            Fever
## 2504            Atlanta            5        Indiana            Fever
## 2505            Atlanta            5        Indiana            Fever
## 2506            Atlanta            5        Indiana            Fever
## 2507            Atlanta            5        Indiana            Fever
## 2508            Atlanta            5        Indiana            Fever
## 2509            Atlanta            5        Indiana            Fever
## 2510            Atlanta            5        Indiana            Fever
## 2511            Atlanta            5        Indiana            Fever
## 2512            Atlanta            5        Indiana            Fever
## 2513            Atlanta            5        Indiana            Fever
## 2514            Atlanta            5        Indiana            Fever
## 2515            Atlanta            5        Indiana            Fever
## 2516            Atlanta            5        Indiana            Fever
## 2517            Atlanta            5        Indiana            Fever
## 2518            Atlanta            5        Indiana            Fever
## 2519            Atlanta            5        Indiana            Fever
## 2520            Atlanta            5        Indiana            Fever
## 2521            Atlanta            5        Indiana            Fever
## 2522            Atlanta            5        Indiana            Fever
## 2523            Atlanta            5        Indiana            Fever
## 2524            Atlanta            5        Indiana            Fever
## 2525            Atlanta            5        Indiana            Fever
## 2526            Atlanta            5        Indiana            Fever
## 2527            Atlanta            5        Indiana            Fever
## 2528            Atlanta            5        Indiana            Fever
## 2529            Atlanta            5        Indiana            Fever
## 2530            Atlanta            5        Indiana            Fever
## 2531            Atlanta            5        Indiana            Fever
## 2532            Atlanta            5        Indiana            Fever
## 2533            Atlanta            5        Indiana            Fever
## 2534            Atlanta            5        Indiana            Fever
## 2535            Atlanta            5        Indiana            Fever
## 2536            Atlanta            5        Indiana            Fever
## 2537            Atlanta            5        Indiana            Fever
## 2538            Atlanta            5        Indiana            Fever
## 2539            Atlanta            5        Indiana            Fever
## 2540            Atlanta            5        Indiana            Fever
## 2541            Atlanta            5        Indiana            Fever
## 2542            Atlanta            5        Indiana            Fever
## 2543            Atlanta            5        Indiana            Fever
## 2544            Atlanta            5        Indiana            Fever
## 2545            Atlanta            5        Indiana            Fever
## 2546            Atlanta            5        Indiana            Fever
## 2547            Atlanta            5        Indiana            Fever
## 2548            Atlanta            5        Indiana            Fever
## 2549            Atlanta            5        Indiana            Fever
## 2550            Atlanta            5        Indiana            Fever
## 2551            Atlanta            5        Indiana            Fever
## 2552            Atlanta            5        Indiana            Fever
## 2553            Atlanta            5        Indiana            Fever
## 2554            Atlanta            5        Indiana            Fever
## 2555            Atlanta            5        Indiana            Fever
## 2556            Atlanta            5        Indiana            Fever
## 2557            Atlanta            5        Indiana            Fever
## 2558            Atlanta            5        Indiana            Fever
## 2559            Atlanta            5        Indiana            Fever
## 2560            Atlanta            5        Indiana            Fever
## 2561            Atlanta            5        Indiana            Fever
## 2562            Atlanta            5        Indiana            Fever
## 2563            Atlanta            5        Indiana            Fever
## 2564            Atlanta            5        Indiana            Fever
## 2565            Atlanta            5        Indiana            Fever
## 2566            Atlanta            5        Indiana            Fever
## 2567            Atlanta            5        Indiana            Fever
## 2568            Atlanta            5        Indiana            Fever
## 2569            Atlanta            5        Indiana            Fever
## 2570            Atlanta            5        Indiana            Fever
## 2571            Atlanta            5        Indiana            Fever
## 2572            Atlanta            5        Indiana            Fever
## 2573            Atlanta            5        Indiana            Fever
## 2574            Atlanta            5        Indiana            Fever
## 2575            Atlanta            5        Indiana            Fever
## 2576            Atlanta            5        Indiana            Fever
## 2577            Atlanta            5        Indiana            Fever
## 2578            Atlanta            5        Indiana            Fever
## 2579            Atlanta            5        Indiana            Fever
## 2580            Atlanta            5        Indiana            Fever
## 2581            Atlanta            5        Indiana            Fever
## 2582            Atlanta            5        Indiana            Fever
## 2583            Atlanta            5        Indiana            Fever
## 2584            Atlanta            5        Indiana            Fever
## 2585            Atlanta            5        Indiana            Fever
## 2586            Atlanta            5        Indiana            Fever
## 2587            Atlanta            5        Indiana            Fever
## 2588            Atlanta            5        Indiana            Fever
## 2589            Atlanta            5        Indiana            Fever
## 2590            Atlanta            5        Indiana            Fever
## 2591            Atlanta            5        Indiana            Fever
## 2592            Atlanta            5        Indiana            Fever
## 2593            Atlanta            5        Indiana            Fever
## 2594            Atlanta            5        Indiana            Fever
## 2595            Atlanta            5        Indiana            Fever
## 2596            Atlanta            5        Indiana            Fever
## 2597            Atlanta            5        Indiana            Fever
## 2598            Atlanta            5        Indiana            Fever
## 2599            Atlanta            5        Indiana            Fever
## 2600            Atlanta            5        Indiana            Fever
## 2601            Atlanta            5        Indiana            Fever
## 2602            Atlanta            5        Indiana            Fever
## 2603            Atlanta            5        Indiana            Fever
## 2604            Atlanta            5        Indiana            Fever
## 2605            Atlanta            5        Indiana            Fever
## 2606            Atlanta            5        Indiana            Fever
## 2607            Atlanta            5        Indiana            Fever
## 2608            Atlanta            5        Indiana            Fever
## 2609            Atlanta            5        Indiana            Fever
## 2610            Atlanta            5        Indiana            Fever
## 2611            Atlanta            5        Indiana            Fever
## 2612            Atlanta            5        Indiana            Fever
## 2613            Atlanta            5        Indiana            Fever
## 2614            Atlanta            5        Indiana            Fever
## 2615            Atlanta            5        Indiana            Fever
## 2616            Atlanta            5        Indiana            Fever
## 2617            Atlanta            5        Indiana            Fever
## 2618            Atlanta            5        Indiana            Fever
## 2619            Atlanta            5        Indiana            Fever
## 2620            Atlanta            5        Indiana            Fever
## 2621            Atlanta            5        Indiana            Fever
## 2622            Atlanta            5        Indiana            Fever
## 2623            Atlanta            5        Indiana            Fever
## 2624            Atlanta            5        Indiana            Fever
## 2625            Atlanta            5        Indiana            Fever
## 2626            Atlanta            5        Indiana            Fever
## 2627            Atlanta            5        Indiana            Fever
## 2628            Atlanta            5        Indiana            Fever
## 2629            Atlanta            5        Indiana            Fever
## 2630            Atlanta            5        Indiana            Fever
## 2631            Atlanta            5        Indiana            Fever
## 2632            Atlanta            5        Indiana            Fever
## 2633            Atlanta            5        Indiana            Fever
## 2634            Atlanta            5        Indiana            Fever
## 2635            Atlanta            5        Indiana            Fever
## 2636            Atlanta            5        Indiana            Fever
## 2637            Atlanta            5        Indiana            Fever
## 2638            Atlanta            5        Indiana            Fever
## 2639            Atlanta            5        Indiana            Fever
## 2640            Atlanta            5        Indiana            Fever
## 2641            Atlanta            5        Indiana            Fever
## 2642            Atlanta            5        Indiana            Fever
## 2643            Atlanta            5        Indiana            Fever
## 2644            Atlanta            5        Indiana            Fever
## 2645            Atlanta            5        Indiana            Fever
## 2646            Atlanta            5        Indiana            Fever
## 2647            Atlanta            5        Indiana            Fever
## 2648            Atlanta            5        Indiana            Fever
## 2649            Atlanta            5        Indiana            Fever
## 2650            Atlanta            5        Indiana            Fever
## 2651            Atlanta            5        Indiana            Fever
## 2652            Atlanta            5        Indiana            Fever
## 2653            Atlanta            5        Indiana            Fever
## 2654            Atlanta            5        Indiana            Fever
## 2655            Atlanta            5        Indiana            Fever
## 2656            Atlanta            5        Indiana            Fever
## 2657            Atlanta            5        Indiana            Fever
## 2658            Atlanta            5        Indiana            Fever
## 2659           New York           16     Washington          Mystics
## 2660           New York           16     Washington          Mystics
## 2661           New York           16     Washington          Mystics
## 2662           New York           16     Washington          Mystics
## 2663           New York           16     Washington          Mystics
## 2664           New York           16     Washington          Mystics
## 2665           New York           16     Washington          Mystics
## 2666           New York           16     Washington          Mystics
## 2667           New York           16     Washington          Mystics
## 2668           New York           16     Washington          Mystics
## 2669           New York           16     Washington          Mystics
## 2670           New York           16     Washington          Mystics
## 2671           New York           16     Washington          Mystics
## 2672           New York           16     Washington          Mystics
## 2673           New York           16     Washington          Mystics
## 2674           New York           16     Washington          Mystics
## 2675           New York           16     Washington          Mystics
## 2676           New York           16     Washington          Mystics
## 2677           New York           16     Washington          Mystics
## 2678           New York           16     Washington          Mystics
## 2679           New York           16     Washington          Mystics
## 2680           New York           16     Washington          Mystics
## 2681           New York           16     Washington          Mystics
## 2682           New York           16     Washington          Mystics
## 2683           New York           16     Washington          Mystics
## 2684           New York           16     Washington          Mystics
## 2685           New York           16     Washington          Mystics
## 2686           New York           16     Washington          Mystics
## 2687           New York           16     Washington          Mystics
## 2688           New York           16     Washington          Mystics
## 2689           New York           16     Washington          Mystics
## 2690           New York           16     Washington          Mystics
## 2691           New York           16     Washington          Mystics
## 2692           New York           16     Washington          Mystics
## 2693           New York           16     Washington          Mystics
## 2694           New York           16     Washington          Mystics
## 2695           New York           16     Washington          Mystics
## 2696           New York           16     Washington          Mystics
## 2697           New York           16     Washington          Mystics
## 2698           New York           16     Washington          Mystics
## 2699           New York           16     Washington          Mystics
## 2700           New York           16     Washington          Mystics
## 2701           New York           16     Washington          Mystics
## 2702           New York           16     Washington          Mystics
## 2703           New York           16     Washington          Mystics
## 2704           New York           16     Washington          Mystics
## 2705           New York           16     Washington          Mystics
## 2706           New York           16     Washington          Mystics
## 2707           New York           16     Washington          Mystics
## 2708           New York           16     Washington          Mystics
## 2709           New York           16     Washington          Mystics
## 2710           New York           16     Washington          Mystics
## 2711           New York           16     Washington          Mystics
## 2712           New York           16     Washington          Mystics
## 2713           New York           16     Washington          Mystics
## 2714           New York           16     Washington          Mystics
## 2715           New York           16     Washington          Mystics
## 2716           New York           16     Washington          Mystics
## 2717           New York           16     Washington          Mystics
## 2718           New York           16     Washington          Mystics
## 2719           New York           16     Washington          Mystics
## 2720           New York           16     Washington          Mystics
## 2721           New York           16     Washington          Mystics
## 2722           New York           16     Washington          Mystics
## 2723           New York           16     Washington          Mystics
## 2724           New York           16     Washington          Mystics
## 2725           New York           16     Washington          Mystics
## 2726           New York           16     Washington          Mystics
## 2727           New York           16     Washington          Mystics
## 2728           New York           16     Washington          Mystics
## 2729           New York           16     Washington          Mystics
## 2730           New York           16     Washington          Mystics
## 2731           New York           16     Washington          Mystics
## 2732           New York           16     Washington          Mystics
## 2733           New York           16     Washington          Mystics
## 2734           New York           16     Washington          Mystics
## 2735           New York           16     Washington          Mystics
## 2736           New York           16     Washington          Mystics
## 2737           New York           16     Washington          Mystics
## 2738           New York           16     Washington          Mystics
## 2739           New York           16     Washington          Mystics
## 2740           New York           16     Washington          Mystics
## 2741           New York           16     Washington          Mystics
## 2742           New York           16     Washington          Mystics
## 2743           New York           16     Washington          Mystics
## 2744           New York           16     Washington          Mystics
## 2745           New York           16     Washington          Mystics
## 2746           New York           16     Washington          Mystics
## 2747           New York           16     Washington          Mystics
## 2748           New York           16     Washington          Mystics
## 2749           New York           16     Washington          Mystics
## 2750           New York           16     Washington          Mystics
## 2751           New York           16     Washington          Mystics
## 2752           New York           16     Washington          Mystics
## 2753           New York           16     Washington          Mystics
## 2754           New York           16     Washington          Mystics
## 2755           New York           16     Washington          Mystics
## 2756           New York           16     Washington          Mystics
## 2757           New York           16     Washington          Mystics
## 2758           New York           16     Washington          Mystics
## 2759           New York           16     Washington          Mystics
## 2760           New York           16     Washington          Mystics
## 2761           New York           16     Washington          Mystics
## 2762           New York           16     Washington          Mystics
## 2763           New York           16     Washington          Mystics
## 2764           New York           16     Washington          Mystics
## 2765           New York           16     Washington          Mystics
## 2766           New York           16     Washington          Mystics
## 2767           New York           16     Washington          Mystics
## 2768           New York           16     Washington          Mystics
## 2769           New York           16     Washington          Mystics
## 2770           New York           16     Washington          Mystics
## 2771           New York           16     Washington          Mystics
## 2772           New York           16     Washington          Mystics
## 2773           New York           16     Washington          Mystics
## 2774           New York           16     Washington          Mystics
## 2775           New York           16     Washington          Mystics
## 2776           New York           16     Washington          Mystics
## 2777           New York           16     Washington          Mystics
## 2778           New York           16     Washington          Mystics
## 2779           New York           16     Washington          Mystics
## 2780           New York           16     Washington          Mystics
## 2781           New York           16     Washington          Mystics
## 2782           New York           16     Washington          Mystics
## 2783           New York           16     Washington          Mystics
## 2784           New York           16     Washington          Mystics
## 2785           New York           16     Washington          Mystics
## 2786           New York           16     Washington          Mystics
## 2787           New York           16     Washington          Mystics
## 2788           New York           16     Washington          Mystics
## 2789           New York           16     Washington          Mystics
## 2790           New York           16     Washington          Mystics
## 2791           New York           16     Washington          Mystics
## 2792           New York           16     Washington          Mystics
## 2793           New York           16     Washington          Mystics
## 2794           New York           16     Washington          Mystics
## 2795           New York           16     Washington          Mystics
## 2796           New York           16     Washington          Mystics
## 2797           New York           16     Washington          Mystics
## 2798           New York           16     Washington          Mystics
## 2799           New York           16     Washington          Mystics
## 2800           New York           16     Washington          Mystics
## 2801           New York           16     Washington          Mystics
## 2802           New York           16     Washington          Mystics
## 2803           New York           16     Washington          Mystics
## 2804           New York           16     Washington          Mystics
## 2805           New York           16     Washington          Mystics
## 2806           New York           16     Washington          Mystics
## 2807           New York           16     Washington          Mystics
## 2808           New York           16     Washington          Mystics
## 2809           New York           16     Washington          Mystics
## 2810           New York           16     Washington          Mystics
## 2811           New York           16     Washington          Mystics
## 2812           New York           16     Washington          Mystics
## 2813           New York           16     Washington          Mystics
## 2814           New York           16     Washington          Mystics
## 2815           New York           16     Washington          Mystics
## 2816           New York           16     Washington          Mystics
## 2817           New York           16     Washington          Mystics
## 2818           New York           16     Washington          Mystics
## 2819           New York           16     Washington          Mystics
## 2820           New York           16     Washington          Mystics
## 2821           New York           16     Washington          Mystics
## 2822        Connecticut           11        Phoenix          Mercury
## 2823        Connecticut           11        Phoenix          Mercury
## 2824        Connecticut           11        Phoenix          Mercury
## 2825        Connecticut           11        Phoenix          Mercury
## 2826        Connecticut           11        Phoenix          Mercury
## 2827        Connecticut           11        Phoenix          Mercury
## 2828        Connecticut           11        Phoenix          Mercury
## 2829        Connecticut           11        Phoenix          Mercury
## 2830        Connecticut           11        Phoenix          Mercury
## 2831        Connecticut           11        Phoenix          Mercury
## 2832        Connecticut           11        Phoenix          Mercury
## 2833        Connecticut           11        Phoenix          Mercury
## 2834        Connecticut           11        Phoenix          Mercury
## 2835        Connecticut           11        Phoenix          Mercury
## 2836        Connecticut           11        Phoenix          Mercury
## 2837        Connecticut           11        Phoenix          Mercury
## 2838        Connecticut           11        Phoenix          Mercury
## 2839        Connecticut           11        Phoenix          Mercury
## 2840        Connecticut           11        Phoenix          Mercury
## 2841        Connecticut           11        Phoenix          Mercury
## 2842        Connecticut           11        Phoenix          Mercury
## 2843        Connecticut           11        Phoenix          Mercury
## 2844        Connecticut           11        Phoenix          Mercury
## 2845        Connecticut           11        Phoenix          Mercury
## 2846        Connecticut           11        Phoenix          Mercury
## 2847        Connecticut           11        Phoenix          Mercury
## 2848        Connecticut           11        Phoenix          Mercury
## 2849        Connecticut           11        Phoenix          Mercury
## 2850        Connecticut           11        Phoenix          Mercury
## 2851        Connecticut           11        Phoenix          Mercury
## 2852        Connecticut           11        Phoenix          Mercury
## 2853        Connecticut           11        Phoenix          Mercury
## 2854        Connecticut           11        Phoenix          Mercury
## 2855        Connecticut           11        Phoenix          Mercury
## 2856        Connecticut           11        Phoenix          Mercury
## 2857        Connecticut           11        Phoenix          Mercury
## 2858        Connecticut           11        Phoenix          Mercury
## 2859        Connecticut           11        Phoenix          Mercury
## 2860        Connecticut           11        Phoenix          Mercury
## 2861        Connecticut           11        Phoenix          Mercury
## 2862        Connecticut           11        Phoenix          Mercury
## 2863        Connecticut           11        Phoenix          Mercury
## 2864        Connecticut           11        Phoenix          Mercury
## 2865        Connecticut           11        Phoenix          Mercury
## 2866        Connecticut           11        Phoenix          Mercury
## 2867        Connecticut           11        Phoenix          Mercury
## 2868        Connecticut           11        Phoenix          Mercury
## 2869        Connecticut           11        Phoenix          Mercury
## 2870        Connecticut           11        Phoenix          Mercury
## 2871        Connecticut           11        Phoenix          Mercury
## 2872        Connecticut           11        Phoenix          Mercury
## 2873        Connecticut           11        Phoenix          Mercury
## 2874        Connecticut           11        Phoenix          Mercury
## 2875        Connecticut           11        Phoenix          Mercury
## 2876        Connecticut           11        Phoenix          Mercury
## 2877        Connecticut           11        Phoenix          Mercury
## 2878        Connecticut           11        Phoenix          Mercury
## 2879        Connecticut           11        Phoenix          Mercury
## 2880        Connecticut           11        Phoenix          Mercury
## 2881        Connecticut           11        Phoenix          Mercury
## 2882        Connecticut           11        Phoenix          Mercury
## 2883        Connecticut           11        Phoenix          Mercury
## 2884        Connecticut           11        Phoenix          Mercury
## 2885        Connecticut           11        Phoenix          Mercury
## 2886        Connecticut           11        Phoenix          Mercury
## 2887        Connecticut           11        Phoenix          Mercury
## 2888        Connecticut           11        Phoenix          Mercury
## 2889        Connecticut           11        Phoenix          Mercury
## 2890        Connecticut           11        Phoenix          Mercury
## 2891        Connecticut           11        Phoenix          Mercury
## 2892        Connecticut           11        Phoenix          Mercury
## 2893        Connecticut           11        Phoenix          Mercury
## 2894        Connecticut           11        Phoenix          Mercury
## 2895        Connecticut           11        Phoenix          Mercury
## 2896        Connecticut           11        Phoenix          Mercury
## 2897        Connecticut           11        Phoenix          Mercury
## 2898        Connecticut           11        Phoenix          Mercury
## 2899        Connecticut           11        Phoenix          Mercury
## 2900        Connecticut           11        Phoenix          Mercury
## 2901        Connecticut           11        Phoenix          Mercury
## 2902        Connecticut           11        Phoenix          Mercury
## 2903        Connecticut           11        Phoenix          Mercury
## 2904        Connecticut           11        Phoenix          Mercury
## 2905        Connecticut           11        Phoenix          Mercury
## 2906        Connecticut           11        Phoenix          Mercury
## 2907        Connecticut           11        Phoenix          Mercury
## 2908        Connecticut           11        Phoenix          Mercury
## 2909        Connecticut           11        Phoenix          Mercury
## 2910        Connecticut           11        Phoenix          Mercury
## 2911        Connecticut           11        Phoenix          Mercury
## 2912        Connecticut           11        Phoenix          Mercury
## 2913        Connecticut           11        Phoenix          Mercury
## 2914        Connecticut           11        Phoenix          Mercury
## 2915        Connecticut           11        Phoenix          Mercury
## 2916        Connecticut           11        Phoenix          Mercury
## 2917        Connecticut           11        Phoenix          Mercury
## 2918        Connecticut           11        Phoenix          Mercury
## 2919        Connecticut           11        Phoenix          Mercury
## 2920        Connecticut           11        Phoenix          Mercury
## 2921        Connecticut           11        Phoenix          Mercury
## 2922        Connecticut           11        Phoenix          Mercury
## 2923        Connecticut           11        Phoenix          Mercury
## 2924        Connecticut           11        Phoenix          Mercury
## 2925        Connecticut           11        Phoenix          Mercury
## 2926        Connecticut           11        Phoenix          Mercury
## 2927        Connecticut           11        Phoenix          Mercury
## 2928        Connecticut           11        Phoenix          Mercury
## 2929        Connecticut           11        Phoenix          Mercury
## 2930        Connecticut           11        Phoenix          Mercury
## 2931        Connecticut           11        Phoenix          Mercury
## 2932        Connecticut           11        Phoenix          Mercury
## 2933        Connecticut           11        Phoenix          Mercury
## 2934        Connecticut           11        Phoenix          Mercury
## 2935        Connecticut           11        Phoenix          Mercury
## 2936        Connecticut           11        Phoenix          Mercury
## 2937        Connecticut           11        Phoenix          Mercury
## 2938        Connecticut           11        Phoenix          Mercury
## 2939        Connecticut           11        Phoenix          Mercury
## 2940        Connecticut           11        Phoenix          Mercury
## 2941        Connecticut           11        Phoenix          Mercury
## 2942        Connecticut           11        Phoenix          Mercury
## 2943        Connecticut           11        Phoenix          Mercury
## 2944        Connecticut           11        Phoenix          Mercury
## 2945        Connecticut           11        Phoenix          Mercury
## 2946        Connecticut           11        Phoenix          Mercury
## 2947        Connecticut           11        Phoenix          Mercury
## 2948        Connecticut           11        Phoenix          Mercury
## 2949        Connecticut           11        Phoenix          Mercury
## 2950        Connecticut           11        Phoenix          Mercury
## 2951        Connecticut           11        Phoenix          Mercury
## 2952        Connecticut           11        Phoenix          Mercury
## 2953        Connecticut           11        Phoenix          Mercury
## 2954        Connecticut           11        Phoenix          Mercury
## 2955        Connecticut           11        Phoenix          Mercury
## 2956        Connecticut           11        Phoenix          Mercury
## 2957        Connecticut           11        Phoenix          Mercury
## 2958        Connecticut           11        Phoenix          Mercury
## 2959        Connecticut           11        Phoenix          Mercury
## 2960        Connecticut           11        Phoenix          Mercury
## 2961        Connecticut           11        Phoenix          Mercury
## 2962        Connecticut           11        Phoenix          Mercury
## 2963        Connecticut           11        Phoenix          Mercury
## 2964        Connecticut           11        Phoenix          Mercury
## 2965        Connecticut           11        Phoenix          Mercury
## 2966        Connecticut           11        Phoenix          Mercury
## 2967        Connecticut           11        Phoenix          Mercury
## 2968        Connecticut           11        Phoenix          Mercury
## 2969        Connecticut           11        Phoenix          Mercury
## 2970        Connecticut           11        Phoenix          Mercury
## 2971        Connecticut           11        Phoenix          Mercury
## 2972        Connecticut           11        Phoenix          Mercury
## 2973        Connecticut           11        Phoenix          Mercury
## 2974        Connecticut           11        Phoenix          Mercury
## 2975        Connecticut           11        Phoenix          Mercury
## 2976        Connecticut           11        Phoenix          Mercury
## 2977        Connecticut           11        Phoenix          Mercury
## 2978        Connecticut           11        Phoenix          Mercury
## 2979        Connecticut           11        Phoenix          Mercury
## 2980        Connecticut           11        Phoenix          Mercury
## 2981        Connecticut           11        Phoenix          Mercury
## 2982        Connecticut           11        Phoenix          Mercury
## 2983        Connecticut           11        Phoenix          Mercury
## 2984        Connecticut           11        Phoenix          Mercury
## 2985        Connecticut           11        Phoenix          Mercury
## 2986        Connecticut           11        Phoenix          Mercury
## 2987        Connecticut           11        Phoenix          Mercury
## 2988        Los Angeles           17      Las Vegas             Aces
## 2989        Los Angeles           17      Las Vegas             Aces
## 2990        Los Angeles           17      Las Vegas             Aces
## 2991        Los Angeles           17      Las Vegas             Aces
## 2992        Los Angeles           17      Las Vegas             Aces
## 2993        Los Angeles           17      Las Vegas             Aces
## 2994        Los Angeles           17      Las Vegas             Aces
## 2995        Los Angeles           17      Las Vegas             Aces
## 2996        Los Angeles           17      Las Vegas             Aces
## 2997        Los Angeles           17      Las Vegas             Aces
## 2998        Los Angeles           17      Las Vegas             Aces
## 2999        Los Angeles           17      Las Vegas             Aces
## 3000        Los Angeles           17      Las Vegas             Aces
## 3001        Los Angeles           17      Las Vegas             Aces
## 3002        Los Angeles           17      Las Vegas             Aces
## 3003        Los Angeles           17      Las Vegas             Aces
## 3004        Los Angeles           17      Las Vegas             Aces
## 3005        Los Angeles           17      Las Vegas             Aces
## 3006        Los Angeles           17      Las Vegas             Aces
## 3007        Los Angeles           17      Las Vegas             Aces
## 3008        Los Angeles           17      Las Vegas             Aces
## 3009        Los Angeles           17      Las Vegas             Aces
## 3010        Los Angeles           17      Las Vegas             Aces
## 3011        Los Angeles           17      Las Vegas             Aces
## 3012        Los Angeles           17      Las Vegas             Aces
## 3013        Los Angeles           17      Las Vegas             Aces
## 3014        Los Angeles           17      Las Vegas             Aces
## 3015        Los Angeles           17      Las Vegas             Aces
## 3016        Los Angeles           17      Las Vegas             Aces
## 3017        Los Angeles           17      Las Vegas             Aces
## 3018        Los Angeles           17      Las Vegas             Aces
## 3019        Los Angeles           17      Las Vegas             Aces
## 3020        Los Angeles           17      Las Vegas             Aces
## 3021        Los Angeles           17      Las Vegas             Aces
## 3022        Los Angeles           17      Las Vegas             Aces
## 3023        Los Angeles           17      Las Vegas             Aces
## 3024        Los Angeles           17      Las Vegas             Aces
## 3025        Los Angeles           17      Las Vegas             Aces
## 3026        Los Angeles           17      Las Vegas             Aces
## 3027        Los Angeles           17      Las Vegas             Aces
## 3028        Los Angeles           17      Las Vegas             Aces
## 3029        Los Angeles           17      Las Vegas             Aces
## 3030        Los Angeles           17      Las Vegas             Aces
##      home_team_abbrev home_team_name_alt clock_minutes clock_seconds half
## 1                  NY           New York             9            37    1
## 2                  NY           New York             9            16    1
## 3                  NY           New York             8            47    1
## 4                  NY           New York             8            23    1
## 5                  NY           New York             8            18    1
## 6                  NY           New York             8            05    1
## 7                  NY           New York             7            51    1
## 8                  NY           New York             7            31    1
## 9                  NY           New York             7            12    1
## 10                 NY           New York             6            58    1
## 11                 NY           New York             6            36    1
## 12                 NY           New York             6            36    1
## 13                 NY           New York             6            26    1
## 14                 NY           New York             6            22    1
## 15                 NY           New York             6            08    1
## 16                 NY           New York             6            02    1
## 17                 NY           New York             5            42    1
## 18                 NY           New York             5            28    1
## 19                 NY           New York             5            18    1
## 20                 NY           New York             5            04    1
## 21                 NY           New York             4            38    1
## 22                 NY           New York             4            30    1
## 23                 NY           New York             4            12    1
## 24                 NY           New York             4            00    1
## 25                 NY           New York             3            51    1
## 26                 NY           New York             3            41    1
## 27                 NY           New York             3            26    1
## 28                 NY           New York             3            19    1
## 29                 NY           New York             3            19    1
## 30                 NY           New York             3            06    1
## 31                 NY           New York             3            04    1
## 32                 NY           New York             3            03    1
## 33                 NY           New York             2            56    1
## 34                 NY           New York             2            49    1
## 35                 NY           New York             2            33    1
## 36                 NY           New York             2            27    1
## 37                 NY           New York             2            17    1
## 38                 NY           New York             2            03    1
## 39                 NY           New York             2            03    1
## 40                 NY           New York             2            03    1
## 41                 NY           New York             1            42    1
## 42                 NY           New York             1            30    1
## 43                 NY           New York             1            14    1
## 44                 NY           New York             1            07    1
## 45                 NY           New York             0          53.8    1
## 46                 NY           New York             0          39.8    1
## 47                 NY           New York             0          30.4    1
## 48                 NY           New York             9            27    1
## 49                 NY           New York             8            57    1
## 50                 NY           New York             8            38    1
## 51                 NY           New York             8            27    1
## 52                 NY           New York             8            27    1
## 53                 NY           New York             8            02    1
## 54                 NY           New York             7            58    1
## 55                 NY           New York             7            46    1
## 56                 NY           New York             7            46    1
## 57                 NY           New York             7            22    1
## 58                 NY           New York             7            07    1
## 59                 NY           New York             6            55    1
## 60                 NY           New York             6            46    1
## 61                 NY           New York             6            39    1
## 62                 NY           New York             6            30    1
## 63                 NY           New York             6            17    1
## 64                 NY           New York             6            06    1
## 65                 NY           New York             5            52    1
## 66                 NY           New York             5            33    1
## 67                 NY           New York             5            29    1
## 68                 NY           New York             5            19    1
## 69                 NY           New York             5            03    1
## 70                 NY           New York             4            52    1
## 71                 NY           New York             4            35    1
## 72                 NY           New York             3            59    1
## 73                 NY           New York             3            50    1
## 74                 NY           New York             3            38    1
## 75                 NY           New York             3            31    1
## 76                 NY           New York             3            22    1
## 77                 NY           New York             3            02    1
## 78                 NY           New York             2            45    1
## 79                 NY           New York             2            29    1
## 80                 NY           New York             2            14    1
## 81                 NY           New York             2            03    1
## 82                 NY           New York             2            03    1
## 83                 NY           New York             1            50    1
## 84                 NY           New York             1            35    1
## 85                 NY           New York             1            30    1
## 86                 NY           New York             1            02    1
## 87                 NY           New York             1            02    1
## 88                 NY           New York             0          50.1    1
## 89                 NY           New York             0          42.2    1
## 90                 NY           New York             0          31.2    1
## 91                 NY           New York             0          19.0    1
## 92                 NY           New York             0          19.0    1
## 93                 NY           New York             0           1.5    1
## 94                 NY           New York             9            44    2
## 95                 NY           New York             9            37    2
## 96                 NY           New York             9            18    2
## 97                 NY           New York             9            11    2
## 98                 NY           New York             8            55    2
## 99                 NY           New York             8            52    2
## 100                NY           New York             8            49    2
## 101                NY           New York             8            41    2
## 102                NY           New York             8            26    2
## 103                NY           New York             8            02    2
## 104                NY           New York             7            52    2
## 105                NY           New York             7            29    2
## 106                NY           New York             7            14    2
## 107                NY           New York             6            58    2
## 108                NY           New York             6            52    2
## 109                NY           New York             6            50    2
## 110                NY           New York             6            39    2
## 111                NY           New York             6            19    2
## 112                NY           New York             6            00    2
## 113                NY           New York             5            42    2
## 114                NY           New York             5            26    2
## 115                NY           New York             5            26    2
## 116                NY           New York             5            11    2
## 117                NY           New York             4            48    2
## 118                NY           New York             4            43    2
## 119                NY           New York             4            43    2
## 120                NY           New York             4            28    2
## 121                NY           New York             4            06    2
## 122                NY           New York             3            53    2
## 123                NY           New York             3            48    2
## 124                NY           New York             3            34    2
## 125                NY           New York             3            25    2
## 126                NY           New York             3            20    2
## 127                NY           New York             3            03    2
## 128                NY           New York             2            30    2
## 129                NY           New York             2            20    2
## 130                NY           New York             2            14    2
## 131                NY           New York             1            45    2
## 132                NY           New York             1            36    2
## 133                NY           New York             1            17    2
## 134                NY           New York             1            02    2
## 135                NY           New York             0          44.4    2
## 136                NY           New York             0          30.0    2
## 137                NY           New York             0           2.3    2
## 138                NY           New York             9            15    2
## 139                NY           New York             8            49    2
## 140                NY           New York             8            24    2
## 141                NY           New York             8            14    2
## 142                NY           New York             7            42    2
## 143                NY           New York             7            33    2
## 144                NY           New York             7            17    2
## 145                NY           New York             7            17    2
## 146                NY           New York             7            03    2
## 147                NY           New York             6            29    2
## 148                NY           New York             6            11    2
## 149                NY           New York             5            48    2
## 150                NY           New York             5            31    2
## 151                NY           New York             5            17    2
## 152                NY           New York             5            06    2
## 153                NY           New York             4            50    2
## 154                NY           New York             4            48    2
## 155                NY           New York             4            26    2
## 156                NY           New York             4            26    2
## 157                NY           New York             4            10    2
## 158                NY           New York             3            58    2
## 159                NY           New York             3            58    2
## 160                NY           New York             3            38    2
## 161                NY           New York             3            36    2
## 162                NY           New York             3            20    2
## 163                NY           New York             3            09    2
## 164                NY           New York             3            05    2
## 165                NY           New York             2            53    2
## 166                NY           New York             2            42    2
## 167                NY           New York             2            42    2
## 168                NY           New York             2            33    2
## 169                NY           New York             2            33    2
## 170                NY           New York             2            22    2
## 171                NY           New York             1            58    2
## 172                NY           New York             1            56    2
## 173                NY           New York             1            45    2
## 174                NY           New York             1            32    2
## 175                NY           New York             1            27    2
## 176                NY           New York             1            27    2
## 177                NY           New York             1            13    2
## 178                NY           New York             0          58.5    2
## 179                NY           New York             0          47.0    2
## 180                NY           New York             0          39.7    2
## 181                NY           New York             0          30.9    2
## 182                NY           New York             0          30.9    2
## 183                NY           New York             0          21.8    2
## 184                NY           New York             0          21.8    2
## 185                NY           New York             0           0.4    2
## 186               ATL            Atlanta             9            29    1
## 187               ATL            Atlanta             9            18    1
## 188               ATL            Atlanta             9            06    1
## 189               ATL            Atlanta             8            44    1
## 190               ATL            Atlanta             8            38    1
## 191               ATL            Atlanta             8            28    1
## 192               ATL            Atlanta             8            23    1
## 193               ATL            Atlanta             8            03    1
## 194               ATL            Atlanta             8            03    1
## 195               ATL            Atlanta             7            28    1
## 196               ATL            Atlanta             7            11    1
## 197               ATL            Atlanta             7            11    1
## 198               ATL            Atlanta             6            35    1
## 199               ATL            Atlanta             6            02    1
## 200               ATL            Atlanta             5            46    1
## 201               ATL            Atlanta             5            46    1
## 202               ATL            Atlanta             5            31    1
## 203               ATL            Atlanta             5            14    1
## 204               ATL            Atlanta             5            14    1
## 205               ATL            Atlanta             4            57    1
## 206               ATL            Atlanta             4            52    1
## 207               ATL            Atlanta             4            39    1
## 208               ATL            Atlanta             4            34    1
## 209               ATL            Atlanta             4            34    1
## 210               ATL            Atlanta             3            58    1
## 211               ATL            Atlanta             3            52    1
## 212               ATL            Atlanta             3            52    1
## 213               ATL            Atlanta             3            37    1
## 214               ATL            Atlanta             3            37    1
## 215               ATL            Atlanta             3            22    1
## 216               ATL            Atlanta             3            09    1
## 217               ATL            Atlanta             3            09    1
## 218               ATL            Atlanta             2            55    1
## 219               ATL            Atlanta             2            17    1
## 220               ATL            Atlanta             2            03    1
## 221               ATL            Atlanta             1            50    1
## 222               ATL            Atlanta             1            08    1
## 223               ATL            Atlanta             0          50.9    1
## 224               ATL            Atlanta             0          50.7    1
## 225               ATL            Atlanta             0          50.7    1
## 226               ATL            Atlanta             0          32.0    1
## 227               ATL            Atlanta             0          18.8    1
## 228               ATL            Atlanta             0          14.2    1
## 229               ATL            Atlanta             0          12.6    1
## 230               ATL            Atlanta             0           2.2    1
## 231               ATL            Atlanta             9            49    1
## 232               ATL            Atlanta             9            49    1
## 233               ATL            Atlanta             9            36    1
## 234               ATL            Atlanta             9            22    1
## 235               ATL            Atlanta             9            04    1
## 236               ATL            Atlanta             8            44    1
## 237               ATL            Atlanta             8            37    1
## 238               ATL            Atlanta             8            07    1
## 239               ATL            Atlanta             8            07    1
## 240               ATL            Atlanta             8            07    1
## 241               ATL            Atlanta             7            53    1
## 242               ATL            Atlanta             7            41    1
## 243               ATL            Atlanta             7            37    1
## 244               ATL            Atlanta             7            30    1
## 245               ATL            Atlanta             7            13    1
## 246               ATL            Atlanta             7            06    1
## 247               ATL            Atlanta             6            51    1
## 248               ATL            Atlanta             6            32    1
## 249               ATL            Atlanta             6            04    1
## 250               ATL            Atlanta             5            50    1
## 251               ATL            Atlanta             5            30    1
## 252               ATL            Atlanta             5            14    1
## 253               ATL            Atlanta             5            06    1
## 254               ATL            Atlanta             4            59    1
## 255               ATL            Atlanta             4            42    1
## 256               ATL            Atlanta             4            25    1
## 257               ATL            Atlanta             3            51    1
## 258               ATL            Atlanta             3            31    1
## 259               ATL            Atlanta             3            10    1
## 260               ATL            Atlanta             3            04    1
## 261               ATL            Atlanta             2            54    1
## 262               ATL            Atlanta             2            35    1
## 263               ATL            Atlanta             1            59    1
## 264               ATL            Atlanta             1            45    1
## 265               ATL            Atlanta             1            30    1
## 266               ATL            Atlanta             1            20    1
## 267               ATL            Atlanta             1            05    1
## 268               ATL            Atlanta             0          30.9    1
## 269               ATL            Atlanta             0          25.0    1
## 270               ATL            Atlanta             0           1.2    1
## 271               ATL            Atlanta             0           1.2    1
## 272               ATL            Atlanta             9            31    2
## 273               ATL            Atlanta             9            21    2
## 274               ATL            Atlanta             9            04    2
## 275               ATL            Atlanta             8            45    2
## 276               ATL            Atlanta             8            40    2
## 277               ATL            Atlanta             8            34    2
## 278               ATL            Atlanta             8            20    2
## 279               ATL            Atlanta             7            58    2
## 280               ATL            Atlanta             7            58    2
## 281               ATL            Atlanta             7            45    2
## 282               ATL            Atlanta             7            30    2
## 283               ATL            Atlanta             7            10    2
## 284               ATL            Atlanta             7            10    2
## 285               ATL            Atlanta             6            44    2
## 286               ATL            Atlanta             6            21    2
## 287               ATL            Atlanta             5            47    2
## 288               ATL            Atlanta             5            09    2
## 289               ATL            Atlanta             4            59    2
## 290               ATL            Atlanta             4            51    2
## 291               ATL            Atlanta             4            28    2
## 292               ATL            Atlanta             4            06    2
## 293               ATL            Atlanta             3            44    2
## 294               ATL            Atlanta             3            23    2
## 295               ATL            Atlanta             3            20    2
## 296               ATL            Atlanta             3            04    2
## 297               ATL            Atlanta             2            52    2
## 298               ATL            Atlanta             2            40    2
## 299               ATL            Atlanta             2            23    2
## 300               ATL            Atlanta             2            16    2
## 301               ATL            Atlanta             2            10    2
## 302               ATL            Atlanta             2            00    2
## 303               ATL            Atlanta             1            43    2
## 304               ATL            Atlanta             1            23    2
## 305               ATL            Atlanta             1            17    2
## 306               ATL            Atlanta             0          51.2    2
## 307               ATL            Atlanta             0          51.2    2
## 308               ATL            Atlanta             0          34.5    2
## 309               ATL            Atlanta             0          23.5    2
## 310               ATL            Atlanta             0          23.5    2
## 311               ATL            Atlanta             0           6.4    2
## 312               ATL            Atlanta             0           2.5    2
## 313               ATL            Atlanta             9            44    2
## 314               ATL            Atlanta             9            38    2
## 315               ATL            Atlanta             9            17    2
## 316               ATL            Atlanta             9            09    2
## 317               ATL            Atlanta             8            54    2
## 318               ATL            Atlanta             8            43    2
## 319               ATL            Atlanta             8            43    2
## 320               ATL            Atlanta             8            03    2
## 321               ATL            Atlanta             7            46    2
## 322               ATL            Atlanta             7            34    2
## 323               ATL            Atlanta             7            27    2
## 324               ATL            Atlanta             7            03    2
## 325               ATL            Atlanta             6            58    2
## 326               ATL            Atlanta             6            36    2
## 327               ATL            Atlanta             6            16    2
## 328               ATL            Atlanta             5            57    2
## 329               ATL            Atlanta             5            57    2
## 330               ATL            Atlanta             5            40    2
## 331               ATL            Atlanta             5            25    2
## 332               ATL            Atlanta             4            49    2
## 333               ATL            Atlanta             4            32    2
## 334               ATL            Atlanta             4            25    2
## 335               ATL            Atlanta             3            56    2
## 336               ATL            Atlanta             3            34    2
## 337               ATL            Atlanta             3            30    2
## 338               ATL            Atlanta             3            25    2
## 339               ATL            Atlanta             2            55    2
## 340               ATL            Atlanta             2            47    2
## 341               ATL            Atlanta             2            47    2
## 342               ATL            Atlanta             2            23    2
## 343               ATL            Atlanta             2            08    2
## 344               ATL            Atlanta             1            49    2
## 345               ATL            Atlanta             1            33    2
## 346               ATL            Atlanta             1            13    2
## 347               ATL            Atlanta             1            09    2
## 348               ATL            Atlanta             1            09    2
## 349               ATL            Atlanta             0          32.9    2
## 350               ATL            Atlanta             0          32.9    2
## 351               ATL            Atlanta             0          14.6    2
## 352               ATL            Atlanta             0           7.9    2
## 353               ATL            Atlanta             0           7.9    2
## 354               MIN          Minnesota             9            48    1
## 355               MIN          Minnesota             9            16    1
## 356               MIN          Minnesota             9            05    1
## 357               MIN          Minnesota             8            48    1
## 358               MIN          Minnesota             8            34    1
## 359               MIN          Minnesota             8            25    1
## 360               MIN          Minnesota             8            16    1
## 361               MIN          Minnesota             7            52    1
## 362               MIN          Minnesota             7            44    1
## 363               MIN          Minnesota             7            28    1
## 364               MIN          Minnesota             7            22    1
## 365               MIN          Minnesota             6            59    1
## 366               MIN          Minnesota             6            29    1
## 367               MIN          Minnesota             6            23    1
## 368               MIN          Minnesota             6            23    1
## 369               MIN          Minnesota             6            14    1
## 370               MIN          Minnesota             5            56    1
## 371               MIN          Minnesota             5            46    1
## 372               MIN          Minnesota             5            26    1
## 373               MIN          Minnesota             5            19    1
## 374               MIN          Minnesota             5            02    1
## 375               MIN          Minnesota             4            52    1
## 376               MIN          Minnesota             4            40    1
## 377               MIN          Minnesota             4            24    1
## 378               MIN          Minnesota             4            18    1
## 379               MIN          Minnesota             4            10    1
## 380               MIN          Minnesota             4            04    1
## 381               MIN          Minnesota             3            52    1
## 382               MIN          Minnesota             3            32    1
## 383               MIN          Minnesota             3            25    1
## 384               MIN          Minnesota             3            06    1
## 385               MIN          Minnesota             2            48    1
## 386               MIN          Minnesota             2            40    1
## 387               MIN          Minnesota             2            19    1
## 388               MIN          Minnesota             2            05    1
## 389               MIN          Minnesota             1            49    1
## 390               MIN          Minnesota             1            16    1
## 391               MIN          Minnesota             1            16    1
## 392               MIN          Minnesota             0          59.9    1
## 393               MIN          Minnesota             0          59.9    1
## 394               MIN          Minnesota             0          56.1    1
## 395               MIN          Minnesota             0          45.6    1
## 396               MIN          Minnesota             0          25.9    1
## 397               MIN          Minnesota             0           1.7    1
## 398               MIN          Minnesota             9            48    1
## 399               MIN          Minnesota             9            42    1
## 400               MIN          Minnesota             9            20    1
## 401               MIN          Minnesota             9            05    1
## 402               MIN          Minnesota             8            53    1
## 403               MIN          Minnesota             8            39    1
## 404               MIN          Minnesota             8            20    1
## 405               MIN          Minnesota             8            08    1
## 406               MIN          Minnesota             7            57    1
## 407               MIN          Minnesota             7            49    1
## 408               MIN          Minnesota             7            30    1
## 409               MIN          Minnesota             7            17    1
## 410               MIN          Minnesota             7            12    1
## 411               MIN          Minnesota             7            12    1
## 412               MIN          Minnesota             6            34    1
## 413               MIN          Minnesota             6            19    1
## 414               MIN          Minnesota             6            05    1
## 415               MIN          Minnesota             5            57    1
## 416               MIN          Minnesota             5            34    1
## 417               MIN          Minnesota             5            17    1
## 418               MIN          Minnesota             4            54    1
## 419               MIN          Minnesota             4            39    1
## 420               MIN          Minnesota             4            25    1
## 421               MIN          Minnesota             3            50    1
## 422               MIN          Minnesota             3            24    1
## 423               MIN          Minnesota             3            12    1
## 424               MIN          Minnesota             2            54    1
## 425               MIN          Minnesota             2            40    1
## 426               MIN          Minnesota             2            34    1
## 427               MIN          Minnesota             1            54    1
## 428               MIN          Minnesota             1            34    1
## 429               MIN          Minnesota             1            28    1
## 430               MIN          Minnesota             1            23    1
## 431               MIN          Minnesota             1            07    1
## 432               MIN          Minnesota             0          51.9    1
## 433               MIN          Minnesota             0          43.5    1
## 434               MIN          Minnesota             0          20.2    1
## 435               MIN          Minnesota             0           1.5    1
## 436               MIN          Minnesota             0           0.0    1
## 437               MIN          Minnesota             9            40    2
## 438               MIN          Minnesota             9            25    2
## 439               MIN          Minnesota             9            08    2
## 440               MIN          Minnesota             8            51    2
## 441               MIN          Minnesota             8            30    2
## 442               MIN          Minnesota             8            30    2
## 443               MIN          Minnesota             8            22    2
## 444               MIN          Minnesota             8            16    2
## 445               MIN          Minnesota             8            01    2
## 446               MIN          Minnesota             7            36    2
## 447               MIN          Minnesota             7            32    2
## 448               MIN          Minnesota             7            32    2
## 449               MIN          Minnesota             7            07    2
## 450               MIN          Minnesota             6            56    2
## 451               MIN          Minnesota             6            22    2
## 452               MIN          Minnesota             6            13    2
## 453               MIN          Minnesota             5            53    2
## 454               MIN          Minnesota             5            46    2
## 455               MIN          Minnesota             5            27    2
## 456               MIN          Minnesota             5            04    2
## 457               MIN          Minnesota             5            04    2
## 458               MIN          Minnesota             4            53    2
## 459               MIN          Minnesota             4            34    2
## 460               MIN          Minnesota             4            34    2
## 461               MIN          Minnesota             4            16    2
## 462               MIN          Minnesota             3            59    2
## 463               MIN          Minnesota             3            56    2
## 464               MIN          Minnesota             3            56    2
## 465               MIN          Minnesota             3            38    2
## 466               MIN          Minnesota             3            21    2
## 467               MIN          Minnesota             2            54    2
## 468               MIN          Minnesota             2            48    2
## 469               MIN          Minnesota             2            48    2
## 470               MIN          Minnesota             2            48    2
## 471               MIN          Minnesota             2            34    2
## 472               MIN          Minnesota             2            15    2
## 473               MIN          Minnesota             2            03    2
## 474               MIN          Minnesota             1            41    2
## 475               MIN          Minnesota             1            30    2
## 476               MIN          Minnesota             1            30    2
## 477               MIN          Minnesota             1            22    2
## 478               MIN          Minnesota             1            10    2
## 479               MIN          Minnesota             1            09    2
## 480               MIN          Minnesota             1            09    2
## 481               MIN          Minnesota             0          46.9    2
## 482               MIN          Minnesota             0          32.8    2
## 483               MIN          Minnesota             0          16.1    2
## 484               MIN          Minnesota             9            43    2
## 485               MIN          Minnesota             9            34    2
## 486               MIN          Minnesota             9            15    2
## 487               MIN          Minnesota             9            09    2
## 488               MIN          Minnesota             8            51    2
## 489               MIN          Minnesota             8            51    2
## 490               MIN          Minnesota             8            34    2
## 491               MIN          Minnesota             8            15    2
## 492               MIN          Minnesota             7            54    2
## 493               MIN          Minnesota             7            49    2
## 494               MIN          Minnesota             7            36    2
## 495               MIN          Minnesota             7            24    2
## 496               MIN          Minnesota             7            18    2
## 497               MIN          Minnesota             7            00    2
## 498               MIN          Minnesota             6            58    2
## 499               MIN          Minnesota             6            40    2
## 500               MIN          Minnesota             6            32    2
## 501               MIN          Minnesota             6            26    2
## 502               MIN          Minnesota             6            20    2
## 503               MIN          Minnesota             6            18    2
## 504               MIN          Minnesota             5            49    2
## 505               MIN          Minnesota             5            34    2
## 506               MIN          Minnesota             5            31    2
## 507               MIN          Minnesota             5            20    2
## 508               MIN          Minnesota             5            20    2
## 509               MIN          Minnesota             5            06    2
## 510               MIN          Minnesota             4            50    2
## 511               MIN          Minnesota             4            31    2
## 512               MIN          Minnesota             4            13    2
## 513               MIN          Minnesota             3            52    2
## 514               MIN          Minnesota             3            39    2
## 515               MIN          Minnesota             3            39    2
## 516               MIN          Minnesota             3            22    2
## 517               MIN          Minnesota             3            05    2
## 518               MIN          Minnesota             2            54    2
## 519               MIN          Minnesota             2            38    2
## 520               MIN          Minnesota             2            26    2
## 521               MIN          Minnesota             2            21    2
## 522               MIN          Minnesota             2            21    2
## 523               MIN          Minnesota             2            00    2
## 524               MIN          Minnesota             1            38    2
## 525               MIN          Minnesota             1            25    2
## 526               MIN          Minnesota             1            17    2
## 527               MIN          Minnesota             1            17    2
## 528               MIN          Minnesota             0          56.8    2
## 529               MIN          Minnesota             0          46.5    2
## 530               MIN          Minnesota             0          42.6    2
## 531               MIN          Minnesota             0          31.4    2
## 532               MIN          Minnesota             0          31.4    2
## 533               MIN          Minnesota             0           1.1    2
## 534                LA        Los Angeles             9            45    1
## 535                LA        Los Angeles             9            12    1
## 536                LA        Los Angeles             9            00    1
## 537                LA        Los Angeles             8            50    1
## 538                LA        Los Angeles             8            23    1
## 539                LA        Los Angeles             7            55    1
## 540                LA        Los Angeles             7            46    1
## 541                LA        Los Angeles             7            33    1
## 542                LA        Los Angeles             7            13    1
## 543                LA        Los Angeles             7            01    1
## 544                LA        Los Angeles             6            49    1
## 545                LA        Los Angeles             6            38    1
## 546                LA        Los Angeles             5            59    1
## 547                LA        Los Angeles             5            42    1
## 548                LA        Los Angeles             5            31    1
## 549                LA        Los Angeles             5            12    1
## 550                LA        Los Angeles             5            06    1
## 551                LA        Los Angeles             5            06    1
## 552                LA        Los Angeles             4            48    1
## 553                LA        Los Angeles             3            58    1
## 554                LA        Los Angeles             3            42    1
## 555                LA        Los Angeles             3            30    1
## 556                LA        Los Angeles             3            19    1
## 557                LA        Los Angeles             3            01    1
## 558                LA        Los Angeles             2            55    1
## 559                LA        Los Angeles             2            47    1
## 560                LA        Los Angeles             2            47    1
## 561                LA        Los Angeles             2            33    1
## 562                LA        Los Angeles             2            27    1
## 563                LA        Los Angeles             2            19    1
## 564                LA        Los Angeles             1            56    1
## 565                LA        Los Angeles             1            53    1
## 566                LA        Los Angeles             1            29    1
## 567                LA        Los Angeles             0          39.1    1
## 568                LA        Los Angeles             0          27.7    1
## 569                LA        Los Angeles             0          27.7    1
## 570                LA        Los Angeles             0           2.5    1
## 571                LA        Los Angeles             0           1.7    1
## 572                LA        Los Angeles             0           0.0    1
## 573                LA        Los Angeles             9            49    1
## 574                LA        Los Angeles             9            49    1
## 575                LA        Los Angeles             9            36    1
## 576                LA        Los Angeles             9            36    1
## 577                LA        Los Angeles             9            21    1
## 578                LA        Los Angeles             9            07    1
## 579                LA        Los Angeles             9            07    1
## 580                LA        Los Angeles             9            07    1
## 581                LA        Los Angeles             8            36    1
## 582                LA        Los Angeles             8            34    1
## 583                LA        Los Angeles             8            29    1
## 584                LA        Los Angeles             8            29    1
## 585                LA        Los Angeles             8            16    1
## 586                LA        Los Angeles             7            42    1
## 587                LA        Los Angeles             7            35    1
## 588                LA        Los Angeles             7            19    1
## 589                LA        Los Angeles             7            06    1
## 590                LA        Los Angeles             6            54    1
## 591                LA        Los Angeles             6            52    1
## 592                LA        Los Angeles             6            42    1
## 593                LA        Los Angeles             6            27    1
## 594                LA        Los Angeles             6            27    1
## 595                LA        Los Angeles             6            16    1
## 596                LA        Los Angeles             6            03    1
## 597                LA        Los Angeles             5            24    1
## 598                LA        Los Angeles             5            07    1
## 599                LA        Los Angeles             4            55    1
## 600                LA        Los Angeles             4            44    1
## 601                LA        Los Angeles             4            28    1
## 602                LA        Los Angeles             4            06    1
## 603                LA        Los Angeles             3            38    1
## 604                LA        Los Angeles             3            27    1
## 605                LA        Los Angeles             3            20    1
## 606                LA        Los Angeles             3            20    1
## 607                LA        Los Angeles             3            04    1
## 608                LA        Los Angeles             2            40    1
## 609                LA        Los Angeles             2            26    1
## 610                LA        Los Angeles             2            08    1
## 611                LA        Los Angeles             1            55    1
## 612                LA        Los Angeles             1            48    1
## 613                LA        Los Angeles             1            38    1
## 614                LA        Los Angeles             1            38    1
## 615                LA        Los Angeles             1            22    1
## 616                LA        Los Angeles             1            22    1
## 617                LA        Los Angeles             1            08    1
## 618                LA        Los Angeles             0          53.8    1
## 619                LA        Los Angeles             0          40.2    1
## 620                LA        Los Angeles             0           2.4    1
## 621                LA        Los Angeles             9            31    2
## 622                LA        Los Angeles             9            12    2
## 623                LA        Los Angeles             9            05    2
## 624                LA        Los Angeles             8            49    2
## 625                LA        Los Angeles             8            38    2
## 626                LA        Los Angeles             8            20    2
## 627                LA        Los Angeles             8            07    2
## 628                LA        Los Angeles             7            43    2
## 629                LA        Los Angeles             7            33    2
## 630                LA        Los Angeles             7            28    2
## 631                LA        Los Angeles             7            28    2
## 632                LA        Los Angeles             7            11    2
## 633                LA        Los Angeles             7            09    2
## 634                LA        Los Angeles             6            51    2
## 635                LA        Los Angeles             6            51    2
## 636                LA        Los Angeles             6            36    2
## 637                LA        Los Angeles             6            26    2
## 638                LA        Los Angeles             6            13    2
## 639                LA        Los Angeles             5            54    2
## 640                LA        Los Angeles             5            40    2
## 641                LA        Los Angeles             5            08    2
## 642                LA        Los Angeles             5            08    2
## 643                LA        Los Angeles             4            44    2
## 644                LA        Los Angeles             4            35    2
## 645                LA        Los Angeles             4            11    2
## 646                LA        Los Angeles             4            05    2
## 647                LA        Los Angeles             4            00    2
## 648                LA        Los Angeles             4            00    2
## 649                LA        Los Angeles             3            42    2
## 650                LA        Los Angeles             2            56    2
## 651                LA        Los Angeles             2            33    2
## 652                LA        Los Angeles             2            25    2
## 653                LA        Los Angeles             2            08    2
## 654                LA        Los Angeles             1            45    2
## 655                LA        Los Angeles             1            19    2
## 656                LA        Los Angeles             0          55.3    2
## 657                LA        Los Angeles             0          46.8    2
## 658                LA        Los Angeles             0          44.8    2
## 659                LA        Los Angeles             0          24.5    2
## 660                LA        Los Angeles             0          16.8    2
## 661                LA        Los Angeles             0          16.8    2
## 662                LA        Los Angeles             0           2.1    2
## 663                LA        Los Angeles             9            41    2
## 664                LA        Los Angeles             9            29    2
## 665                LA        Los Angeles             8            53    2
## 666                LA        Los Angeles             8            42    2
## 667                LA        Los Angeles             8            27    2
## 668                LA        Los Angeles             8            14    2
## 669                LA        Los Angeles             8            06    2
## 670                LA        Los Angeles             7            58    2
## 671                LA        Los Angeles             7            36    2
## 672                LA        Los Angeles             7            28    2
## 673                LA        Los Angeles             7            28    2
## 674                LA        Los Angeles             7            15    2
## 675                LA        Los Angeles             7            04    2
## 676                LA        Los Angeles             6            51    2
## 677                LA        Los Angeles             6            44    2
## 678                LA        Los Angeles             6            34    2
## 679                LA        Los Angeles             6            29    2
## 680                LA        Los Angeles             6            19    2
## 681                LA        Los Angeles             6            03    2
## 682                LA        Los Angeles             5            44    2
## 683                LA        Los Angeles             5            23    2
## 684                LA        Los Angeles             5            03    2
## 685                LA        Los Angeles             4            54    2
## 686                LA        Los Angeles             4            41    2
## 687                LA        Los Angeles             4            30    2
## 688                LA        Los Angeles             4            11    2
## 689                LA        Los Angeles             3            52    2
## 690                LA        Los Angeles             3            32    2
## 691                LA        Los Angeles             3            07    2
## 692                LA        Los Angeles             3            07    2
## 693                LA        Los Angeles             2            54    2
## 694                LA        Los Angeles             2            54    2
## 695                LA        Los Angeles             2            38    2
## 696                LA        Los Angeles             2            30    2
## 697                LA        Los Angeles             2            21    2
## 698                LA        Los Angeles             2            06    2
## 699                LA        Los Angeles             1            55    2
## 700                LA        Los Angeles             1            53    2
## 701                LA        Los Angeles             1            38    2
## 702                LA        Los Angeles             1            29    2
## 703                LA        Los Angeles             1            09    2
## 704                LA        Los Angeles             0          58.9    2
## 705                LA        Los Angeles             0          53.2    2
## 706                LA        Los Angeles             0          40.4    2
## 707                LA        Los Angeles             0          36.7    2
## 708                LA        Los Angeles             0          21.2    2
## 709                LA        Los Angeles             0          14.6    2
## 710                LA        Los Angeles             0           9.1    2
## 711                LA        Los Angeles             0           2.0    2
## 712               WSH         Washington             9            42    1
## 713               WSH         Washington             9            20    1
## 714               WSH         Washington             9            02    1
## 715               WSH         Washington             8            43    1
## 716               WSH         Washington             8            26    1
## 717               WSH         Washington             8            07    1
## 718               WSH         Washington             8            01    1
## 719               WSH         Washington             7            29    1
## 720               WSH         Washington             7            20    1
## 721               WSH         Washington             7            03    1
## 722               WSH         Washington             6            53    1
## 723               WSH         Washington             6            43    1
## 724               WSH         Washington             6            30    1
## 725               WSH         Washington             6            21    1
## 726               WSH         Washington             5            51    1
## 727               WSH         Washington             5            26    1
## 728               WSH         Washington             5            18    1
## 729               WSH         Washington             4            59    1
## 730               WSH         Washington             4            30    1
## 731               WSH         Washington             4            10    1
## 732               WSH         Washington             3            59    1
## 733               WSH         Washington             3            48    1
## 734               WSH         Washington             3            33    1
## 735               WSH         Washington             3            12    1
## 736               WSH         Washington             2            30    1
## 737               WSH         Washington             2            17    1
## 738               WSH         Washington             2            04    1
## 739               WSH         Washington             1            44    1
## 740               WSH         Washington             1            27    1
## 741               WSH         Washington             1            05    1
## 742               WSH         Washington             0          43.6    1
## 743               WSH         Washington             0          38.3    1
## 744               WSH         Washington             0          16.1    1
## 745               WSH         Washington             0           1.1    1
## 746               WSH         Washington             9            37    1
## 747               WSH         Washington             9            35    1
## 748               WSH         Washington             9            35    1
## 749               WSH         Washington             9            19    1
## 750               WSH         Washington             9            05    1
## 751               WSH         Washington             8            55    1
## 752               WSH         Washington             8            39    1
## 753               WSH         Washington             8            23    1
## 754               WSH         Washington             8            23    1
## 755               WSH         Washington             8            03    1
## 756               WSH         Washington             7            51    1
## 757               WSH         Washington             7            42    1
## 758               WSH         Washington             7            23    1
## 759               WSH         Washington             7            21    1
## 760               WSH         Washington             7            13    1
## 761               WSH         Washington             7            07    1
## 762               WSH         Washington             7            06    1
## 763               WSH         Washington             7            06    1
## 764               WSH         Washington             6            49    1
## 765               WSH         Washington             6            49    1
## 766               WSH         Washington             6            18    1
## 767               WSH         Washington             6            18    1
## 768               WSH         Washington             5            54    1
## 769               WSH         Washington             5            36    1
## 770               WSH         Washington             5            21    1
## 771               WSH         Washington             5            13    1
## 772               WSH         Washington             5            13    1
## 773               WSH         Washington             5            13    1
## 774               WSH         Washington             4            51    1
## 775               WSH         Washington             4            46    1
## 776               WSH         Washington             4            35    1
## 777               WSH         Washington             4            29    1
## 778               WSH         Washington             4            17    1
## 779               WSH         Washington             3            56    1
## 780               WSH         Washington             3            49    1
## 781               WSH         Washington             3            49    1
## 782               WSH         Washington             3            24    1
## 783               WSH         Washington             3            24    1
## 784               WSH         Washington             3            00    1
## 785               WSH         Washington             2            52    1
## 786               WSH         Washington             2            52    1
## 787               WSH         Washington             2            35    1
## 788               WSH         Washington             2            22    1
## 789               WSH         Washington             2            13    1
## 790               WSH         Washington             2            01    1
## 791               WSH         Washington             1            48    1
## 792               WSH         Washington             1            32    1
## 793               WSH         Washington             1            21    1
## 794               WSH         Washington             1            17    1
## 795               WSH         Washington             1            17    1
## 796               WSH         Washington             0          56.9    1
## 797               WSH         Washington             0          37.1    1
## 798               WSH         Washington             0          27.8    1
## 799               WSH         Washington             0          23.2    1
## 800               WSH         Washington             0          23.2    1
## 801               WSH         Washington             0           2.8    1
## 802               WSH         Washington             0           2.8    1
## 803               WSH         Washington             0           0.1    1
## 804               WSH         Washington             9            40    2
## 805               WSH         Washington             9            07    2
## 806               WSH         Washington             9            04    2
## 807               WSH         Washington             8            52    2
## 808               WSH         Washington             8            49    2
## 809               WSH         Washington             8            30    2
## 810               WSH         Washington             8            06    2
## 811               WSH         Washington             7            48    2
## 812               WSH         Washington             7            19    2
## 813               WSH         Washington             7            19    2
## 814               WSH         Washington             7            06    2
## 815               WSH         Washington             6            41    2
## 816               WSH         Washington             6            38    2
## 817               WSH         Washington             6            11    2
## 818               WSH         Washington             6            00    2
## 819               WSH         Washington             5            36    2
## 820               WSH         Washington             5            27    2
## 821               WSH         Washington             5            23    2
## 822               WSH         Washington             5            17    2
## 823               WSH         Washington             5            17    2
## 824               WSH         Washington             5            02    2
## 825               WSH         Washington             4            54    2
## 826               WSH         Washington             4            54    2
## 827               WSH         Washington             4            54    2
## 828               WSH         Washington             4            34    2
## 829               WSH         Washington             3            53    2
## 830               WSH         Washington             3            23    2
## 831               WSH         Washington             2            46    2
## 832               WSH         Washington             2            12    2
## 833               WSH         Washington             2            03    2
## 834               WSH         Washington             1            53    2
## 835               WSH         Washington             1            29    2
## 836               WSH         Washington             1            05    2
## 837               WSH         Washington             0          57.0    2
## 838               WSH         Washington             0          48.6    2
## 839               WSH         Washington             0          38.1    2
## 840               WSH         Washington             0          11.7    2
## 841               WSH         Washington             0           3.2    2
## 842               WSH         Washington             9            46    2
## 843               WSH         Washington             9            28    2
## 844               WSH         Washington             9            09    2
## 845               WSH         Washington             8            55    2
## 846               WSH         Washington             8            32    2
## 847               WSH         Washington             8            23    2
## 848               WSH         Washington             7            56    2
## 849               WSH         Washington             7            55    2
## 850               WSH         Washington             7            36    2
## 851               WSH         Washington             7            21    2
## 852               WSH         Washington             6            59    2
## 853               WSH         Washington             6            46    2
## 854               WSH         Washington             6            27    2
## 855               WSH         Washington             6            10    2
## 856               WSH         Washington             6            00    2
## 857               WSH         Washington             5            40    2
## 858               WSH         Washington             5            40    2
## 859               WSH         Washington             5            19    2
## 860               WSH         Washington             4            56    2
## 861               WSH         Washington             4            46    2
## 862               WSH         Washington             4            46    2
## 863               WSH         Washington             4            28    2
## 864               WSH         Washington             4            18    2
## 865               WSH         Washington             4            18    2
## 866               WSH         Washington             3            19    2
## 867               WSH         Washington             2            55    2
## 868               WSH         Washington             2            38    2
## 869               WSH         Washington             2            24    2
## 870               WSH         Washington             2            13    2
## 871               WSH         Washington             2            13    2
## 872               WSH         Washington             2            03    2
## 873               WSH         Washington             1            47    2
## 874               WSH         Washington             1            38    2
## 875               WSH         Washington             1            38    2
## 876               WSH         Washington             1            27    2
## 877               WSH         Washington             1            09    2
## 878               WSH         Washington             0          46.9    2
## 879               WSH         Washington             0          29.4    2
## 880               WSH         Washington             0          20.2    2
## 881               WSH         Washington             0          13.7    2
## 882               WSH         Washington             0          11.9    2
## 883               WSH         Washington             0          11.9    2
## 884               SEA            Seattle             9            44    1
## 885               SEA            Seattle             9            36    1
## 886               SEA            Seattle             9            36    1
## 887               SEA            Seattle             9            26    1
## 888               SEA            Seattle             9            07    1
## 889               SEA            Seattle             8            54    1
## 890               SEA            Seattle             8            31    1
## 891               SEA            Seattle             8            23    1
## 892               SEA            Seattle             8            12    1
## 893               SEA            Seattle             7            57    1
## 894               SEA            Seattle             7            49    1
## 895               SEA            Seattle             7            45    1
## 896               SEA            Seattle             7            38    1
## 897               SEA            Seattle             7            22    1
## 898               SEA            Seattle             7            10    1
## 899               SEA            Seattle             7            04    1
## 900               SEA            Seattle             6            47    1
## 901               SEA            Seattle             6            47    1
## 902               SEA            Seattle             6            35    1
## 903               SEA            Seattle             6            24    1
## 904               SEA            Seattle             6            12    1
## 905               SEA            Seattle             6            01    1
## 906               SEA            Seattle             5            51    1
## 907               SEA            Seattle             5            32    1
## 908               SEA            Seattle             5            18    1
## 909               SEA            Seattle             5            03    1
## 910               SEA            Seattle             4            46    1
## 911               SEA            Seattle             4            34    1
## 912               SEA            Seattle             4            14    1
## 913               SEA            Seattle             4            05    1
## 914               SEA            Seattle             3            37    1
## 915               SEA            Seattle             3            23    1
## 916               SEA            Seattle             3            04    1
## 917               SEA            Seattle             3            02    1
## 918               SEA            Seattle             3            02    1
## 919               SEA            Seattle             2            50    1
## 920               SEA            Seattle             2            34    1
## 921               SEA            Seattle             2            11    1
## 922               SEA            Seattle             1            56    1
## 923               SEA            Seattle             1            39    1
## 924               SEA            Seattle             1            14    1
## 925               SEA            Seattle             0          58.3    1
## 926               SEA            Seattle             0          47.6    1
## 927               SEA            Seattle             0          27.6    1
## 928               SEA            Seattle             0          13.0    1
## 929               SEA            Seattle             0           0.0    1
## 930               SEA            Seattle             9            24    1
## 931               SEA            Seattle             9            15    1
## 932               SEA            Seattle             8            54    1
## 933               SEA            Seattle             8            31    1
## 934               SEA            Seattle             8            26    1
## 935               SEA            Seattle             8            03    1
## 936               SEA            Seattle             8            03    1
## 937               SEA            Seattle             7            44    1
## 938               SEA            Seattle             7            34    1
## 939               SEA            Seattle             7            21    1
## 940               SEA            Seattle             7            20    1
## 941               SEA            Seattle             7            14    1
## 942               SEA            Seattle             7            14    1
## 943               SEA            Seattle             6            59    1
## 944               SEA            Seattle             6            46    1
## 945               SEA            Seattle             6            43    1
## 946               SEA            Seattle             6            33    1
## 947               SEA            Seattle             6            12    1
## 948               SEA            Seattle             5            57    1
## 949               SEA            Seattle             5            48    1
## 950               SEA            Seattle             5            35    1
## 951               SEA            Seattle             5            35    1
## 952               SEA            Seattle             5            25    1
## 953               SEA            Seattle             5            01    1
## 954               SEA            Seattle             4            53    1
## 955               SEA            Seattle             4            42    1
## 956               SEA            Seattle             4            29    1
## 957               SEA            Seattle             4            29    1
## 958               SEA            Seattle             4            14    1
## 959               SEA            Seattle             3            51    1
## 960               SEA            Seattle             3            41    1
## 961               SEA            Seattle             3            22    1
## 962               SEA            Seattle             3            04    1
## 963               SEA            Seattle             2            45    1
## 964               SEA            Seattle             2            45    1
## 965               SEA            Seattle             2            24    1
## 966               SEA            Seattle             2            15    1
## 967               SEA            Seattle             2            03    1
## 968               SEA            Seattle             1            47    1
## 969               SEA            Seattle             1            43    1
## 970               SEA            Seattle             1            30    1
## 971               SEA            Seattle             1            22    1
## 972               SEA            Seattle             1            07    1
## 973               SEA            Seattle             0          30.3    1
## 974               SEA            Seattle             0          24.2    1
## 975               SEA            Seattle             9            45    2
## 976               SEA            Seattle             9            26    2
## 977               SEA            Seattle             9            13    2
## 978               SEA            Seattle             8            57    2
## 979               SEA            Seattle             8            45    2
## 980               SEA            Seattle             8            26    2
## 981               SEA            Seattle             8            15    2
## 982               SEA            Seattle             8            01    2
## 983               SEA            Seattle             7            43    2
## 984               SEA            Seattle             7            32    2
## 985               SEA            Seattle             7            19    2
## 986               SEA            Seattle             7            02    2
## 987               SEA            Seattle             6            46    2
## 988               SEA            Seattle             6            26    2
## 989               SEA            Seattle             6            01    2
## 990               SEA            Seattle             5            41    2
## 991               SEA            Seattle             5            14    2
## 992               SEA            Seattle             5            08    2
## 993               SEA            Seattle             5            00    2
## 994               SEA            Seattle             4            41    2
## 995               SEA            Seattle             4            41    2
## 996               SEA            Seattle             4            15    2
## 997               SEA            Seattle             3            56    2
## 998               SEA            Seattle             3            56    2
## 999               SEA            Seattle             3            45    2
## 1000              SEA            Seattle             3            10    2
## 1001              SEA            Seattle             2            47    2
## 1002              SEA            Seattle             2            34    2
## 1003              SEA            Seattle             2            10    2
## 1004              SEA            Seattle             1            54    2
## 1005              SEA            Seattle             1            42    2
## 1006              SEA            Seattle             1            34    2
## 1007              SEA            Seattle             1            34    2
## 1008              SEA            Seattle             1            17    2
## 1009              SEA            Seattle             1            06    2
## 1010              SEA            Seattle             0          57.5    2
## 1011              SEA            Seattle             0          47.6    2
## 1012              SEA            Seattle             0          40.6    2
## 1013              SEA            Seattle             0          30.8    2
## 1014              SEA            Seattle             0          13.2    2
## 1015              SEA            Seattle             0           0.5    2
## 1016              SEA            Seattle             0           0.5    2
## 1017              SEA            Seattle             9            46    2
## 1018              SEA            Seattle             9            31    2
## 1019              SEA            Seattle             9            09    2
## 1020              SEA            Seattle             9            09    2
## 1021              SEA            Seattle             8            59    2
## 1022              SEA            Seattle             8            43    2
## 1023              SEA            Seattle             8            39    2
## 1024              SEA            Seattle             8            21    2
## 1025              SEA            Seattle             8            11    2
## 1026              SEA            Seattle             8            05    2
## 1027              SEA            Seattle             8            05    2
## 1028              SEA            Seattle             7            48    2
## 1029              SEA            Seattle             7            40    2
## 1030              SEA            Seattle             7            33    2
## 1031              SEA            Seattle             7            24    2
## 1032              SEA            Seattle             7            13    2
## 1033              SEA            Seattle             6            52    2
## 1034              SEA            Seattle             6            40    2
## 1035              SEA            Seattle             6            21    2
## 1036              SEA            Seattle             6            09    2
## 1037              SEA            Seattle             6            09    2
## 1038              SEA            Seattle             5            59    2
## 1039              SEA            Seattle             5            50    2
## 1040              SEA            Seattle             5            32    2
## 1041              SEA            Seattle             5            18    2
## 1042              SEA            Seattle             4            59    2
## 1043              SEA            Seattle             4            41    2
## 1044              SEA            Seattle             4            26    2
## 1045              SEA            Seattle             4            01    2
## 1046              SEA            Seattle             3            49    2
## 1047              SEA            Seattle             3            27    2
## 1048              SEA            Seattle             3            04    2
## 1049              SEA            Seattle             2            58    2
## 1050              SEA            Seattle             2            50    2
## 1051              SEA            Seattle             2            35    2
## 1052              SEA            Seattle             2            28    2
## 1053              SEA            Seattle             2            19    2
## 1054              SEA            Seattle             2            00    2
## 1055              SEA            Seattle             1            53    2
## 1056              SEA            Seattle             1            44    2
## 1057              SEA            Seattle             1            27    2
## 1058              SEA            Seattle             1            17    2
## 1059              SEA            Seattle             0          59.9    2
## 1060              SEA            Seattle             0          52.5    2
## 1061              SEA            Seattle             0          32.1    2
## 1062              SEA            Seattle             0          26.1    2
## 1063              SEA            Seattle             0           4.2    2
## 1064              IND            Indiana             9            47    1
## 1065              IND            Indiana             9            32    1
## 1066              IND            Indiana             9            17    1
## 1067              IND            Indiana             9            05    1
## 1068              IND            Indiana             9            05    1
## 1069              IND            Indiana             8            54    1
## 1070              IND            Indiana             8            38    1
## 1071              IND            Indiana             8            38    1
## 1072              IND            Indiana             8            30    1
## 1073              IND            Indiana             8            29    1
## 1074              IND            Indiana             8            12    1
## 1075              IND            Indiana             8            02    1
## 1076              IND            Indiana             7            50    1
## 1077              IND            Indiana             7            30    1
## 1078              IND            Indiana             7            21    1
## 1079              IND            Indiana             7            03    1
## 1080              IND            Indiana             7            03    1
## 1081              IND            Indiana             6            50    1
## 1082              IND            Indiana             6            34    1
## 1083              IND            Indiana             6            26    1
## 1084              IND            Indiana             6            26    1
## 1085              IND            Indiana             6            07    1
## 1086              IND            Indiana             5            52    1
## 1087              IND            Indiana             5            52    1
## 1088              IND            Indiana             5            38    1
## 1089              IND            Indiana             5            29    1
## 1090              IND            Indiana             5            19    1
## 1091              IND            Indiana             5            05    1
## 1092              IND            Indiana             4            50    1
## 1093              IND            Indiana             4            35    1
## 1094              IND            Indiana             4            27    1
## 1095              IND            Indiana             3            57    1
## 1096              IND            Indiana             3            38    1
## 1097              IND            Indiana             3            38    1
## 1098              IND            Indiana             3            36    1
## 1099              IND            Indiana             3            36    1
## 1100              IND            Indiana             3            09    1
## 1101              IND            Indiana             2            49    1
## 1102              IND            Indiana             2            37    1
## 1103              IND            Indiana             2            24    1
## 1104              IND            Indiana             2            24    1
## 1105              IND            Indiana             2            09    1
## 1106              IND            Indiana             1            56    1
## 1107              IND            Indiana             1            21    1
## 1108              IND            Indiana             1            14    1
## 1109              IND            Indiana             1            07    1
## 1110              IND            Indiana             0          52.2    1
## 1111              IND            Indiana             0          40.9    1
## 1112              IND            Indiana             0          27.0    1
## 1113              IND            Indiana             0           4.4    1
## 1114              IND            Indiana             0           0.0    1
## 1115              IND            Indiana             9            43    1
## 1116              IND            Indiana             9            17    1
## 1117              IND            Indiana             9            02    1
## 1118              IND            Indiana             8            59    1
## 1119              IND            Indiana             8            47    1
## 1120              IND            Indiana             8            32    1
## 1121              IND            Indiana             8            23    1
## 1122              IND            Indiana             8            13    1
## 1123              IND            Indiana             8            01    1
## 1124              IND            Indiana             7            46    1
## 1125              IND            Indiana             7            32    1
## 1126              IND            Indiana             7            20    1
## 1127              IND            Indiana             6            56    1
## 1128              IND            Indiana             6            35    1
## 1129              IND            Indiana             6            24    1
## 1130              IND            Indiana             6            02    1
## 1131              IND            Indiana             5            53    1
## 1132              IND            Indiana             5            28    1
## 1133              IND            Indiana             5            16    1
## 1134              IND            Indiana             5            16    1
## 1135              IND            Indiana             4            57    1
## 1136              IND            Indiana             4            44    1
## 1137              IND            Indiana             4            33    1
## 1138              IND            Indiana             4            17    1
## 1139              IND            Indiana             4            14    1
## 1140              IND            Indiana             3            59    1
## 1141              IND            Indiana             3            52    1
## 1142              IND            Indiana             3            52    1
## 1143              IND            Indiana             3            45    1
## 1144              IND            Indiana             3            33    1
## 1145              IND            Indiana             3            07    1
## 1146              IND            Indiana             2            50    1
## 1147              IND            Indiana             2            28    1
## 1148              IND            Indiana             2            11    1
## 1149              IND            Indiana             1            38    1
## 1150              IND            Indiana             1            16    1
## 1151              IND            Indiana             1            15    1
## 1152              IND            Indiana             1            03    1
## 1153              IND            Indiana             1            00    1
## 1154              IND            Indiana             0          29.5    1
## 1155              IND            Indiana             0          29.5    1
## 1156              IND            Indiana             0           2.8    1
## 1157              IND            Indiana             9            44    2
## 1158              IND            Indiana             9            38    2
## 1159              IND            Indiana             9            13    2
## 1160              IND            Indiana             9            13    2
## 1161              IND            Indiana             8            56    2
## 1162              IND            Indiana             8            36    2
## 1163              IND            Indiana             8            28    2
## 1164              IND            Indiana             8            19    2
## 1165              IND            Indiana             8            00    2
## 1166              IND            Indiana             6            57    2
## 1167              IND            Indiana             6            51    2
## 1168              IND            Indiana             6            51    2
## 1169              IND            Indiana             6            35    2
## 1170              IND            Indiana             6            17    2
## 1171              IND            Indiana             6            11    2
## 1172              IND            Indiana             6            04    2
## 1173              IND            Indiana             5            49    2
## 1174              IND            Indiana             5            15    2
## 1175              IND            Indiana             5            11    2
## 1176              IND            Indiana             5            00    2
## 1177              IND            Indiana             4            45    2
## 1178              IND            Indiana             4            12    2
## 1179              IND            Indiana             4            04    2
## 1180              IND            Indiana             3            45    2
## 1181              IND            Indiana             3            38    2
## 1182              IND            Indiana             3            04    2
## 1183              IND            Indiana             3            01    2
## 1184              IND            Indiana             2            57    2
## 1185              IND            Indiana             2            39    2
## 1186              IND            Indiana             2            10    2
## 1187              IND            Indiana             2            03    2
## 1188              IND            Indiana             1            51    2
## 1189              IND            Indiana             1            34    2
## 1190              IND            Indiana             1            20    2
## 1191              IND            Indiana             1            10    2
## 1192              IND            Indiana             0          57.5    2
## 1193              IND            Indiana             0          38.3    2
## 1194              IND            Indiana             0          20.3    2
## 1195              IND            Indiana             0           2.0    2
## 1196              IND            Indiana             0           2.0    2
## 1197              IND            Indiana             0           0.0    2
## 1198              IND            Indiana             9            46    2
## 1199              IND            Indiana             9            34    2
## 1200              IND            Indiana             9            20    2
## 1201              IND            Indiana             9            09    2
## 1202              IND            Indiana             8            53    2
## 1203              IND            Indiana             8            34    2
## 1204              IND            Indiana             8            29    2
## 1205              IND            Indiana             8            17    2
## 1206              IND            Indiana             8            00    2
## 1207              IND            Indiana             8            00    2
## 1208              IND            Indiana             7            33    2
## 1209              IND            Indiana             7            22    2
## 1210              IND            Indiana             7            10    2
## 1211              IND            Indiana             6            52    2
## 1212              IND            Indiana             6            39    2
## 1213              IND            Indiana             6            33    2
## 1214              IND            Indiana             6            00    2
## 1215              IND            Indiana             5            51    2
## 1216              IND            Indiana             5            48    2
## 1217              IND            Indiana             5            32    2
## 1218              IND            Indiana             4            52    2
## 1219              IND            Indiana             4            14    2
## 1220              IND            Indiana             4            00    2
## 1221              IND            Indiana             3            48    2
## 1222              IND            Indiana             3            41    2
## 1223              IND            Indiana             3            26    2
## 1224              IND            Indiana             3            16    2
## 1225              IND            Indiana             3            03    2
## 1226              IND            Indiana             2            35    2
## 1227              IND            Indiana             2            15    2
## 1228              IND            Indiana             2            11    2
## 1229              IND            Indiana             2            11    2
## 1230              IND            Indiana             1            58    2
## 1231              IND            Indiana             1            45    2
## 1232              IND            Indiana             1            17    2
## 1233              IND            Indiana             1            10    2
## 1234              IND            Indiana             1            07    2
## 1235              IND            Indiana             1            00    2
## 1236              IND            Indiana             1            00    2
## 1237              IND            Indiana             0          54.3    2
## 1238              IND            Indiana             0          26.9    2
## 1239              IND            Indiana             0          20.1    2
## 1240             CONN        Connecticut             9            50    1
## 1241             CONN        Connecticut             9            32    1
## 1242             CONN        Connecticut             9            24    1
## 1243             CONN        Connecticut             9            06    1
## 1244             CONN        Connecticut             8            52    1
## 1245             CONN        Connecticut             8            50    1
## 1246             CONN        Connecticut             8            26    1
## 1247             CONN        Connecticut             8            02    1
## 1248             CONN        Connecticut             7            49    1
## 1249             CONN        Connecticut             7            28    1
## 1250             CONN        Connecticut             7            12    1
## 1251             CONN        Connecticut             6            57    1
## 1252             CONN        Connecticut             6            38    1
## 1253             CONN        Connecticut             6            08    1
## 1254             CONN        Connecticut             5            57    1
## 1255             CONN        Connecticut             5            47    1
## 1256             CONN        Connecticut             5            19    1
## 1257             CONN        Connecticut             5            13    1
## 1258             CONN        Connecticut             5            11    1
## 1259             CONN        Connecticut             4            50    1
## 1260             CONN        Connecticut             4            35    1
## 1261             CONN        Connecticut             4            33    1
## 1262             CONN        Connecticut             4            23    1
## 1263             CONN        Connecticut             4            05    1
## 1264             CONN        Connecticut             3            44    1
## 1265             CONN        Connecticut             3            44    1
## 1266             CONN        Connecticut             3            21    1
## 1267             CONN        Connecticut             2            56    1
## 1268             CONN        Connecticut             2            47    1
## 1269             CONN        Connecticut             2            24    1
## 1270             CONN        Connecticut             1            48    1
## 1271             CONN        Connecticut             1            39    1
## 1272             CONN        Connecticut             1            24    1
## 1273             CONN        Connecticut             0          55.7    1
## 1274             CONN        Connecticut             0          16.9    1
## 1275             CONN        Connecticut             0           0.1    1
## 1276             CONN        Connecticut             9            44    1
## 1277             CONN        Connecticut             9            37    1
## 1278             CONN        Connecticut             9            26    1
## 1279             CONN        Connecticut             9            14    1
## 1280             CONN        Connecticut             8            29    1
## 1281             CONN        Connecticut             8            19    1
## 1282             CONN        Connecticut             8            01    1
## 1283             CONN        Connecticut             7            48    1
## 1284             CONN        Connecticut             7            24    1
## 1285             CONN        Connecticut             7            09    1
## 1286             CONN        Connecticut             6            55    1
## 1287             CONN        Connecticut             6            35    1
## 1288             CONN        Connecticut             6            28    1
## 1289             CONN        Connecticut             6            28    1
## 1290             CONN        Connecticut             6            16    1
## 1291             CONN        Connecticut             6            13    1
## 1292             CONN        Connecticut             6            13    1
## 1293             CONN        Connecticut             5            56    1
## 1294             CONN        Connecticut             5            13    1
## 1295             CONN        Connecticut             5            00    1
## 1296             CONN        Connecticut             4            43    1
## 1297             CONN        Connecticut             4            19    1
## 1298             CONN        Connecticut             4            19    1
## 1299             CONN        Connecticut             3            18    1
## 1300             CONN        Connecticut             3            03    1
## 1301             CONN        Connecticut             2            50    1
## 1302             CONN        Connecticut             2            40    1
## 1303             CONN        Connecticut             2            18    1
## 1304             CONN        Connecticut             2            03    1
## 1305             CONN        Connecticut             1            40    1
## 1306             CONN        Connecticut             1            16    1
## 1307             CONN        Connecticut             1            04    1
## 1308             CONN        Connecticut             0          38.6    1
## 1309             CONN        Connecticut             0          38.6    1
## 1310             CONN        Connecticut             0          24.0    1
## 1311             CONN        Connecticut             0          20.3    1
## 1312             CONN        Connecticut             0           9.7    1
## 1313             CONN        Connecticut             0           9.7    1
## 1314             CONN        Connecticut             0           1.0    1
## 1315             CONN        Connecticut             9            39    2
## 1316             CONN        Connecticut             9            03    2
## 1317             CONN        Connecticut             8            42    2
## 1318             CONN        Connecticut             8            42    2
## 1319             CONN        Connecticut             8            26    2
## 1320             CONN        Connecticut             8            22    2
## 1321             CONN        Connecticut             8            01    2
## 1322             CONN        Connecticut             7            46    2
## 1323             CONN        Connecticut             7            46    2
## 1324             CONN        Connecticut             7            46    2
## 1325             CONN        Connecticut             7            23    2
## 1326             CONN        Connecticut             7            07    2
## 1327             CONN        Connecticut             7            07    2
## 1328             CONN        Connecticut             6            59    2
## 1329             CONN        Connecticut             6            59    2
## 1330             CONN        Connecticut             6            32    2
## 1331             CONN        Connecticut             6            13    2
## 1332             CONN        Connecticut             6            03    2
## 1333             CONN        Connecticut             5            40    2
## 1334             CONN        Connecticut             5            38    2
## 1335             CONN        Connecticut             5            38    2
## 1336             CONN        Connecticut             5            25    2
## 1337             CONN        Connecticut             5            08    2
## 1338             CONN        Connecticut             5            08    2
## 1339             CONN        Connecticut             4            39    2
## 1340             CONN        Connecticut             4            32    2
## 1341             CONN        Connecticut             3            58    2
## 1342             CONN        Connecticut             3            24    2
## 1343             CONN        Connecticut             3            19    2
## 1344             CONN        Connecticut             3            05    2
## 1345             CONN        Connecticut             2            48    2
## 1346             CONN        Connecticut             2            48    2
## 1347             CONN        Connecticut             2            29    2
## 1348             CONN        Connecticut             2            20    2
## 1349             CONN        Connecticut             2            08    2
## 1350             CONN        Connecticut             2            08    2
## 1351             CONN        Connecticut             1            56    2
## 1352             CONN        Connecticut             1            31    2
## 1353             CONN        Connecticut             1            14    2
## 1354             CONN        Connecticut             1            04    2
## 1355             CONN        Connecticut             0          44.0    2
## 1356             CONN        Connecticut             0          41.3    2
## 1357             CONN        Connecticut             0          28.6    2
## 1358             CONN        Connecticut             0          28.6    2
## 1359             CONN        Connecticut             0           6.3    2
## 1360             CONN        Connecticut             0           6.3    2
## 1361             CONN        Connecticut             0           1.0    2
## 1362             CONN        Connecticut             9            47    2
## 1363             CONN        Connecticut             9            25    2
## 1364             CONN        Connecticut             9            08    2
## 1365             CONN        Connecticut             8            52    2
## 1366             CONN        Connecticut             8            41    2
## 1367             CONN        Connecticut             8            21    2
## 1368             CONN        Connecticut             8            21    2
## 1369             CONN        Connecticut             7            46    2
## 1370             CONN        Connecticut             7            37    2
## 1371             CONN        Connecticut             7            32    2
## 1372             CONN        Connecticut             7            07    2
## 1373             CONN        Connecticut             6            43    2
## 1374             CONN        Connecticut             6            23    2
## 1375             CONN        Connecticut             6            03    2
## 1376             CONN        Connecticut             5            54    2
## 1377             CONN        Connecticut             5            16    2
## 1378             CONN        Connecticut             4            45    2
## 1379             CONN        Connecticut             4            35    2
## 1380             CONN        Connecticut             4            35    2
## 1381             CONN        Connecticut             4            21    2
## 1382             CONN        Connecticut             4            05    2
## 1383             CONN        Connecticut             3            59    2
## 1384             CONN        Connecticut             3            59    2
## 1385             CONN        Connecticut             3            39    2
## 1386             CONN        Connecticut             3            22    2
## 1387             CONN        Connecticut             3            07    2
## 1388             CONN        Connecticut             3            00    2
## 1389             CONN        Connecticut             2            47    2
## 1390             CONN        Connecticut             2            47    2
## 1391             CONN        Connecticut             2            37    2
## 1392             CONN        Connecticut             2            27    2
## 1393             CONN        Connecticut             2            13    2
## 1394             CONN        Connecticut             1            50    2
## 1395             CONN        Connecticut             1            50    2
## 1396             CONN        Connecticut             1            44    2
## 1397             CONN        Connecticut             1            44    2
## 1398             CONN        Connecticut             1            44    2
## 1399             CONN        Connecticut             1            38    2
## 1400             CONN        Connecticut             1            17    2
## 1401             CONN        Connecticut             1            11    2
## 1402             CONN        Connecticut             1            11    2
## 1403             CONN        Connecticut             0          52.4    2
## 1404             CONN        Connecticut             0          45.4    2
## 1405             CONN        Connecticut             0          22.0    2
## 1406             CONN        Connecticut             0          20.1    2
## 1407             CONN        Connecticut             0          11.9    2
## 1408             CONN        Connecticut             0           8.6    2
## 1409             CONN        Connecticut             0           8.6    2
## 1410             CONN        Connecticut             0           8.6    2
## 1411             CONN        Connecticut             0           4.7    2
## 1412             CONN        Connecticut             0           4.7    2
## 1413             CONN        Connecticut             0           1.5    2
## 1414               NY           New York             9            45    1
## 1415               NY           New York             9            28    1
## 1416               NY           New York             9            17    1
## 1417               NY           New York             9            13    1
## 1418               NY           New York             8            40    1
## 1419               NY           New York             8            34    1
## 1420               NY           New York             8            34    1
## 1421               NY           New York             8            12    1
## 1422               NY           New York             8            03    1
## 1423               NY           New York             7            49    1
## 1424               NY           New York             7            29    1
## 1425               NY           New York             7            18    1
## 1426               NY           New York             6            56    1
## 1427               NY           New York             6            32    1
## 1428               NY           New York             6            13    1
## 1429               NY           New York             5            58    1
## 1430               NY           New York             5            48    1
## 1431               NY           New York             5            29    1
## 1432               NY           New York             4            59    1
## 1433               NY           New York             4            47    1
## 1434               NY           New York             4            28    1
## 1435               NY           New York             4            06    1
## 1436               NY           New York             3            43    1
## 1437               NY           New York             3            19    1
## 1438               NY           New York             3            03    1
## 1439               NY           New York             2            20    1
## 1440               NY           New York             2            06    1
## 1441               NY           New York             1            54    1
## 1442               NY           New York             1            40    1
## 1443               NY           New York             1            37    1
## 1444               NY           New York             1            37    1
## 1445               NY           New York             1            22    1
## 1446               NY           New York             1            14    1
## 1447               NY           New York             0          57.8    1
## 1448               NY           New York             0          44.2    1
## 1449               NY           New York             0          34.3    1
## 1450               NY           New York             0          31.3    1
## 1451               NY           New York             0          31.3    1
## 1452               NY           New York             0          31.3    1
## 1453               NY           New York             0          17.6    1
## 1454               NY           New York             0          17.6    1
## 1455               NY           New York             0           2.8    1
## 1456               NY           New York             0           1.1    1
## 1457               NY           New York             9            38    1
## 1458               NY           New York             9            17    1
## 1459               NY           New York             8            59    1
## 1460               NY           New York             8            53    1
## 1461               NY           New York             8            34    1
## 1462               NY           New York             8            13    1
## 1463               NY           New York             7            52    1
## 1464               NY           New York             7            33    1
## 1465               NY           New York             7            28    1
## 1466               NY           New York             7            28    1
## 1467               NY           New York             7            20    1
## 1468               NY           New York             7            20    1
## 1469               NY           New York             7            09    1
## 1470               NY           New York             7            03    1
## 1471               NY           New York             6            35    1
## 1472               NY           New York             6            26    1
## 1473               NY           New York             6            02    1
## 1474               NY           New York             5            44    1
## 1475               NY           New York             5            44    1
## 1476               NY           New York             5            44    1
## 1477               NY           New York             5            29    1
## 1478               NY           New York             5            14    1
## 1479               NY           New York             5            08    1
## 1480               NY           New York             4            32    1
## 1481               NY           New York             4            24    1
## 1482               NY           New York             4            10    1
## 1483               NY           New York             3            50    1
## 1484               NY           New York             3            43    1
## 1485               NY           New York             3            34    1
## 1486               NY           New York             3            32    1
## 1487               NY           New York             3            32    1
## 1488               NY           New York             3            14    1
## 1489               NY           New York             3            05    1
## 1490               NY           New York             2            56    1
## 1491               NY           New York             2            47    1
## 1492               NY           New York             2            37    1
## 1493               NY           New York             2            20    1
## 1494               NY           New York             2            20    1
## 1495               NY           New York             2            09    1
## 1496               NY           New York             1            47    1
## 1497               NY           New York             1            34    1
## 1498               NY           New York             1            23    1
## 1499               NY           New York             1            13    1
## 1500               NY           New York             1            13    1
## 1501               NY           New York             0          57.1    1
## 1502               NY           New York             0          44.8    1
## 1503               NY           New York             0          44.8    1
## 1504               NY           New York             0          44.8    1
## 1505               NY           New York             0          32.7    1
## 1506               NY           New York             0          25.6    1
## 1507               NY           New York             0          19.1    1
## 1508               NY           New York             0           0.0    1
## 1509               NY           New York             9            36    2
## 1510               NY           New York             9            16    2
## 1511               NY           New York             9            04    2
## 1512               NY           New York             8            50    2
## 1513               NY           New York             8            33    2
## 1514               NY           New York             8            16    2
## 1515               NY           New York             8            04    2
## 1516               NY           New York             7            39    2
## 1517               NY           New York             7            27    2
## 1518               NY           New York             7            10    2
## 1519               NY           New York             6            44    2
## 1520               NY           New York             6            25    2
## 1521               NY           New York             6            11    2
## 1522               NY           New York             5            55    2
## 1523               NY           New York             5            39    2
## 1524               NY           New York             5            16    2
## 1525               NY           New York             5            02    2
## 1526               NY           New York             4            49    2
## 1527               NY           New York             4            49    2
## 1528               NY           New York             4            33    2
## 1529               NY           New York             4            29    2
## 1530               NY           New York             4            29    2
## 1531               NY           New York             4            17    2
## 1532               NY           New York             4            04    2
## 1533               NY           New York             4            04    2
## 1534               NY           New York             3            50    2
## 1535               NY           New York             3            38    2
## 1536               NY           New York             3            32    2
## 1537               NY           New York             3            24    2
## 1538               NY           New York             3            10    2
## 1539               NY           New York             3            10    2
## 1540               NY           New York             2            55    2
## 1541               NY           New York             2            42    2
## 1542               NY           New York             2            09    2
## 1543               NY           New York             2            05    2
## 1544               NY           New York             1            54    2
## 1545               NY           New York             1            38    2
## 1546               NY           New York             1            27    2
## 1547               NY           New York             1            12    2
## 1548               NY           New York             1            08    2
## 1549               NY           New York             0          36.2    2
## 1550               NY           New York             0          23.2    2
## 1551               NY           New York             0           3.8    2
## 1552               NY           New York             9            42    2
## 1553               NY           New York             9            28    2
## 1554               NY           New York             9            19    2
## 1555               NY           New York             9            19    2
## 1556               NY           New York             8            55    2
## 1557               NY           New York             8            46    2
## 1558               NY           New York             8            20    2
## 1559               NY           New York             8            12    2
## 1560               NY           New York             7            57    2
## 1561               NY           New York             7            34    2
## 1562               NY           New York             7            17    2
## 1563               NY           New York             6            52    2
## 1564               NY           New York             6            37    2
## 1565               NY           New York             6            08    2
## 1566               NY           New York             6            05    2
## 1567               NY           New York             5            40    2
## 1568               NY           New York             5            27    2
## 1569               NY           New York             5            12    2
## 1570               NY           New York             4            56    2
## 1571               NY           New York             4            42    2
## 1572               NY           New York             4            07    2
## 1573               NY           New York             3            55    2
## 1574               NY           New York             3            34    2
## 1575               NY           New York             3            06    2
## 1576               NY           New York             3            06    2
## 1577               NY           New York             2            50    2
## 1578               NY           New York             2            23    2
## 1579               NY           New York             2            13    2
## 1580               NY           New York             1            43    2
## 1581               NY           New York             1            28    2
## 1582               NY           New York             1            20    2
## 1583               NY           New York             1            20    2
## 1584               NY           New York             1            13    2
## 1585               NY           New York             1            08    2
## 1586               NY           New York             1            08    2
## 1587               NY           New York             0          45.9    2
## 1588               NY           New York             0          35.5    2
## 1589               NY           New York             0          13.6    2
## 1590               NY           New York             0           1.3    2
## 1591              WSH         Washington             9            44    1
## 1592              WSH         Washington             9            26    1
## 1593              WSH         Washington             9            10    1
## 1594              WSH         Washington             9            06    1
## 1595              WSH         Washington             8            49    1
## 1596              WSH         Washington             8            45    1
## 1597              WSH         Washington             8            38    1
## 1598              WSH         Washington             8            20    1
## 1599              WSH         Washington             8            18    1
## 1600              WSH         Washington             8            03    1
## 1601              WSH         Washington             7            46    1
## 1602              WSH         Washington             7            28    1
## 1603              WSH         Washington             7            15    1
## 1604              WSH         Washington             6            59    1
## 1605              WSH         Washington             6            49    1
## 1606              WSH         Washington             6            34    1
## 1607              WSH         Washington             6            19    1
## 1608              WSH         Washington             6            08    1
## 1609              WSH         Washington             6            08    1
## 1610              WSH         Washington             5            52    1
## 1611              WSH         Washington             5            35    1
## 1612              WSH         Washington             5            26    1
## 1613              WSH         Washington             5            18    1
## 1614              WSH         Washington             5            04    1
## 1615              WSH         Washington             4            59    1
## 1616              WSH         Washington             4            42    1
## 1617              WSH         Washington             4            31    1
## 1618              WSH         Washington             4            14    1
## 1619              WSH         Washington             3            41    1
## 1620              WSH         Washington             3            23    1
## 1621              WSH         Washington             3            06    1
## 1622              WSH         Washington             2            50    1
## 1623              WSH         Washington             2            50    1
## 1624              WSH         Washington             2            13    1
## 1625              WSH         Washington             2            09    1
## 1626              WSH         Washington             2            09    1
## 1627              WSH         Washington             1            52    1
## 1628              WSH         Washington             1            41    1
## 1629              WSH         Washington             1            37    1
## 1630              WSH         Washington             1            27    1
## 1631              WSH         Washington             1            14    1
## 1632              WSH         Washington             0          56.9    1
## 1633              WSH         Washington             0          53.3    1
## 1634              WSH         Washington             0          31.7    1
## 1635              WSH         Washington             0          29.8    1
## 1636              WSH         Washington             0          24.7    1
## 1637              WSH         Washington             0          24.7    1
## 1638              WSH         Washington             0           0.8    1
## 1639              WSH         Washington             9            38    1
## 1640              WSH         Washington             9            09    1
## 1641              WSH         Washington             8            57    1
## 1642              WSH         Washington             8            57    1
## 1643              WSH         Washington             8            36    1
## 1644              WSH         Washington             8            05    1
## 1645              WSH         Washington             7            55    1
## 1646              WSH         Washington             7            42    1
## 1647              WSH         Washington             7            27    1
## 1648              WSH         Washington             7            27    1
## 1649              WSH         Washington             7            27    1
## 1650              WSH         Washington             7            11    1
## 1651              WSH         Washington             6            59    1
## 1652              WSH         Washington             6            47    1
## 1653              WSH         Washington             6            38    1
## 1654              WSH         Washington             6            34    1
## 1655              WSH         Washington             6            18    1
## 1656              WSH         Washington             6            10    1
## 1657              WSH         Washington             5            43    1
## 1658              WSH         Washington             5            24    1
## 1659              WSH         Washington             5            09    1
## 1660              WSH         Washington             4            55    1
## 1661              WSH         Washington             4            50    1
## 1662              WSH         Washington             4            38    1
## 1663              WSH         Washington             4            21    1
## 1664              WSH         Washington             4            21    1
## 1665              WSH         Washington             4            06    1
## 1666              WSH         Washington             3            49    1
## 1667              WSH         Washington             3            34    1
## 1668              WSH         Washington             3            27    1
## 1669              WSH         Washington             3            22    1
## 1670              WSH         Washington             3            12    1
## 1671              WSH         Washington             3            12    1
## 1672              WSH         Washington             2            53    1
## 1673              WSH         Washington             2            31    1
## 1674              WSH         Washington             2            22    1
## 1675              WSH         Washington             2            22    1
## 1676              WSH         Washington             2            07    1
## 1677              WSH         Washington             2            07    1
## 1678              WSH         Washington             1            51    1
## 1679              WSH         Washington             1            40    1
## 1680              WSH         Washington             1            40    1
## 1681              WSH         Washington             1            26    1
## 1682              WSH         Washington             1            09    1
## 1683              WSH         Washington             1            09    1
## 1684              WSH         Washington             1            00    1
## 1685              WSH         Washington             0          55.4    1
## 1686              WSH         Washington             0          45.2    1
## 1687              WSH         Washington             0          19.0    1
## 1688              WSH         Washington             0           0.3    1
## 1689              WSH         Washington             9            48    2
## 1690              WSH         Washington             9            18    2
## 1691              WSH         Washington             9            09    2
## 1692              WSH         Washington             8            53    2
## 1693              WSH         Washington             8            44    2
## 1694              WSH         Washington             8            24    2
## 1695              WSH         Washington             7            57    2
## 1696              WSH         Washington             7            45    2
## 1697              WSH         Washington             7            41    2
## 1698              WSH         Washington             7            33    2
## 1699              WSH         Washington             7            33    2
## 1700              WSH         Washington             7            23    2
## 1701              WSH         Washington             7            11    2
## 1702              WSH         Washington             6            54    2
## 1703              WSH         Washington             6            35    2
## 1704              WSH         Washington             6            35    2
## 1705              WSH         Washington             6            21    2
## 1706              WSH         Washington             5            49    2
## 1707              WSH         Washington             5            49    2
## 1708              WSH         Washington             5            34    2
## 1709              WSH         Washington             5            19    2
## 1710              WSH         Washington             5            19    2
## 1711              WSH         Washington             5            04    2
## 1712              WSH         Washington             4            54    2
## 1713              WSH         Washington             4            41    2
## 1714              WSH         Washington             4            18    2
## 1715              WSH         Washington             4            04    2
## 1716              WSH         Washington             3            48    2
## 1717              WSH         Washington             3            45    2
## 1718              WSH         Washington             3            31    2
## 1719              WSH         Washington             3            15    2
## 1720              WSH         Washington             2            54    2
## 1721              WSH         Washington             2            15    2
## 1722              WSH         Washington             2            00    2
## 1723              WSH         Washington             1            44    2
## 1724              WSH         Washington             1            31    2
## 1725              WSH         Washington             1            26    2
## 1726              WSH         Washington             1            26    2
## 1727              WSH         Washington             1            04    2
## 1728              WSH         Washington             0          59.0    2
## 1729              WSH         Washington             0          51.9    2
## 1730              WSH         Washington             0          15.9    2
## 1731              WSH         Washington             0          15.9    2
## 1732              WSH         Washington             0           1.9    2
## 1733              WSH         Washington             0           0.6    2
## 1734              WSH         Washington             9            51    2
## 1735              WSH         Washington             9            36    2
## 1736              WSH         Washington             9            33    2
## 1737              WSH         Washington             9            22    2
## 1738              WSH         Washington             9            06    2
## 1739              WSH         Washington             8            38    2
## 1740              WSH         Washington             8            34    2
## 1741              WSH         Washington             8            27    2
## 1742              WSH         Washington             8            09    2
## 1743              WSH         Washington             7            42    2
## 1744              WSH         Washington             7            19    2
## 1745              WSH         Washington             7            13    2
## 1746              WSH         Washington             7            13    2
## 1747              WSH         Washington             6            58    2
## 1748              WSH         Washington             6            37    2
## 1749              WSH         Washington             6            33    2
## 1750              WSH         Washington             6            30    2
## 1751              WSH         Washington             6            25    2
## 1752              WSH         Washington             6            01    2
## 1753              WSH         Washington             5            43    2
## 1754              WSH         Washington             5            43    2
## 1755              WSH         Washington             5            27    2
## 1756              WSH         Washington             5            27    2
## 1757              WSH         Washington             5            04    2
## 1758              WSH         Washington             4            21    2
## 1759              WSH         Washington             4            07    2
## 1760              WSH         Washington             3            49    2
## 1761              WSH         Washington             3            31    2
## 1762              WSH         Washington             3            15    2
## 1763              WSH         Washington             3            10    2
## 1764              WSH         Washington             2            49    2
## 1765              WSH         Washington             2            34    2
## 1766              WSH         Washington             2            26    2
## 1767              WSH         Washington             2            16    2
## 1768              WSH         Washington             2            08    2
## 1769              WSH         Washington             2            08    2
## 1770              WSH         Washington             1            55    2
## 1771              WSH         Washington             1            55    2
## 1772              WSH         Washington             1            36    2
## 1773              WSH         Washington             1            25    2
## 1774              WSH         Washington             1            02    2
## 1775              WSH         Washington             0          47.4    2
## 1776              WSH         Washington             0          37.6    2
## 1777              WSH         Washington             0          23.1    2
## 1778              SEA            Seattle             9            45    1
## 1779              SEA            Seattle             9            30    1
## 1780              SEA            Seattle             9            18    1
## 1781              SEA            Seattle             9            08    1
## 1782              SEA            Seattle             8            45    1
## 1783              SEA            Seattle             8            28    1
## 1784              SEA            Seattle             8            23    1
## 1785              SEA            Seattle             8            14    1
## 1786              SEA            Seattle             7            56    1
## 1787              SEA            Seattle             7            56    1
## 1788              SEA            Seattle             7            34    1
## 1789              SEA            Seattle             7            21    1
## 1790              SEA            Seattle             7            09    1
## 1791              SEA            Seattle             6            54    1
## 1792              SEA            Seattle             6            35    1
## 1793              SEA            Seattle             6            34    1
## 1794              SEA            Seattle             6            34    1
## 1795              SEA            Seattle             6            11    1
## 1796              SEA            Seattle             6            03    1
## 1797              SEA            Seattle             5            46    1
## 1798              SEA            Seattle             5            26    1
## 1799              SEA            Seattle             5            19    1
## 1800              SEA            Seattle             4            59    1
## 1801              SEA            Seattle             4            59    1
## 1802              SEA            Seattle             4            42    1
## 1803              SEA            Seattle             4            07    1
## 1804              SEA            Seattle             3            52    1
## 1805              SEA            Seattle             3            52    1
## 1806              SEA            Seattle             3            40    1
## 1807              SEA            Seattle             3            24    1
## 1808              SEA            Seattle             3            14    1
## 1809              SEA            Seattle             2            59    1
## 1810              SEA            Seattle             2            32    1
## 1811              SEA            Seattle             2            32    1
## 1812              SEA            Seattle             2            12    1
## 1813              SEA            Seattle             1            57    1
## 1814              SEA            Seattle             1            57    1
## 1815              SEA            Seattle             1            34    1
## 1816              SEA            Seattle             1            19    1
## 1817              SEA            Seattle             1            13    1
## 1818              SEA            Seattle             1            06    1
## 1819              SEA            Seattle             0          57.4    1
## 1820              SEA            Seattle             0          35.6    1
## 1821              SEA            Seattle             0          13.6    1
## 1822              SEA            Seattle             0           2.9    1
## 1823              SEA            Seattle             9            45    1
## 1824              SEA            Seattle             9            29    1
## 1825              SEA            Seattle             9            00    1
## 1826              SEA            Seattle             8            44    1
## 1827              SEA            Seattle             8            32    1
## 1828              SEA            Seattle             8            25    1
## 1829              SEA            Seattle             8            14    1
## 1830              SEA            Seattle             7            59    1
## 1831              SEA            Seattle             7            47    1
## 1832              SEA            Seattle             7            35    1
## 1833              SEA            Seattle             7            25    1
## 1834              SEA            Seattle             7            12    1
## 1835              SEA            Seattle             7            00    1
## 1836              SEA            Seattle             6            31    1
## 1837              SEA            Seattle             6            23    1
## 1838              SEA            Seattle             6            17    1
## 1839              SEA            Seattle             5            55    1
## 1840              SEA            Seattle             5            46    1
## 1841              SEA            Seattle             5            22    1
## 1842              SEA            Seattle             5            14    1
## 1843              SEA            Seattle             4            53    1
## 1844              SEA            Seattle             4            29    1
## 1845              SEA            Seattle             4            25    1
## 1846              SEA            Seattle             4            25    1
## 1847              SEA            Seattle             4            19    1
## 1848              SEA            Seattle             4            05    1
## 1849              SEA            Seattle             4            05    1
## 1850              SEA            Seattle             3            49    1
## 1851              SEA            Seattle             3            29    1
## 1852              SEA            Seattle             3            20    1
## 1853              SEA            Seattle             3            13    1
## 1854              SEA            Seattle             3            01    1
## 1855              SEA            Seattle             2            48    1
## 1856              SEA            Seattle             2            32    1
## 1857              SEA            Seattle             2            13    1
## 1858              SEA            Seattle             1            58    1
## 1859              SEA            Seattle             1            39    1
## 1860              SEA            Seattle             1            23    1
## 1861              SEA            Seattle             1            10    1
## 1862              SEA            Seattle             0          54.7    1
## 1863              SEA            Seattle             0          44.9    1
## 1864              SEA            Seattle             0          23.8    1
## 1865              SEA            Seattle             0           2.8    1
## 1866              SEA            Seattle             9            49    2
## 1867              SEA            Seattle             9            29    2
## 1868              SEA            Seattle             9            02    2
## 1869              SEA            Seattle             9            02    2
## 1870              SEA            Seattle             8            47    2
## 1871              SEA            Seattle             8            35    2
## 1872              SEA            Seattle             8            17    2
## 1873              SEA            Seattle             8            08    2
## 1874              SEA            Seattle             8            08    2
## 1875              SEA            Seattle             8            01    2
## 1876              SEA            Seattle             8            01    2
## 1877              SEA            Seattle             7            42    2
## 1878              SEA            Seattle             7            37    2
## 1879              SEA            Seattle             7            23    2
## 1880              SEA            Seattle             7            15    2
## 1881              SEA            Seattle             7            05    2
## 1882              SEA            Seattle             6            40    2
## 1883              SEA            Seattle             6            22    2
## 1884              SEA            Seattle             6            18    2
## 1885              SEA            Seattle             6            00    2
## 1886              SEA            Seattle             5            30    2
## 1887              SEA            Seattle             5            08    2
## 1888              SEA            Seattle             5            00    2
## 1889              SEA            Seattle             4            36    2
## 1890              SEA            Seattle             4            12    2
## 1891              SEA            Seattle             4            05    2
## 1892              SEA            Seattle             4            05    2
## 1893              SEA            Seattle             3            52    2
## 1894              SEA            Seattle             3            33    2
## 1895              SEA            Seattle             3            15    2
## 1896              SEA            Seattle             3            01    2
## 1897              SEA            Seattle             2            50    2
## 1898              SEA            Seattle             2            34    2
## 1899              SEA            Seattle             2            26    2
## 1900              SEA            Seattle             2            12    2
## 1901              SEA            Seattle             2            12    2
## 1902              SEA            Seattle             2            03    2
## 1903              SEA            Seattle             1            53    2
## 1904              SEA            Seattle             1            30    2
## 1905              SEA            Seattle             1            09    2
## 1906              SEA            Seattle             0          54.2    2
## 1907              SEA            Seattle             0          47.5    2
## 1908              SEA            Seattle             0          43.7    2
## 1909              SEA            Seattle             0          33.4    2
## 1910              SEA            Seattle             0           5.9    2
## 1911              SEA            Seattle             0           1.0    2
## 1912              SEA            Seattle             9            48    2
## 1913              SEA            Seattle             9            48    2
## 1914              SEA            Seattle             9            35    2
## 1915              SEA            Seattle             9            19    2
## 1916              SEA            Seattle             9            14    2
## 1917              SEA            Seattle             9            01    2
## 1918              SEA            Seattle             8            48    2
## 1919              SEA            Seattle             8            34    2
## 1920              SEA            Seattle             8            16    2
## 1921              SEA            Seattle             8            16    2
## 1922              SEA            Seattle             7            53    2
## 1923              SEA            Seattle             7            30    2
## 1924              SEA            Seattle             7            14    2
## 1925              SEA            Seattle             7            00    2
## 1926              SEA            Seattle             6            54    2
## 1927              SEA            Seattle             6            33    2
## 1928              SEA            Seattle             6            10    2
## 1929              SEA            Seattle             5            52    2
## 1930              SEA            Seattle             5            38    2
## 1931              SEA            Seattle             5            11    2
## 1932              SEA            Seattle             4            59    2
## 1933              SEA            Seattle             4            42    2
## 1934              SEA            Seattle             4            31    2
## 1935              SEA            Seattle             3            59    2
## 1936              SEA            Seattle             3            41    2
## 1937              SEA            Seattle             3            41    2
## 1938              SEA            Seattle             3            28    2
## 1939              SEA            Seattle             3            11    2
## 1940              SEA            Seattle             3            04    2
## 1941              SEA            Seattle             2            48    2
## 1942              SEA            Seattle             2            32    2
## 1943              SEA            Seattle             2            28    2
## 1944              SEA            Seattle             2            12    2
## 1945              SEA            Seattle             1            54    2
## 1946              SEA            Seattle             1            54    2
## 1947              SEA            Seattle             1            54    2
## 1948              SEA            Seattle             1            30    2
## 1949              SEA            Seattle             1            18    2
## 1950              SEA            Seattle             1            01    2
## 1951              SEA            Seattle             0          52.8    2
## 1952              SEA            Seattle             0          20.5    2
## 1953              ATL            Atlanta             9            36    1
## 1954              ATL            Atlanta             9            30    1
## 1955              ATL            Atlanta             9            25    1
## 1956              ATL            Atlanta             9            25    1
## 1957              ATL            Atlanta             9            07    1
## 1958              ATL            Atlanta             8            47    1
## 1959              ATL            Atlanta             8            41    1
## 1960              ATL            Atlanta             8            29    1
## 1961              ATL            Atlanta             8            08    1
## 1962              ATL            Atlanta             7            52    1
## 1963              ATL            Atlanta             7            38    1
## 1964              ATL            Atlanta             7            24    1
## 1965              ATL            Atlanta             7            08    1
## 1966              ATL            Atlanta             6            49    1
## 1967              ATL            Atlanta             6            10    1
## 1968              ATL            Atlanta             5            54    1
## 1969              ATL            Atlanta             5            45    1
## 1970              ATL            Atlanta             5            27    1
## 1971              ATL            Atlanta             5            17    1
## 1972              ATL            Atlanta             5            09    1
## 1973              ATL            Atlanta             4            54    1
## 1974              ATL            Atlanta             4            42    1
## 1975              ATL            Atlanta             4            27    1
## 1976              ATL            Atlanta             4            21    1
## 1977              ATL            Atlanta             4            14    1
## 1978              ATL            Atlanta             3            35    1
## 1979              ATL            Atlanta             3            25    1
## 1980              ATL            Atlanta             3            17    1
## 1981              ATL            Atlanta             3            12    1
## 1982              ATL            Atlanta             3            00    1
## 1983              ATL            Atlanta             2            40    1
## 1984              ATL            Atlanta             2            35    1
## 1985              ATL            Atlanta             2            35    1
## 1986              ATL            Atlanta             2            18    1
## 1987              ATL            Atlanta             2            13    1
## 1988              ATL            Atlanta             2            13    1
## 1989              ATL            Atlanta             1            55    1
## 1990              ATL            Atlanta             1            51    1
## 1991              ATL            Atlanta             1            50    1
## 1992              ATL            Atlanta             1            42    1
## 1993              ATL            Atlanta             1            36    1
## 1994              ATL            Atlanta             1            28    1
## 1995              ATL            Atlanta             1            14    1
## 1996              ATL            Atlanta             0          56.5    1
## 1997              ATL            Atlanta             0          53.3    1
## 1998              ATL            Atlanta             0          38.6    1
## 1999              ATL            Atlanta             0          23.3    1
## 2000              ATL            Atlanta             0          23.3    1
## 2001              ATL            Atlanta             0           0.0    1
## 2002              ATL            Atlanta             9            48    1
## 2003              ATL            Atlanta             9            00    1
## 2004              ATL            Atlanta             8            56    1
## 2005              ATL            Atlanta             8            36    1
## 2006              ATL            Atlanta             8            28    1
## 2007              ATL            Atlanta             8            28    1
## 2008              ATL            Atlanta             8            06    1
## 2009              ATL            Atlanta             7            48    1
## 2010              ATL            Atlanta             7            47    1
## 2011              ATL            Atlanta             7            46    1
## 2012              ATL            Atlanta             7            45    1
## 2013              ATL            Atlanta             7            45    1
## 2014              ATL            Atlanta             7            17    1
## 2015              ATL            Atlanta             7            04    1
## 2016              ATL            Atlanta             7            00    1
## 2017              ATL            Atlanta             7            00    1
## 2018              ATL            Atlanta             6            42    1
## 2019              ATL            Atlanta             6            37    1
## 2020              ATL            Atlanta             6            37    1
## 2021              ATL            Atlanta             6            23    1
## 2022              ATL            Atlanta             6            03    1
## 2023              ATL            Atlanta             6            03    1
## 2024              ATL            Atlanta             5            58    1
## 2025              ATL            Atlanta             5            58    1
## 2026              ATL            Atlanta             5            47    1
## 2027              ATL            Atlanta             5            42    1
## 2028              ATL            Atlanta             5            32    1
## 2029              ATL            Atlanta             5            17    1
## 2030              ATL            Atlanta             4            52    1
## 2031              ATL            Atlanta             4            47    1
## 2032              ATL            Atlanta             4            28    1
## 2033              ATL            Atlanta             4            18    1
## 2034              ATL            Atlanta             4            15    1
## 2035              ATL            Atlanta             3            56    1
## 2036              ATL            Atlanta             3            49    1
## 2037              ATL            Atlanta             3            49    1
## 2038              ATL            Atlanta             3            38    1
## 2039              ATL            Atlanta             3            02    1
## 2040              ATL            Atlanta             3            02    1
## 2041              ATL            Atlanta             2            42    1
## 2042              ATL            Atlanta             2            35    1
## 2043              ATL            Atlanta             2            26    1
## 2044              ATL            Atlanta             2            12    1
## 2045              ATL            Atlanta             1            59    1
## 2046              ATL            Atlanta             1            39    1
## 2047              ATL            Atlanta             1            19    1
## 2048              ATL            Atlanta             1            15    1
## 2049              ATL            Atlanta             1            00    1
## 2050              ATL            Atlanta             0          57.2    1
## 2051              ATL            Atlanta             0          21.5    1
## 2052              ATL            Atlanta             0          20.6    1
## 2053              ATL            Atlanta             0          20.6    1
## 2054              ATL            Atlanta             0           0.9    1
## 2055              ATL            Atlanta             9            48    2
## 2056              ATL            Atlanta             9            38    2
## 2057              ATL            Atlanta             9            01    2
## 2058              ATL            Atlanta             8            49    2
## 2059              ATL            Atlanta             8            38    2
## 2060              ATL            Atlanta             8            18    2
## 2061              ATL            Atlanta             8            05    2
## 2062              ATL            Atlanta             7            52    2
## 2063              ATL            Atlanta             7            44    2
## 2064              ATL            Atlanta             7            35    2
## 2065              ATL            Atlanta             7            23    2
## 2066              ATL            Atlanta             7            02    2
## 2067              ATL            Atlanta             6            45    2
## 2068              ATL            Atlanta             6            45    2
## 2069              ATL            Atlanta             6            11    2
## 2070              ATL            Atlanta             6            05    2
## 2071              ATL            Atlanta             6            05    2
## 2072              ATL            Atlanta             5            52    2
## 2073              ATL            Atlanta             5            29    2
## 2074              ATL            Atlanta             5            29    2
## 2075              ATL            Atlanta             5            28    2
## 2076              ATL            Atlanta             5            28    2
## 2077              ATL            Atlanta             5            14    2
## 2078              ATL            Atlanta             5            07    2
## 2079              ATL            Atlanta             4            50    2
## 2080              ATL            Atlanta             4            40    2
## 2081              ATL            Atlanta             4            19    2
## 2082              ATL            Atlanta             4            07    2
## 2083              ATL            Atlanta             3            55    2
## 2084              ATL            Atlanta             3            55    2
## 2085              ATL            Atlanta             3            35    2
## 2086              ATL            Atlanta             3            15    2
## 2087              ATL            Atlanta             3            05    2
## 2088              ATL            Atlanta             3            05    2
## 2089              ATL            Atlanta             2            38    2
## 2090              ATL            Atlanta             2            30    2
## 2091              ATL            Atlanta             2            30    2
## 2092              ATL            Atlanta             2            26    2
## 2093              ATL            Atlanta             2            13    2
## 2094              ATL            Atlanta             2            13    2
## 2095              ATL            Atlanta             1            55    2
## 2096              ATL            Atlanta             1            34    2
## 2097              ATL            Atlanta             1            14    2
## 2098              ATL            Atlanta             0          51.4    2
## 2099              ATL            Atlanta             0          51.4    2
## 2100              ATL            Atlanta             0          37.2    2
## 2101              ATL            Atlanta             0          29.8    2
## 2102              ATL            Atlanta             0          23.4    2
## 2103              ATL            Atlanta             0           2.4    2
## 2104              ATL            Atlanta             9            49    2
## 2105              ATL            Atlanta             9            29    2
## 2106              ATL            Atlanta             9            20    2
## 2107              ATL            Atlanta             9            06    2
## 2108              ATL            Atlanta             8            53    2
## 2109              ATL            Atlanta             8            39    2
## 2110              ATL            Atlanta             8            30    2
## 2111              ATL            Atlanta             8            15    2
## 2112              ATL            Atlanta             8            15    2
## 2113              ATL            Atlanta             8            02    2
## 2114              ATL            Atlanta             7            45    2
## 2115              ATL            Atlanta             7            31    2
## 2116              ATL            Atlanta             7            23    2
## 2117              ATL            Atlanta             7            14    2
## 2118              ATL            Atlanta             6            38    2
## 2119              ATL            Atlanta             6            38    2
## 2120              ATL            Atlanta             6            18    2
## 2121              ATL            Atlanta             5            56    2
## 2122              ATL            Atlanta             5            43    2
## 2123              ATL            Atlanta             5            43    2
## 2124              ATL            Atlanta             5            18    2
## 2125              ATL            Atlanta             4            43    2
## 2126              ATL            Atlanta             4            25    2
## 2127              ATL            Atlanta             3            53    2
## 2128              ATL            Atlanta             3            51    2
## 2129              ATL            Atlanta             3            51    2
## 2130              ATL            Atlanta             3            36    2
## 2131              ATL            Atlanta             3            19    2
## 2132              ATL            Atlanta             3            00    2
## 2133              ATL            Atlanta             2            45    2
## 2134              ATL            Atlanta             2            36    2
## 2135              ATL            Atlanta             2            36    2
## 2136              ATL            Atlanta             2            26    2
## 2137              ATL            Atlanta             2            26    2
## 2138              ATL            Atlanta             2            26    2
## 2139              ATL            Atlanta             2            12    2
## 2140              ATL            Atlanta             2            12    2
## 2141              ATL            Atlanta             1            55    2
## 2142              ATL            Atlanta             1            55    2
## 2143              ATL            Atlanta             1            28    2
## 2144              ATL            Atlanta             1            18    2
## 2145              ATL            Atlanta             1            08    2
## 2146              ATL            Atlanta             1            03    2
## 2147              ATL            Atlanta             0          54.4    2
## 2148              ATL            Atlanta             0          37.3    2
## 2149              ATL            Atlanta             0          32.6    2
## 2150              ATL            Atlanta             0          30.2    2
## 2151              ATL            Atlanta             0          30.2    2
## 2152              ATL            Atlanta             0          30.2    2
## 2153              ATL            Atlanta             0          25.5    2
## 2154              ATL            Atlanta             0          22.2    2
## 2155              ATL            Atlanta             0          21.1    2
## 2156              ATL            Atlanta             0          21.1    2
## 2157              ATL            Atlanta             0          13.2    2
## 2158              ATL            Atlanta             0           9.9    2
## 2159              ATL            Atlanta             0           9.9    2
## 2160             CONN        Connecticut             9            45    1
## 2161             CONN        Connecticut             9            22    1
## 2162             CONN        Connecticut             9            07    1
## 2163             CONN        Connecticut             8            45    1
## 2164             CONN        Connecticut             8            27    1
## 2165             CONN        Connecticut             8            11    1
## 2166             CONN        Connecticut             7            47    1
## 2167             CONN        Connecticut             7            24    1
## 2168             CONN        Connecticut             7            16    1
## 2169             CONN        Connecticut             6            56    1
## 2170             CONN        Connecticut             6            38    1
## 2171             CONN        Connecticut             6            38    1
## 2172             CONN        Connecticut             6            22    1
## 2173             CONN        Connecticut             6            01    1
## 2174             CONN        Connecticut             5            54    1
## 2175             CONN        Connecticut             5            30    1
## 2176             CONN        Connecticut             5            07    1
## 2177             CONN        Connecticut             5            01    1
## 2178             CONN        Connecticut             4            53    1
## 2179             CONN        Connecticut             4            34    1
## 2180             CONN        Connecticut             4            18    1
## 2181             CONN        Connecticut             3            59    1
## 2182             CONN        Connecticut             3            55    1
## 2183             CONN        Connecticut             3            41    1
## 2184             CONN        Connecticut             3            33    1
## 2185             CONN        Connecticut             3            20    1
## 2186             CONN        Connecticut             3            05    1
## 2187             CONN        Connecticut             2            49    1
## 2188             CONN        Connecticut             2            32    1
## 2189             CONN        Connecticut             2            14    1
## 2190             CONN        Connecticut             2            04    1
## 2191             CONN        Connecticut             1            41    1
## 2192             CONN        Connecticut             1            18    1
## 2193             CONN        Connecticut             0          58.2    1
## 2194             CONN        Connecticut             0          47.2    1
## 2195             CONN        Connecticut             0          40.3    1
## 2196             CONN        Connecticut             0           2.4    1
## 2197             CONN        Connecticut             0           0.3    1
## 2198             CONN        Connecticut             9            40    1
## 2199             CONN        Connecticut             9            18    1
## 2200             CONN        Connecticut             9            08    1
## 2201             CONN        Connecticut             8            52    1
## 2202             CONN        Connecticut             8            31    1
## 2203             CONN        Connecticut             8            02    1
## 2204             CONN        Connecticut             7            54    1
## 2205             CONN        Connecticut             7            46    1
## 2206             CONN        Connecticut             7            46    1
## 2207             CONN        Connecticut             7            32    1
## 2208             CONN        Connecticut             7            32    1
## 2209             CONN        Connecticut             6            56    1
## 2210             CONN        Connecticut             6            37    1
## 2211             CONN        Connecticut             6            12    1
## 2212             CONN        Connecticut             5            56    1
## 2213             CONN        Connecticut             5            31    1
## 2214             CONN        Connecticut             5            19    1
## 2215             CONN        Connecticut             4            48    1
## 2216             CONN        Connecticut             4            40    1
## 2217             CONN        Connecticut             4            30    1
## 2218             CONN        Connecticut             4            07    1
## 2219             CONN        Connecticut             3            44    1
## 2220             CONN        Connecticut             3            43    1
## 2221             CONN        Connecticut             3            43    1
## 2222             CONN        Connecticut             3            34    1
## 2223             CONN        Connecticut             3            17    1
## 2224             CONN        Connecticut             3            15    1
## 2225             CONN        Connecticut             3            15    1
## 2226             CONN        Connecticut             3            04    1
## 2227             CONN        Connecticut             2            51    1
## 2228             CONN        Connecticut             2            25    1
## 2229             CONN        Connecticut             2            16    1
## 2230             CONN        Connecticut             2            08    1
## 2231             CONN        Connecticut             2            08    1
## 2232             CONN        Connecticut             1            53    1
## 2233             CONN        Connecticut             1            45    1
## 2234             CONN        Connecticut             0          54.7    1
## 2235             CONN        Connecticut             0          52.0    1
## 2236             CONN        Connecticut             0          25.1    1
## 2237             CONN        Connecticut             0           0.4    1
## 2238             CONN        Connecticut             9            39    2
## 2239             CONN        Connecticut             9            32    2
## 2240             CONN        Connecticut             9            11    2
## 2241             CONN        Connecticut             8            55    2
## 2242             CONN        Connecticut             8            25    2
## 2243             CONN        Connecticut             8            14    2
## 2244             CONN        Connecticut             8            00    2
## 2245             CONN        Connecticut             7            45    2
## 2246             CONN        Connecticut             7            22    2
## 2247             CONN        Connecticut             7            13    2
## 2248             CONN        Connecticut             7            04    2
## 2249             CONN        Connecticut             6            44    2
## 2250             CONN        Connecticut             6            15    2
## 2251             CONN        Connecticut             6            04    2
## 2252             CONN        Connecticut             5            46    2
## 2253             CONN        Connecticut             5            22    2
## 2254             CONN        Connecticut             5            16    2
## 2255             CONN        Connecticut             5            13    2
## 2256             CONN        Connecticut             4            33    2
## 2257             CONN        Connecticut             4            02    2
## 2258             CONN        Connecticut             3            56    2
## 2259             CONN        Connecticut             3            56    2
## 2260             CONN        Connecticut             3            30    2
## 2261             CONN        Connecticut             3            10    2
## 2262             CONN        Connecticut             2            48    2
## 2263             CONN        Connecticut             2            32    2
## 2264             CONN        Connecticut             2            22    2
## 2265             CONN        Connecticut             2            12    2
## 2266             CONN        Connecticut             1            49    2
## 2267             CONN        Connecticut             1            25    2
## 2268             CONN        Connecticut             0          46.1    2
## 2269             CONN        Connecticut             0          36.4    2
## 2270             CONN        Connecticut             0          36.4    2
## 2271             CONN        Connecticut             0          31.9    2
## 2272             CONN        Connecticut             0          29.1    2
## 2273             CONN        Connecticut             0          26.9    2
## 2274             CONN        Connecticut             0          20.4    2
## 2275             CONN        Connecticut             0           9.7    2
## 2276             CONN        Connecticut             0           9.7    2
## 2277             CONN        Connecticut             9            47    2
## 2278             CONN        Connecticut             9            47    2
## 2279             CONN        Connecticut             9            29    2
## 2280             CONN        Connecticut             9            23    2
## 2281             CONN        Connecticut             8            49    2
## 2282             CONN        Connecticut             8            21    2
## 2283             CONN        Connecticut             8            04    2
## 2284             CONN        Connecticut             7            47    2
## 2285             CONN        Connecticut             7            29    2
## 2286             CONN        Connecticut             7            17    2
## 2287             CONN        Connecticut             6            52    2
## 2288             CONN        Connecticut             6            38    2
## 2289             CONN        Connecticut             6            10    2
## 2290             CONN        Connecticut             5            57    2
## 2291             CONN        Connecticut             5            42    2
## 2292             CONN        Connecticut             5            35    2
## 2293             CONN        Connecticut             5            18    2
## 2294             CONN        Connecticut             5            18    2
## 2295             CONN        Connecticut             4            58    2
## 2296             CONN        Connecticut             4            45    2
## 2297             CONN        Connecticut             4            32    2
## 2298             CONN        Connecticut             4            15    2
## 2299             CONN        Connecticut             3            59    2
## 2300             CONN        Connecticut             3            48    2
## 2301             CONN        Connecticut             3            42    2
## 2302             CONN        Connecticut             3            22    2
## 2303             CONN        Connecticut             2            44    2
## 2304             CONN        Connecticut             2            27    2
## 2305             CONN        Connecticut             2            20    2
## 2306             CONN        Connecticut             2            00    2
## 2307             CONN        Connecticut             1            42    2
## 2308             CONN        Connecticut             1            28    2
## 2309             CONN        Connecticut             1            07    2
## 2310             CONN        Connecticut             0          48.4    2
## 2311             CONN        Connecticut             0          48.4    2
## 2312             CONN        Connecticut             0          26.3    2
## 2313             CONN        Connecticut             0          21.5    2
## 2314             CONN        Connecticut             0          12.8    2
## 2315             CONN        Connecticut             0          12.8    2
## 2316              MIN          Minnesota             9            46    1
## 2317              MIN          Minnesota             9            34    1
## 2318              MIN          Minnesota             9            34    1
## 2319              MIN          Minnesota             9            14    1
## 2320              MIN          Minnesota             8            46    1
## 2321              MIN          Minnesota             8            22    1
## 2322              MIN          Minnesota             7            59    1
## 2323              MIN          Minnesota             7            27    1
## 2324              MIN          Minnesota             7            18    1
## 2325              MIN          Minnesota             6            57    1
## 2326              MIN          Minnesota             6            57    1
## 2327              MIN          Minnesota             6            24    1
## 2328              MIN          Minnesota             6            13    1
## 2329              MIN          Minnesota             6            00    1
## 2330              MIN          Minnesota             5            36    1
## 2331              MIN          Minnesota             5            13    1
## 2332              MIN          Minnesota             5            03    1
## 2333              MIN          Minnesota             4            45    1
## 2334              MIN          Minnesota             4            30    1
## 2335              MIN          Minnesota             4            16    1
## 2336              MIN          Minnesota             3            27    1
## 2337              MIN          Minnesota             3            09    1
## 2338              MIN          Minnesota             2            59    1
## 2339              MIN          Minnesota             2            54    1
## 2340              MIN          Minnesota             2            39    1
## 2341              MIN          Minnesota             2            29    1
## 2342              MIN          Minnesota             2            29    1
## 2343              MIN          Minnesota             2            16    1
## 2344              MIN          Minnesota             1            48    1
## 2345              MIN          Minnesota             1            34    1
## 2346              MIN          Minnesota             1            15    1
## 2347              MIN          Minnesota             0          47.7    1
## 2348              MIN          Minnesota             0          35.7    1
## 2349              MIN          Minnesota             0          22.5    1
## 2350              MIN          Minnesota             0           0.0    1
## 2351              MIN          Minnesota             9            48    1
## 2352              MIN          Minnesota             9            48    1
## 2353              MIN          Minnesota             9            40    1
## 2354              MIN          Minnesota             9            33    1
## 2355              MIN          Minnesota             9            27    1
## 2356              MIN          Minnesota             9            09    1
## 2357              MIN          Minnesota             9            06    1
## 2358              MIN          Minnesota             8            56    1
## 2359              MIN          Minnesota             8            38    1
## 2360              MIN          Minnesota             8            19    1
## 2361              MIN          Minnesota             8            07    1
## 2362              MIN          Minnesota             7            54    1
## 2363              MIN          Minnesota             7            54    1
## 2364              MIN          Minnesota             7            32    1
## 2365              MIN          Minnesota             7            15    1
## 2366              MIN          Minnesota             7            04    1
## 2367              MIN          Minnesota             6            41    1
## 2368              MIN          Minnesota             6            23    1
## 2369              MIN          Minnesota             6            11    1
## 2370              MIN          Minnesota             5            56    1
## 2371              MIN          Minnesota             5            37    1
## 2372              MIN          Minnesota             5            28    1
## 2373              MIN          Minnesota             5            02    1
## 2374              MIN          Minnesota             4            34    1
## 2375              MIN          Minnesota             4            19    1
## 2376              MIN          Minnesota             4            05    1
## 2377              MIN          Minnesota             3            36    1
## 2378              MIN          Minnesota             3            34    1
## 2379              MIN          Minnesota             3            34    1
## 2380              MIN          Minnesota             3            22    1
## 2381              MIN          Minnesota             3            05    1
## 2382              MIN          Minnesota             2            46    1
## 2383              MIN          Minnesota             2            23    1
## 2384              MIN          Minnesota             1            59    1
## 2385              MIN          Minnesota             1            48    1
## 2386              MIN          Minnesota             1            40    1
## 2387              MIN          Minnesota             1            40    1
## 2388              MIN          Minnesota             1            34    1
## 2389              MIN          Minnesota             1            22    1
## 2390              MIN          Minnesota             1            04    1
## 2391              MIN          Minnesota             0          50.7    1
## 2392              MIN          Minnesota             0          50.7    1
## 2393              MIN          Minnesota             0          34.7    1
## 2394              MIN          Minnesota             0          18.8    1
## 2395              MIN          Minnesota             0          10.2    1
## 2396              MIN          Minnesota             0           0.0    1
## 2397              MIN          Minnesota             9            37    2
## 2398              MIN          Minnesota             9            14    2
## 2399              MIN          Minnesota             9            09    2
## 2400              MIN          Minnesota             8            56    2
## 2401              MIN          Minnesota             8            56    2
## 2402              MIN          Minnesota             8            45    2
## 2403              MIN          Minnesota             8            33    2
## 2404              MIN          Minnesota             8            30    2
## 2405              MIN          Minnesota             8            17    2
## 2406              MIN          Minnesota             8            07    2
## 2407              MIN          Minnesota             7            46    2
## 2408              MIN          Minnesota             7            14    2
## 2409              MIN          Minnesota             6            22    2
## 2410              MIN          Minnesota             6            00    2
## 2411              MIN          Minnesota             5            43    2
## 2412              MIN          Minnesota             5            41    2
## 2413              MIN          Minnesota             5            31    2
## 2414              MIN          Minnesota             5            28    2
## 2415              MIN          Minnesota             5            21    2
## 2416              MIN          Minnesota             5            06    2
## 2417              MIN          Minnesota             4            41    2
## 2418              MIN          Minnesota             4            32    2
## 2419              MIN          Minnesota             4            26    2
## 2420              MIN          Minnesota             4            14    2
## 2421              MIN          Minnesota             4            10    2
## 2422              MIN          Minnesota             3            54    2
## 2423              MIN          Minnesota             3            40    2
## 2424              MIN          Minnesota             3            21    2
## 2425              MIN          Minnesota             3            14    2
## 2426              MIN          Minnesota             3            14    2
## 2427              MIN          Minnesota             2            40    2
## 2428              MIN          Minnesota             2            22    2
## 2429              MIN          Minnesota             1            48    2
## 2430              MIN          Minnesota             1            34    2
## 2431              MIN          Minnesota             1            13    2
## 2432              MIN          Minnesota             0          50.8    2
## 2433              MIN          Minnesota             0          30.7    2
## 2434              MIN          Minnesota             0          18.5    2
## 2435              MIN          Minnesota             0          18.5    2
## 2436              MIN          Minnesota             0           0.0    2
## 2437              MIN          Minnesota             9            44    2
## 2438              MIN          Minnesota             9            34    2
## 2439              MIN          Minnesota             9            20    2
## 2440              MIN          Minnesota             9            13    2
## 2441              MIN          Minnesota             8            28    2
## 2442              MIN          Minnesota             8            05    2
## 2443              MIN          Minnesota             7            58    2
## 2444              MIN          Minnesota             7            45    2
## 2445              MIN          Minnesota             7            36    2
## 2446              MIN          Minnesota             7            19    2
## 2447              MIN          Minnesota             7            04    2
## 2448              MIN          Minnesota             7            04    2
## 2449              MIN          Minnesota             6            48    2
## 2450              MIN          Minnesota             6            36    2
## 2451              MIN          Minnesota             6            11    2
## 2452              MIN          Minnesota             5            59    2
## 2453              MIN          Minnesota             5            37    2
## 2454              MIN          Minnesota             5            32    2
## 2455              MIN          Minnesota             5            32    2
## 2456              MIN          Minnesota             5            18    2
## 2457              MIN          Minnesota             4            59    2
## 2458              MIN          Minnesota             4            44    2
## 2459              MIN          Minnesota             4            33    2
## 2460              MIN          Minnesota             4            14    2
## 2461              MIN          Minnesota             4            14    2
## 2462              MIN          Minnesota             3            50    2
## 2463              MIN          Minnesota             3            36    2
## 2464              MIN          Minnesota             3            36    2
## 2465              MIN          Minnesota             3            22    2
## 2466              MIN          Minnesota             3            22    2
## 2467              MIN          Minnesota             3            07    2
## 2468              MIN          Minnesota             3            01    2
## 2469              MIN          Minnesota             2            44    2
## 2470              MIN          Minnesota             2            32    2
## 2471              MIN          Minnesota             2            14    2
## 2472              MIN          Minnesota             1            54    2
## 2473              MIN          Minnesota             1            42    2
## 2474              MIN          Minnesota             1            35    2
## 2475              MIN          Minnesota             1            35    2
## 2476              MIN          Minnesota             1            20    2
## 2477              MIN          Minnesota             1            20    2
## 2478              MIN          Minnesota             1            06    2
## 2479              MIN          Minnesota             1            06    2
## 2480              MIN          Minnesota             1            01    2
## 2481              MIN          Minnesota             1            01    2
## 2482              MIN          Minnesota             1            00    2
## 2483              MIN          Minnesota             1            00    2
## 2484              MIN          Minnesota             0          45.8    2
## 2485              MIN          Minnesota             0          37.9    2
## 2486              MIN          Minnesota             0          20.6    2
## 2487              MIN          Minnesota             0           7.9    2
## 2488              IND            Indiana             9            39    1
## 2489              IND            Indiana             9            21    1
## 2490              IND            Indiana             9            07    1
## 2491              IND            Indiana             8            56    1
## 2492              IND            Indiana             8            45    1
## 2493              IND            Indiana             8            23    1
## 2494              IND            Indiana             8            12    1
## 2495              IND            Indiana             7            45    1
## 2496              IND            Indiana             7            35    1
## 2497              IND            Indiana             7            22    1
## 2498              IND            Indiana             7            15    1
## 2499              IND            Indiana             6            56    1
## 2500              IND            Indiana             6            34    1
## 2501              IND            Indiana             6            28    1
## 2502              IND            Indiana             6            13    1
## 2503              IND            Indiana             5            53    1
## 2504              IND            Indiana             5            44    1
## 2505              IND            Indiana             5            37    1
## 2506              IND            Indiana             5            37    1
## 2507              IND            Indiana             5            24    1
## 2508              IND            Indiana             5            14    1
## 2509              IND            Indiana             5            00    1
## 2510              IND            Indiana             4            37    1
## 2511              IND            Indiana             4            16    1
## 2512              IND            Indiana             3            58    1
## 2513              IND            Indiana             3            42    1
## 2514              IND            Indiana             3            38    1
## 2515              IND            Indiana             3            28    1
## 2516              IND            Indiana             3            05    1
## 2517              IND            Indiana             2            57    1
## 2518              IND            Indiana             2            45    1
## 2519              IND            Indiana             2            31    1
## 2520              IND            Indiana             2            11    1
## 2521              IND            Indiana             2            03    1
## 2522              IND            Indiana             1            37    1
## 2523              IND            Indiana             1            17    1
## 2524              IND            Indiana             0          56.2    1
## 2525              IND            Indiana             0          45.9    1
## 2526              IND            Indiana             0          45.9    1
## 2527              IND            Indiana             0          30.8    1
## 2528              IND            Indiana             0          20.4    1
## 2529              IND            Indiana             0           0.6    1
## 2530              IND            Indiana             9            43    1
## 2531              IND            Indiana             9            17    1
## 2532              IND            Indiana             8            57    1
## 2533              IND            Indiana             8            41    1
## 2534              IND            Indiana             8            31    1
## 2535              IND            Indiana             8            11    1
## 2536              IND            Indiana             7            53    1
## 2537              IND            Indiana             7            48    1
## 2538              IND            Indiana             7            13    1
## 2539              IND            Indiana             7            13    1
## 2540              IND            Indiana             6            50    1
## 2541              IND            Indiana             6            33    1
## 2542              IND            Indiana             6            23    1
## 2543              IND            Indiana             5            40    1
## 2544              IND            Indiana             5            18    1
## 2545              IND            Indiana             5            02    1
## 2546              IND            Indiana             5            02    1
## 2547              IND            Indiana             4            37    1
## 2548              IND            Indiana             4            20    1
## 2549              IND            Indiana             4            16    1
## 2550              IND            Indiana             4            01    1
## 2551              IND            Indiana             3            49    1
## 2552              IND            Indiana             3            49    1
## 2553              IND            Indiana             3            45    1
## 2554              IND            Indiana             3            27    1
## 2555              IND            Indiana             3            16    1
## 2556              IND            Indiana             3            04    1
## 2557              IND            Indiana             2            52    1
## 2558              IND            Indiana             2            16    1
## 2559              IND            Indiana             2            16    1
## 2560              IND            Indiana             1            52    1
## 2561              IND            Indiana             1            34    1
## 2562              IND            Indiana             1            15    1
## 2563              IND            Indiana             1            06    1
## 2564              IND            Indiana             0          50.2    1
## 2565              IND            Indiana             0          47.8    1
## 2566              IND            Indiana             0          40.9    1
## 2567              IND            Indiana             0          28.8    1
## 2568              IND            Indiana             0           3.7    1
## 2569              IND            Indiana             0           3.7    1
## 2570              IND            Indiana             9            13    2
## 2571              IND            Indiana             8            59    2
## 2572              IND            Indiana             8            39    2
## 2573              IND            Indiana             8            29    2
## 2574              IND            Indiana             8            22    2
## 2575              IND            Indiana             8            07    2
## 2576              IND            Indiana             7            49    2
## 2577              IND            Indiana             7            44    2
## 2578              IND            Indiana             7            33    2
## 2579              IND            Indiana             7            21    2
## 2580              IND            Indiana             7            14    2
## 2581              IND            Indiana             7            00    2
## 2582              IND            Indiana             6            50    2
## 2583              IND            Indiana             6            30    2
## 2584              IND            Indiana             6            26    2
## 2585              IND            Indiana             6            09    2
## 2586              IND            Indiana             5            44    2
## 2587              IND            Indiana             5            36    2
## 2588              IND            Indiana             5            24    2
## 2589              IND            Indiana             5            11    2
## 2590              IND            Indiana             5            06    2
## 2591              IND            Indiana             4            58    2
## 2592              IND            Indiana             4            41    2
## 2593              IND            Indiana             4            26    2
## 2594              IND            Indiana             3            50    2
## 2595              IND            Indiana             3            14    2
## 2596              IND            Indiana             3            04    2
## 2597              IND            Indiana             3            00    2
## 2598              IND            Indiana             2            37    2
## 2599              IND            Indiana             2            18    2
## 2600              IND            Indiana             2            08    2
## 2601              IND            Indiana             1            58    2
## 2602              IND            Indiana             1            37    2
## 2603              IND            Indiana             1            23    2
## 2604              IND            Indiana             1            06    2
## 2605              IND            Indiana             0          55.9    2
## 2606              IND            Indiana             0          42.2    2
## 2607              IND            Indiana             0          42.2    2
## 2608              IND            Indiana             0          25.8    2
## 2609              IND            Indiana             0          25.8    2
## 2610              IND            Indiana             0           5.7    2
## 2611              IND            Indiana             0           5.7    2
## 2612              IND            Indiana             0           0.0    2
## 2613              IND            Indiana             9            44    2
## 2614              IND            Indiana             9            23    2
## 2615              IND            Indiana             9            01    2
## 2616              IND            Indiana             8            41    2
## 2617              IND            Indiana             8            23    2
## 2618              IND            Indiana             8            06    2
## 2619              IND            Indiana             7            46    2
## 2620              IND            Indiana             7            36    2
## 2621              IND            Indiana             7            24    2
## 2622              IND            Indiana             7            10    2
## 2623              IND            Indiana             6            45    2
## 2624              IND            Indiana             6            42    2
## 2625              IND            Indiana             6            26    2
## 2626              IND            Indiana             6            11    2
## 2627              IND            Indiana             6            11    2
## 2628              IND            Indiana             5            54    2
## 2629              IND            Indiana             5            12    2
## 2630              IND            Indiana             4            54    2
## 2631              IND            Indiana             4            44    2
## 2632              IND            Indiana             4            34    2
## 2633              IND            Indiana             4            18    2
## 2634              IND            Indiana             4            18    2
## 2635              IND            Indiana             4            10    2
## 2636              IND            Indiana             4            06    2
## 2637              IND            Indiana             3            41    2
## 2638              IND            Indiana             3            22    2
## 2639              IND            Indiana             3            09    2
## 2640              IND            Indiana             3            01    2
## 2641              IND            Indiana             2            51    2
## 2642              IND            Indiana             2            50    2
## 2643              IND            Indiana             2            34    2
## 2644              IND            Indiana             2            20    2
## 2645              IND            Indiana             2            20    2
## 2646              IND            Indiana             2            01    2
## 2647              IND            Indiana             1            41    2
## 2648              IND            Indiana             1            27    2
## 2649              IND            Indiana             1            27    2
## 2650              IND            Indiana             1            27    2
## 2651              IND            Indiana             1            07    2
## 2652              IND            Indiana             1            05    2
## 2653              IND            Indiana             0          36.8    2
## 2654              IND            Indiana             0          33.7    2
## 2655              IND            Indiana             0          25.6    2
## 2656              IND            Indiana             0           8.8    2
## 2657              IND            Indiana             0           4.5    2
## 2658              IND            Indiana             0           4.5    2
## 2659              WSH         Washington             9            43    1
## 2660              WSH         Washington             9            40    1
## 2661              WSH         Washington             9            16    1
## 2662              WSH         Washington             9            08    1
## 2663              WSH         Washington             8            58    1
## 2664              WSH         Washington             8            50    1
## 2665              WSH         Washington             8            20    1
## 2666              WSH         Washington             8            10    1
## 2667              WSH         Washington             8            00    1
## 2668              WSH         Washington             7            52    1
## 2669              WSH         Washington             7            43    1
## 2670              WSH         Washington             7            31    1
## 2671              WSH         Washington             7            15    1
## 2672              WSH         Washington             6            59    1
## 2673              WSH         Washington             6            46    1
## 2674              WSH         Washington             6            37    1
## 2675              WSH         Washington             6            24    1
## 2676              WSH         Washington             6            18    1
## 2677              WSH         Washington             6            09    1
## 2678              WSH         Washington             5            58    1
## 2679              WSH         Washington             5            39    1
## 2680              WSH         Washington             5            35    1
## 2681              WSH         Washington             5            07    1
## 2682              WSH         Washington             4            56    1
## 2683              WSH         Washington             4            38    1
## 2684              WSH         Washington             4            27    1
## 2685              WSH         Washington             4            05    1
## 2686              WSH         Washington             3            40    1
## 2687              WSH         Washington             3            32    1
## 2688              WSH         Washington             3            16    1
## 2689              WSH         Washington             3            06    1
## 2690              WSH         Washington             2            49    1
## 2691              WSH         Washington             2            49    1
## 2692              WSH         Washington             2            29    1
## 2693              WSH         Washington             1            53    1
## 2694              WSH         Washington             1            05    1
## 2695              WSH         Washington             1            02    1
## 2696              WSH         Washington             0          37.7    1
## 2697              WSH         Washington             0          20.5    1
## 2698              WSH         Washington             0           7.0    1
## 2699              WSH         Washington             0           7.0    1
## 2700              WSH         Washington             9            44    1
## 2701              WSH         Washington             9            30    1
## 2702              WSH         Washington             9            20    1
## 2703              WSH         Washington             8            58    1
## 2704              WSH         Washington             8            44    1
## 2705              WSH         Washington             8            34    1
## 2706              WSH         Washington             8            18    1
## 2707              WSH         Washington             7            57    1
## 2708              WSH         Washington             7            48    1
## 2709              WSH         Washington             7            36    1
## 2710              WSH         Washington             7            23    1
## 2711              WSH         Washington             7            03    1
## 2712              WSH         Washington             6            49    1
## 2713              WSH         Washington             6            32    1
## 2714              WSH         Washington             6            07    1
## 2715              WSH         Washington             5            57    1
## 2716              WSH         Washington             5            40    1
## 2717              WSH         Washington             5            22    1
## 2718              WSH         Washington             5            05    1
## 2719              WSH         Washington             5            01    1
## 2720              WSH         Washington             4            47    1
## 2721              WSH         Washington             4            27    1
## 2722              WSH         Washington             4            11    1
## 2723              WSH         Washington             3            50    1
## 2724              WSH         Washington             3            39    1
## 2725              WSH         Washington             3            39    1
## 2726              WSH         Washington             3            08    1
## 2727              WSH         Washington             2            53    1
## 2728              WSH         Washington             2            49    1
## 2729              WSH         Washington             2            38    1
## 2730              WSH         Washington             2            38    1
## 2731              WSH         Washington             2            27    1
## 2732              WSH         Washington             2            02    1
## 2733              WSH         Washington             1            44    1
## 2734              WSH         Washington             1            34    1
## 2735              WSH         Washington             1            11    1
## 2736              WSH         Washington             0          55.8    1
## 2737              WSH         Washington             0          41.6    1
## 2738              WSH         Washington             0          25.8    1
## 2739              WSH         Washington             0          16.2    1
## 2740              WSH         Washington             0           0.1    1
## 2741              WSH         Washington             9            48    2
## 2742              WSH         Washington             9            34    2
## 2743              WSH         Washington             9            16    2
## 2744              WSH         Washington             9            06    2
## 2745              WSH         Washington             8            47    2
## 2746              WSH         Washington             8            28    2
## 2747              WSH         Washington             8            28    2
## 2748              WSH         Washington             8            21    2
## 2749              WSH         Washington             8            15    2
## 2750              WSH         Washington             7            49    2
## 2751              WSH         Washington             7            24    2
## 2752              WSH         Washington             7            12    2
## 2753              WSH         Washington             6            53    2
## 2754              WSH         Washington             6            32    2
## 2755              WSH         Washington             6            16    2
## 2756              WSH         Washington             6            08    2
## 2757              WSH         Washington             5            58    2
## 2758              WSH         Washington             5            38    2
## 2759              WSH         Washington             5            19    2
## 2760              WSH         Washington             4            54    2
## 2761              WSH         Washington             4            46    2
## 2762              WSH         Washington             4            40    2
## 2763              WSH         Washington             4            26    2
## 2764              WSH         Washington             4            12    2
## 2765              WSH         Washington             3            53    2
## 2766              WSH         Washington             3            38    2
## 2767              WSH         Washington             3            29    2
## 2768              WSH         Washington             3            11    2
## 2769              WSH         Washington             2            53    2
## 2770              WSH         Washington             2            35    2
## 2771              WSH         Washington             2            33    2
## 2772              WSH         Washington             2            12    2
## 2773              WSH         Washington             1            50    2
## 2774              WSH         Washington             1            48    2
## 2775              WSH         Washington             1            48    2
## 2776              WSH         Washington             1            18    2
## 2777              WSH         Washington             1            18    2
## 2778              WSH         Washington             0          55.2    2
## 2779              WSH         Washington             0          54.2    2
## 2780              WSH         Washington             0          43.6    2
## 2781              WSH         Washington             0          22.4    2
## 2782              WSH         Washington             0          12.3    2
## 2783              WSH         Washington             0           5.1    2
## 2784              WSH         Washington             0           1.3    2
## 2785              WSH         Washington             0           1.3    2
## 2786              WSH         Washington             9            44    2
## 2787              WSH         Washington             9            44    2
## 2788              WSH         Washington             9            23    2
## 2789              WSH         Washington             9            04    2
## 2790              WSH         Washington             8            45    2
## 2791              WSH         Washington             8            37    2
## 2792              WSH         Washington             8            19    2
## 2793              WSH         Washington             7            58    2
## 2794              WSH         Washington             7            26    2
## 2795              WSH         Washington             7            15    2
## 2796              WSH         Washington             6            53    2
## 2797              WSH         Washington             6            35    2
## 2798              WSH         Washington             6            15    2
## 2799              WSH         Washington             5            43    2
## 2800              WSH         Washington             5            29    2
## 2801              WSH         Washington             5            26    2
## 2802              WSH         Washington             4            53    2
## 2803              WSH         Washington             4            38    2
## 2804              WSH         Washington             4            28    2
## 2805              WSH         Washington             3            56    2
## 2806              WSH         Washington             3            45    2
## 2807              WSH         Washington             3            45    2
## 2808              WSH         Washington             3            11    2
## 2809              WSH         Washington             2            58    2
## 2810              WSH         Washington             2            50    2
## 2811              WSH         Washington             2            50    2
## 2812              WSH         Washington             2            31    2
## 2813              WSH         Washington             2            08    2
## 2814              WSH         Washington             1            53    2
## 2815              WSH         Washington             1            34    2
## 2816              WSH         Washington             1            24    2
## 2817              WSH         Washington             1            09    2
## 2818              WSH         Washington             0          54.0    2
## 2819              WSH         Washington             0          45.2    2
## 2820              WSH         Washington             0          45.2    2
## 2821              WSH         Washington             0          30.0    2
## 2822              PHX            Phoenix             9            33    1
## 2823              PHX            Phoenix             9            05    1
## 2824              PHX            Phoenix             8            44    1
## 2825              PHX            Phoenix             8            31    1
## 2826              PHX            Phoenix             8            16    1
## 2827              PHX            Phoenix             7            52    1
## 2828              PHX            Phoenix             7            28    1
## 2829              PHX            Phoenix             7            11    1
## 2830              PHX            Phoenix             6            47    1
## 2831              PHX            Phoenix             6            32    1
## 2832              PHX            Phoenix             6            15    1
## 2833              PHX            Phoenix             6            00    1
## 2834              PHX            Phoenix             5            36    1
## 2835              PHX            Phoenix             5            11    1
## 2836              PHX            Phoenix             4            55    1
## 2837              PHX            Phoenix             4            43    1
## 2838              PHX            Phoenix             4            39    1
## 2839              PHX            Phoenix             4            30    1
## 2840              PHX            Phoenix             4            22    1
## 2841              PHX            Phoenix             4            08    1
## 2842              PHX            Phoenix             3            33    1
## 2843              PHX            Phoenix             3            18    1
## 2844              PHX            Phoenix             3            15    1
## 2845              PHX            Phoenix             3            04    1
## 2846              PHX            Phoenix             3            02    1
## 2847              PHX            Phoenix             3            02    1
## 2848              PHX            Phoenix             2            41    1
## 2849              PHX            Phoenix             2            34    1
## 2850              PHX            Phoenix             2            14    1
## 2851              PHX            Phoenix             1            57    1
## 2852              PHX            Phoenix             1            43    1
## 2853              PHX            Phoenix             1            22    1
## 2854              PHX            Phoenix             1            09    1
## 2855              PHX            Phoenix             0          51.1    1
## 2856              PHX            Phoenix             0          43.8    1
## 2857              PHX            Phoenix             0          19.4    1
## 2858              PHX            Phoenix             0           0.2    1
## 2859              PHX            Phoenix             9            41    1
## 2860              PHX            Phoenix             9            27    1
## 2861              PHX            Phoenix             9            10    1
## 2862              PHX            Phoenix             8            58    1
## 2863              PHX            Phoenix             8            38    1
## 2864              PHX            Phoenix             8            26    1
## 2865              PHX            Phoenix             8            26    1
## 2866              PHX            Phoenix             8            16    1
## 2867              PHX            Phoenix             8            08    1
## 2868              PHX            Phoenix             8            04    1
## 2869              PHX            Phoenix             7            57    1
## 2870              PHX            Phoenix             7            42    1
## 2871              PHX            Phoenix             7            34    1
## 2872              PHX            Phoenix             7            34    1
## 2873              PHX            Phoenix             7            13    1
## 2874              PHX            Phoenix             6            54    1
## 2875              PHX            Phoenix             6            45    1
## 2876              PHX            Phoenix             6            25    1
## 2877              PHX            Phoenix             6            12    1
## 2878              PHX            Phoenix             5            49    1
## 2879              PHX            Phoenix             5            35    1
## 2880              PHX            Phoenix             5            15    1
## 2881              PHX            Phoenix             4            58    1
## 2882              PHX            Phoenix             4            44    1
## 2883              PHX            Phoenix             4            40    1
## 2884              PHX            Phoenix             4            17    1
## 2885              PHX            Phoenix             4            10    1
## 2886              PHX            Phoenix             3            41    1
## 2887              PHX            Phoenix             3            41    1
## 2888              PHX            Phoenix             3            26    1
## 2889              PHX            Phoenix             2            59    1
## 2890              PHX            Phoenix             2            42    1
## 2891              PHX            Phoenix             2            42    1
## 2892              PHX            Phoenix             1            56    1
## 2893              PHX            Phoenix             1            39    1
## 2894              PHX            Phoenix             1            13    1
## 2895              PHX            Phoenix             1            13    1
## 2896              PHX            Phoenix             0          59.5    1
## 2897              PHX            Phoenix             0          32.0    1
## 2898              PHX            Phoenix             0          15.6    1
## 2899              PHX            Phoenix             0          10.7    1
## 2900              PHX            Phoenix             0           9.3    1
## 2901              PHX            Phoenix             0           1.7    1
## 2902              PHX            Phoenix             9            42    2
## 2903              PHX            Phoenix             9            21    2
## 2904              PHX            Phoenix             8            51    2
## 2905              PHX            Phoenix             8            41    2
## 2906              PHX            Phoenix             8            26    2
## 2907              PHX            Phoenix             8            10    2
## 2908              PHX            Phoenix             7            50    2
## 2909              PHX            Phoenix             7            34    2
## 2910              PHX            Phoenix             7            19    2
## 2911              PHX            Phoenix             7            09    2
## 2912              PHX            Phoenix             6            51    2
## 2913              PHX            Phoenix             6            50    2
## 2914              PHX            Phoenix             6            36    2
## 2915              PHX            Phoenix             6            20    2
## 2916              PHX            Phoenix             5            55    2
## 2917              PHX            Phoenix             5            43    2
## 2918              PHX            Phoenix             5            43    2
## 2919              PHX            Phoenix             5            30    2
## 2920              PHX            Phoenix             5            04    2
## 2921              PHX            Phoenix             5            01    2
## 2922              PHX            Phoenix             5            01    2
## 2923              PHX            Phoenix             4            44    2
## 2924              PHX            Phoenix             4            36    2
## 2925              PHX            Phoenix             4            18    2
## 2926              PHX            Phoenix             3            39    2
## 2927              PHX            Phoenix             3            36    2
## 2928              PHX            Phoenix             3            16    2
## 2929              PHX            Phoenix             2            58    2
## 2930              PHX            Phoenix             2            58    2
## 2931              PHX            Phoenix             2            47    2
## 2932              PHX            Phoenix             2            24    2
## 2933              PHX            Phoenix             2            18    2
## 2934              PHX            Phoenix             1            54    2
## 2935              PHX            Phoenix             1            40    2
## 2936              PHX            Phoenix             1            27    2
## 2937              PHX            Phoenix             1            13    2
## 2938              PHX            Phoenix             1            02    2
## 2939              PHX            Phoenix             0          40.5    2
## 2940              PHX            Phoenix             0          21.7    2
## 2941              PHX            Phoenix             0           3.0    2
## 2942              PHX            Phoenix             0           0.2    2
## 2943              PHX            Phoenix             9            48    2
## 2944              PHX            Phoenix             9            34    2
## 2945              PHX            Phoenix             9            28    2
## 2946              PHX            Phoenix             9            05    2
## 2947              PHX            Phoenix             9            02    2
## 2948              PHX            Phoenix             8            46    2
## 2949              PHX            Phoenix             8            32    2
## 2950              PHX            Phoenix             8            15    2
## 2951              PHX            Phoenix             7            50    2
## 2952              PHX            Phoenix             7            42    2
## 2953              PHX            Phoenix             7            31    2
## 2954              PHX            Phoenix             7            28    2
## 2955              PHX            Phoenix             7            21    2
## 2956              PHX            Phoenix             7            16    2
## 2957              PHX            Phoenix             7            01    2
## 2958              PHX            Phoenix             6            52    2
## 2959              PHX            Phoenix             6            52    2
## 2960              PHX            Phoenix             6            28    2
## 2961              PHX            Phoenix             6            13    2
## 2962              PHX            Phoenix             5            53    2
## 2963              PHX            Phoenix             5            38    2
## 2964              PHX            Phoenix             5            22    2
## 2965              PHX            Phoenix             5            07    2
## 2966              PHX            Phoenix             4            53    2
## 2967              PHX            Phoenix             4            35    2
## 2968              PHX            Phoenix             4            10    2
## 2969              PHX            Phoenix             3            49    2
## 2970              PHX            Phoenix             3            31    2
## 2971              PHX            Phoenix             3            28    2
## 2972              PHX            Phoenix             3            21    2
## 2973              PHX            Phoenix             3            13    2
## 2974              PHX            Phoenix             2            51    2
## 2975              PHX            Phoenix             2            39    2
## 2976              PHX            Phoenix             2            27    2
## 2977              PHX            Phoenix             2            07    2
## 2978              PHX            Phoenix             1            52    2
## 2979              PHX            Phoenix             1            28    2
## 2980              PHX            Phoenix             1            07    2
## 2981              PHX            Phoenix             0          53.6    2
## 2982              PHX            Phoenix             0          46.1    2
## 2983              PHX            Phoenix             0          37.2    2
## 2984              PHX            Phoenix             0          26.6    2
## 2985              PHX            Phoenix             0          26.6    2
## 2986              PHX            Phoenix             0          16.9    2
## 2987              PHX            Phoenix             0           5.3    2
## 2988               LV          Las Vegas             9            35    1
## 2989               LV          Las Vegas             9            20    1
## 2990               LV          Las Vegas             9            14    1
## 2991               LV          Las Vegas             8            43    1
## 2992               LV          Las Vegas             8            36    1
## 2993               LV          Las Vegas             8            23    1
## 2994               LV          Las Vegas             8            07    1
## 2995               LV          Las Vegas             7            55    1
## 2996               LV          Las Vegas             7            33    1
## 2997               LV          Las Vegas             7            09    1
## 2998               LV          Las Vegas             6            54    1
## 2999               LV          Las Vegas             6            49    1
## 3000               LV          Las Vegas             6            29    1
## 3001               LV          Las Vegas             6            20    1
## 3002               LV          Las Vegas             6            02    1
## 3003               LV          Las Vegas             5            47    1
## 3004               LV          Las Vegas             5            38    1
## 3005               LV          Las Vegas             5            38    1
## 3006               LV          Las Vegas             5            25    1
## 3007               LV          Las Vegas             5            09    1
## 3008               LV          Las Vegas             4            56    1
## 3009               LV          Las Vegas             4            34    1
## 3010               LV          Las Vegas             4            28    1
## 3011               LV          Las Vegas             4            07    1
## 3012               LV          Las Vegas             3            54    1
## 3013               LV          Las Vegas             3            44    1
## 3014               LV          Las Vegas             3            37    1
## 3015               LV          Las Vegas             3            30    1
## 3016               LV          Las Vegas             3            21    1
## 3017               LV          Las Vegas             3            00    1
## 3018               LV          Las Vegas             2            43    1
## 3019               LV          Las Vegas             2            43    1
## 3020               LV          Las Vegas             2            28    1
## 3021               LV          Las Vegas             2            18    1
## 3022               LV          Las Vegas             2            05    1
## 3023               LV          Las Vegas             1            51    1
## 3024               LV          Las Vegas             1            27    1
## 3025               LV          Las Vegas             1            10    1
## 3026               LV          Las Vegas             0          53.4    1
## 3027               LV          Las Vegas             0          43.8    1
## 3028               LV          Las Vegas             0          43.8    1
## 3029               LV          Las Vegas             0          29.0    1
## 3030               LV          Las Vegas             0          29.0    1
##      lag_half lead_half game_play_number
## 1           1         1                2
## 2           1         1                4
## 3           1         1                7
## 4           1         1                8
## 5           1         1               10
## 6           1         1               12
## 7           1         1               13
## 8           1         1               16
## 9           1         1               17
## 10          1         1               18
## 11          1         1               20
## 12          1         1               21
## 13          1         1               22
## 14          1         1               24
## 15          1         1               25
## 16          1         1               27
## 17          1         1               29
## 18          1         1               30
## 19          1         1               32
## 20          1         1               33
## 21          1         1               34
## 22          1         1               36
## 23          1         1               37
## 24          1         1               39
## 25          1         1               41
## 26          1         1               50
## 27          1         1               51
## 28          1         1               54
## 29          1         1               55
## 30          1         1               56
## 31          1         1               58
## 32          1         1               60
## 33          1         1               62
## 34          1         1               64
## 35          1         1               65
## 36          1         1               68
## 37          1         1               69
## 38          1         1               71
## 39          1         1               74
## 40          1         1               75
## 41          1         1               82
## 42          1         1               83
## 43          1         1               84
## 44          1         1               86
## 45          1         1               88
## 46          1         1               89
## 47          1         1               91
## 48          1         1              101
## 49          1         1              105
## 50          1         1              108
## 51          1         1              110
## 52          1         1              115
## 53          1         1              118
## 54          1         1              120
## 55          1         1              122
## 56          1         1              123
## 57          1         1              124
## 58          1         1              126
## 59          1         1              127
## 60          1         1              129
## 61          1         1              131
## 62          1         1              138
## 63          1         1              139
## 64          1         1              140
## 65          1         1              142
## 66          1         1              144
## 67          1         1              146
## 68          1         1              148
## 69          1         1              149
## 70          1         1              151
## 71          1         1              155
## 72          1         1              160
## 73          1         1              162
## 74          1         1              163
## 75          1         1              165
## 76          1         1              167
## 77          1         1              168
## 78          1         1              169
## 79          1         1              170
## 80          1         1              171
## 81          1         1              175
## 82          1         1              176
## 83          1         1              177
## 84          1         1              178
## 85          1         1              181
## 86          1         1              184
## 87          1         1              185
## 88          1         1              187
## 89          1         1              189
## 90          1         1              190
## 91          1         1              192
## 92          1         1              194
## 93          1         1              195
## 94          2         2              200
## 95          2         2              202
## 96          2         2              203
## 97          2         2              205
## 98          2         2              206
## 99          2         2              208
## 100         2         2              210
## 101         2         2              211
## 102         2         2              214
## 103         2         2              216
## 104         2         2              218
## 105         2         2              219
## 106         2         2              221
## 107         2         2              223
## 108         2         2              225
## 109         2         2              227
## 110         2         2              229
## 111         2         2              231
## 112         2         2              234
## 113         2         2              235
## 114         2         2              236
## 115         2         2              238
## 116         2         2              239
## 117         2         2              240
## 118         2         2              242
## 119         2         2              245
## 120         2         2              246
## 121         2         2              249
## 122         2         2              251
## 123         2         2              253
## 124         2         2              254
## 125         2         2              256
## 126         2         2              258
## 127         2         2              263
## 128         2         2              268
## 129         2         2              269
## 130         2         2              271
## 131         2         2              274
## 132         2         2              276
## 133         2         2              277
## 134         2         2              280
## 135         2         2              283
## 136         2         2              284
## 137         2         2              288
## 138         2         2              292
## 139         2         2              293
## 140         2         2              297
## 141         2         2              299
## 142         2         2              304
## 143         2         2              306
## 144         2         2              308
## 145         2         2              312
## 146         2         2              313
## 147         2         2              317
## 148         2         2              320
## 149         2         2              323
## 150         2         2              325
## 151         2         2              327
## 152         2         2              330
## 153         2         2              335
## 154         2         2              337
## 155         2         2              339
## 156         2         2              344
## 157         2         2              346
## 158         2         2              347
## 159         2         2              349
## 160         2         2              350
## 161         2         2              352
## 162         2         2              354
## 163         2         2              355
## 164         2         2              357
## 165         2         2              358
## 166         2         2              364
## 167         2         2              366
## 168         2         2              368
## 169         2         2              370
## 170         2         2              371
## 171         2         2              373
## 172         2         2              375
## 173         2         2              376
## 174         2         2              378
## 175         2         2              381
## 176         2         2              384
## 177         2         2              385
## 178         2         2              388
## 179         2         2              390
## 180         2         2              391
## 181         2         2              393
## 182         2         2              395
## 183         2         2              397
## 184         2         2              398
## 185         2         2              407
## 186         1         1                3
## 187         1         1                6
## 188         1         1                8
## 189         1         1                9
## 190         1         1               11
## 191         1         1               13
## 192         1         1               15
## 193         1         1               17
## 194         1         1               18
## 195         1         1               21
## 196         1         1               23
## 197         1         1               25
## 198         1         1               27
## 199         1         1               33
## 200         1         1               35
## 201         1         1               36
## 202         1         1               37
## 203         1         1               39
## 204         1         1               42
## 205         1         1               43
## 206         1         1               45
## 207         1         1               46
## 208         1         1               48
## 209         1         1               51
## 210         1         1               54
## 211         1         1               57
## 212         1         1               58
## 213         1         1               60
## 214         1         1               62
## 215         1         1               64
## 216         1         1               66
## 217         1         1               67
## 218         1         1               68
## 219         1         1               72
## 220         1         1               73
## 221         1         1               75
## 222         1         1               83
## 223         1         1               85
## 224         1         1               88
## 225         1         1               92
## 226         1         1               93
## 227         1         1               94
## 228         1         1               96
## 229         1         1               98
## 230         1         1              100
## 231         1         1              106
## 232         1         1              107
## 233         1         1              108
## 234         1         1              110
## 235         1         1              113
## 236         1         1              115
## 237         1         1              117
## 238         1         1              122
## 239         1         1              123
## 240         1         1              126
## 241         1         1              127
## 242         1         1              129
## 243         1         1              131
## 244         1         1              132
## 245         1         1              133
## 246         1         1              135
## 247         1         1              136
## 248         1         1              137
## 249         1         1              143
## 250         1         1              144
## 251         1         1              145
## 252         1         1              146
## 253         1         1              148
## 254         1         1              150
## 255         1         1              152
## 256         1         1              153
## 257         1         1              160
## 258         1         1              162
## 259         1         1              166
## 260         1         1              168
## 261         1         1              169
## 262         1         1              171
## 263         1         1              177
## 264         1         1              178
## 265         1         1              181
## 266         1         1              183
## 267         1         1              185
## 268         1         1              189
## 269         1         1              192
## 270         1         1              195
## 271         1         1              196
## 272         2         2              202
## 273         2         2              204
## 274         2         2              206
## 275         2         2              209
## 276         2         2              211
## 277         2         2              213
## 278         2         2              214
## 279         2         2              216
## 280         2         2              218
## 281         2         2              219
## 282         2         2              220
## 283         2         2              223
## 284         2         2              225
## 285         2         2              227
## 286         2         2              230
## 287         2         2              234
## 288         2         2              237
## 289         2         2              239
## 290         2         2              241
## 291         2         2              243
## 292         2         2              245
## 293         2         2              247
## 294         2         2              253
## 295         2         2              255
## 296         2         2              256
## 297         2         2              258
## 298         2         2              260
## 299         2         2              262
## 300         2         2              264
## 301         2         2              266
## 302         2         2              267
## 303         2         2              269
## 304         2         2              270
## 305         2         2              272
## 306         2         2              275
## 307         2         2              279
## 308         2         2              280
## 309         2         2              282
## 310         2         2              284
## 311         2         2              285
## 312         2         2              286
## 313         2         2              289
## 314         2         2              291
## 315         2         2              294
## 316         2         2              296
## 317         2         2              298
## 318         2         2              300
## 319         2         2              301
## 320         2         2              304
## 321         2         2              306
## 322         2         2              307
## 323         2         2              309
## 324         2         2              314
## 325         2         2              315
## 326         2         2              317
## 327         2         2              319
## 328         2         2              323
## 329         2         2              326
## 330         2         2              327
## 331         2         2              328
## 332         2         2              335
## 333         2         2              336
## 334         2         2              338
## 335         2         2              342
## 336         2         2              345
## 337         2         2              347
## 338         2         2              349
## 339         2         2              352
## 340         2         2              354
## 341         2         2              357
## 342         2         2              358
## 343         2         2              362
## 344         2         2              363
## 345         2         2              364
## 346         2         2              365
## 347         2         2              368
## 348         2         2              373
## 349         2         2              377
## 350         2         2              378
## 351         2         2              380
## 352         2         2              383
## 353         2         2              384
## 354         1         1                2
## 355         1         1                4
## 356         1         1                5
## 357         1         1                7
## 358         1         1                9
## 359         1         1               11
## 360         1         1               13
## 361         1         1               15
## 362         1         1               17
## 363         1         1               19
## 364         1         1               21
## 365         1         1               22
## 366         1         1               24
## 367         1         1               27
## 368         1         1               30
## 369         1         1               32
## 370         1         1               34
## 371         1         1               37
## 372         1         1               38
## 373         1         1               40
## 374         1         1               41
## 375         1         1               43
## 376         1         1               49
## 377         1         1               51
## 378         1         1               53
## 379         1         1               55
## 380         1         1               57
## 381         1         1               59
## 382         1         1               64
## 383         1         1               66
## 384         1         1               67
## 385         1         1               69
## 386         1         1               71
## 387         1         1               76
## 388         1         1               79
## 389         1         1               81
## 390         1         1               88
## 391         1         1               91
## 392         1         1               94
## 393         1         1               95
## 394         1         1               97
## 395         1         1               99
## 396         1         1              101
## 397         1         1              102
## 398         1         1              108
## 399         1         1              110
## 400         1         1              112
## 401         1         1              115
## 402         1         1              118
## 403         1         1              119
## 404         1         1              120
## 405         1         1              122
## 406         1         1              124
## 407         1         1              126
## 408         1         1              130
## 409         1         1              131
## 410         1         1              134
## 411         1         1              136
## 412         1         1              140
## 413         1         1              143
## 414         1         1              144
## 415         1         1              146
## 416         1         1              147
## 417         1         1              148
## 418         1         1              149
## 419         1         1              151
## 420         1         1              154
## 421         1         1              157
## 422         1         1              160
## 423         1         1              162
## 424         1         1              164
## 425         1         1              166
## 426         1         1              168
## 427         1         1              171
## 428         1         1              173
## 429         1         1              175
## 430         1         1              177
## 431         1         1              180
## 432         1         1              181
## 433         1         1              183
## 434         1         1              186
## 435         1         1              188
## 436         1         1              190
## 437         2         2              194
## 438         2         2              195
## 439         2         2              196
## 440         2         2              199
## 441         2         2              201
## 442         2         2              202
## 443         2         2              203
## 444         2         2              205
## 445         2         2              206
## 446         2         2              208
## 447         2         2              211
## 448         2         2              212
## 449         2         2              213
## 450         2         2              215
## 451         2         2              219
## 452         2         2              221
## 453         2         2              223
## 454         2         2              225
## 455         2         2              226
## 456         2         2              231
## 457         2         2              232
## 458         2         2              234
## 459         2         2              235
## 460         2         2              237
## 461         2         2              238
## 462         2         2              239
## 463         2         2              244
## 464         2         2              246
## 465         2         2              248
## 466         2         2              250
## 467         2         2              251
## 468         2         2              254
## 469         2         2              257
## 470         2         2              261
## 471         2         2              262
## 472         2         2              263
## 473         2         2              265
## 474         2         2              270
## 475         2         2              273
## 476         2         2              274
## 477         2         2              275
## 478         2         2              276
## 479         2         2              279
## 480         2         2              281
## 481         2         2              285
## 482         2         2              286
## 483         2         2              287
## 484         2         2              293
## 485         2         2              295
## 486         2         2              297
## 487         2         2              300
## 488         2         2              303
## 489         2         2              304
## 490         2         2              306
## 491         2         2              308
## 492         2         2              311
## 493         2         2              313
## 494         2         2              315
## 495         2         2              317
## 496         2         2              319
## 497         2         2              321
## 498         2         2              323
## 499         2         2              325
## 500         2         2              327
## 501         2         2              329
## 502         2         2              332
## 503         2         2              334
## 504         2         2              335
## 505         2         2              337
## 506         2         2              339
## 507         2         2              342
## 508         2         2              343
## 509         2         2              344
## 510         2         2              348
## 511         2         2              350
## 512         2         2              352
## 513         2         2              353
## 514         2         2              355
## 515         2         2              357
## 516         2         2              359
## 517         2         2              361
## 518         2         2              363
## 519         2         2              364
## 520         2         2              366
## 521         2         2              368
## 522         2         2              372
## 523         2         2              374
## 524         2         2              375
## 525         2         2              377
## 526         2         2              380
## 527         2         2              381
## 528         2         2              382
## 529         2         2              384
## 530         2         2              386
## 531         2         2              389
## 532         2         2              391
## 533         2         2              394
## 534         1         1                2
## 535         1         1                4
## 536         1         1                6
## 537         1         1                8
## 538         1         1               11
## 539         1         1               13
## 540         1         1               15
## 541         1         1               16
## 542         1         1               17
## 543         1         1               18
## 544         1         1               19
## 545         1         1               21
## 546         1         1               25
## 547         1         1               33
## 548         1         1               36
## 549         1         1               38
## 550         1         1               40
## 551         1         1               42
## 552         1         1               44
## 553         1         1               53
## 554         1         1               56
## 555         1         1               57
## 556         1         1               58
## 557         1         1               59
## 558         1         1               62
## 559         1         1               64
## 560         1         1               67
## 561         1         1               68
## 562         1         1               70
## 563         1         1               71
## 564         1         1               74
## 565         1         1               76
## 566         1         1               78
## 567         1         1               82
## 568         1         1               84
## 569         1         1               86
## 570         1         1               88
## 571         1         1               90
## 572         1         1               91
## 573         1         1               98
## 574         1         1               99
## 575         1         1              105
## 576         1         1              106
## 577         1         1              107
## 578         1         1              110
## 579         1         1              111
## 580         1         1              112
## 581         1         1              115
## 582         1         1              117
## 583         1         1              119
## 584         1         1              120
## 585         1         1              121
## 586         1         1              126
## 587         1         1              128
## 588         1         1              131
## 589         1         1              136
## 590         1         1              139
## 591         1         1              141
## 592         1         1              143
## 593         1         1              145
## 594         1         1              148
## 595         1         1              149
## 596         1         1              152
## 597         1         1              156
## 598         1         1              158
## 599         1         1              160
## 600         1         1              161
## 601         1         1              162
## 602         1         1              167
## 603         1         1              173
## 604         1         1              175
## 605         1         1              177
## 606         1         1              179
## 607         1         1              180
## 608         1         1              184
## 609         1         1              186
## 610         1         1              187
## 611         1         1              189
## 612         1         1              191
## 613         1         1              193
## 614         1         1              198
## 615         1         1              201
## 616         1         1              204
## 617         1         1              207
## 618         1         1              208
## 619         1         1              209
## 620         1         1              212
## 621         2         2              221
## 622         2         2              223
## 623         2         2              225
## 624         2         2              227
## 625         2         2              229
## 626         2         2              231
## 627         2         2              232
## 628         2         2              235
## 629         2         2              236
## 630         2         2              238
## 631         2         2              240
## 632         2         2              241
## 633         2         2              243
## 634         2         2              246
## 635         2         2              250
## 636         2         2              251
## 637         2         2              252
## 638         2         2              253
## 639         2         2              255
## 640         2         2              259
## 641         2         2              266
## 642         2         2              268
## 643         2         2              270
## 644         2         2              271
## 645         2         2              275
## 646         2         2              277
## 647         2         2              280
## 648         2         2              283
## 649         2         2              284
## 650         2         2              286
## 651         2         2              290
## 652         2         2              292
## 653         2         2              293
## 654         2         2              294
## 655         2         2              298
## 656         2         2              299
## 657         2         2              302
## 658         2         2              304
## 659         2         2              305
## 660         2         2              308
## 661         2         2              310
## 662         2         2              311
## 663         2         2              317
## 664         2         2              318
## 665         2         2              322
## 666         2         2              324
## 667         2         2              326
## 668         2         2              327
## 669         2         2              329
## 670         2         2              331
## 671         2         2              332
## 672         2         2              334
## 673         2         2              339
## 674         2         2              341
## 675         2         2              342
## 676         2         2              347
## 677         2         2              350
## 678         2         2              351
## 679         2         2              353
## 680         2         2              355
## 681         2         2              359
## 682         2         2              361
## 683         2         2              362
## 684         2         2              364
## 685         2         2              366
## 686         2         2              368
## 687         2         2              376
## 688         2         2              377
## 689         2         2              379
## 690         2         2              381
## 691         2         2              383
## 692         2         2              385
## 693         2         2              389
## 694         2         2              391
## 695         2         2              392
## 696         2         2              394
## 697         2         2              398
## 698         2         2              400
## 699         2         2              401
## 700         2         2              403
## 701         2         2              408
## 702         2         2              410
## 703         2         2              412
## 704         2         2              413
## 705         2         2              415
## 706         2         2              418
## 707         2         2              420
## 708         2         2              421
## 709         2         2              423
## 710         2         2              425
## 711         2         2              426
## 712         1         1                3
## 713         1         1                4
## 714         1         1                6
## 715         1         1                8
## 716         1         1                9
## 717         1         1               10
## 718         1         1               12
## 719         1         1               15
## 720         1         1               17
## 721         1         1               19
## 722         1         1               21
## 723         1         1               23
## 724         1         1               25
## 725         1         1               27
## 726         1         1               29
## 727         1         1               31
## 728         1         1               33
## 729         1         1               34
## 730         1         1               44
## 731         1         1               45
## 732         1         1               47
## 733         1         1               49
## 734         1         1               51
## 735         1         1               54
## 736         1         1               59
## 737         1         1               60
## 738         1         1               61
## 739         1         1               62
## 740         1         1               63
## 741         1         1               69
## 742         1         1               71
## 743         1         1               73
## 744         1         1               74
## 745         1         1               76
## 746         1         1               82
## 747         1         1               85
## 748         1         1               86
## 749         1         1               87
## 750         1         1               89
## 751         1         1               90
## 752         1         1               92
## 753         1         1               97
## 754         1         1               99
## 755         1         1              102
## 756         1         1              103
## 757         1         1              105
## 758         1         1              107
## 759         1         1              109
## 760         1         1              111
## 761         1         1              113
## 762         1         1              115
## 763         1         1              119
## 764         1         1              121
## 765         1         1              122
## 766         1         1              125
## 767         1         1              127
## 768         1         1              128
## 769         1         1              132
## 770         1         1              134
## 771         1         1              136
## 772         1         1              139
## 773         1         1              140
## 774         1         1              141
## 775         1         1              143
## 776         1         1              144
## 777         1         1              146
## 778         1         1              148
## 779         1         1              153
## 780         1         1              155
## 781         1         1              157
## 782         1         1              161
## 783         1         1              162
## 784         1         1              164
## 785         1         1              168
## 786         1         1              170
## 787         1         1              171
## 788         1         1              173
## 789         1         1              175
## 790         1         1              178
## 791         1         1              180
## 792         1         1              182
## 793         1         1              184
## 794         1         1              187
## 795         1         1              190
## 796         1         1              191
## 797         1         1              194
## 798         1         1              196
## 799         1         1              198
## 800         1         1              202
## 801         1         1              207
## 802         1         1              208
## 803         1         1              209
## 804         2         2              215
## 805         2         2              217
## 806         2         2              219
## 807         2         2              221
## 808         2         2              223
## 809         2         2              224
## 810         2         2              226
## 811         2         2              230
## 812         2         2              233
## 813         2         2              235
## 814         2         2              236
## 815         2         2              241
## 816         2         2              243
## 817         2         2              246
## 818         2         2              248
## 819         2         2              254
## 820         2         2              258
## 821         2         2              260
## 822         2         2              263
## 823         2         2              265
## 824         2         2              266
## 825         2         2              268
## 826         2         2              271
## 827         2         2              272
## 828         2         2              273
## 829         2         2              279
## 830         2         2              280
## 831         2         2              285
## 832         2         2              289
## 833         2         2              291
## 834         2         2              293
## 835         2         2              294
## 836         2         2              295
## 837         2         2              297
## 838         2         2              298
## 839         2         2              300
## 840         2         2              302
## 841         2         2              304
## 842         2         2              314
## 843         2         2              316
## 844         2         2              319
## 845         2         2              321
## 846         2         2              322
## 847         2         2              324
## 848         2         2              327
## 849         2         2              329
## 850         2         2              330
## 851         2         2              333
## 852         2         2              334
## 853         2         2              335
## 854         2         2              340
## 855         2         2              342
## 856         2         2              344
## 857         2         2              351
## 858         2         2              352
## 859         2         2              353
## 860         2         2              356
## 861         2         2              359
## 862         2         2              362
## 863         2         2              363
## 864         2         2              365
## 865         2         2              366
## 866         2         2              372
## 867         2         2              373
## 868         2         2              377
## 869         2         2              379
## 870         2         2              382
## 871         2         2              387
## 872         2         2              388
## 873         2         2              389
## 874         2         2              392
## 875         2         2              393
## 876         2         2              394
## 877         2         2              396
## 878         2         2              400
## 879         2         2              402
## 880         2         2              404
## 881         2         2              406
## 882         2         2              409
## 883         2         2              411
## 884         1         1                2
## 885         1         1                5
## 886         1         1                6
## 887         1         1                7
## 888         1         1                9
## 889         1         1               12
## 890         1         1               13
## 891         1         1               15
## 892         1         1               16
## 893         1         1               17
## 894         1         1               19
## 895         1         1               21
## 896         1         1               23
## 897         1         1               24
## 898         1         1               26
## 899         1         1               28
## 900         1         1               30
## 901         1         1               32
## 902         1         1               33
## 903         1         1               34
## 904         1         1               36
## 905         1         1               38
## 906         1         1               40
## 907         1         1               42
## 908         1         1               43
## 909         1         1               46
## 910         1         1               47
## 911         1         1               48
## 912         1         1               49
## 913         1         1               51
## 914         1         1               52
## 915         1         1               53
## 916         1         1               54
## 917         1         1               56
## 918         1         1               64
## 919         1         1               65
## 920         1         1               66
## 921         1         1               68
## 922         1         1               70
## 923         1         1               71
## 924         1         1               74
## 925         1         1               75
## 926         1         1               77
## 927         1         1               80
## 928         1         1               81
## 929         1         1               82
## 930         1         1               85
## 931         1         1               87
## 932         1         1               88
## 933         1         1               91
## 934         1         1               93
## 935         1         1               94
## 936         1         1               97
## 937         1         1               98
## 938         1         1              100
## 939         1         1              102
## 940         1         1              104
## 941         1         1              107
## 942         1         1              112
## 943         1         1              113
## 944         1         1              115
## 945         1         1              117
## 946         1         1              120
## 947         1         1              121
## 948         1         1              122
## 949         1         1              124
## 950         1         1              129
## 951         1         1              130
## 952         1         1              131
## 953         1         1              134
## 954         1         1              136
## 955         1         1              138
## 956         1         1              145
## 957         1         1              147
## 958         1         1              148
## 959         1         1              152
## 960         1         1              154
## 961         1         1              155
## 962         1         1              157
## 963         1         1              161
## 964         1         1              163
## 965         1         1              166
## 966         1         1              167
## 967         1         1              169
## 968         1         1              170
## 969         1         1              172
## 970         1         1              174
## 971         1         1              176
## 972         1         1              179
## 973         1         1              183
## 974         1         1              185
## 975         1         2              188
## 976         2         2              189
## 977         2         2              191
## 978         2         2              193
## 979         2         2              195
## 980         2         2              198
## 981         2         2              199
## 982         2         2              201
## 983         2         2              204
## 984         2         2              206
## 985         2         2              208
## 986         2         2              210
## 987         2         2              213
## 988         2         2              214
## 989         2         2              219
## 990         2         2              222
## 991         2         2              224
## 992         2         2              226
## 993         2         2              227
## 994         2         2              230
## 995         2         2              232
## 996         2         2              234
## 997         2         2              237
## 998         2         2              238
## 999         2         2              239
## 1000        2         2              243
## 1001        2         2              244
## 1002        2         2              245
## 1003        2         2              248
## 1004        2         2              250
## 1005        2         2              251
## 1006        2         2              254
## 1007        2         2              255
## 1008        2         2              256
## 1009        2         2              258
## 1010        2         2              260
## 1011        2         2              262
## 1012        2         2              264
## 1013        2         2              265
## 1014        2         2              267
## 1015        2         2              269
## 1016        2         2              272
## 1017        2         2              277
## 1018        2         2              278
## 1019        2         2              281
## 1020        2         2              283
## 1021        2         2              284
## 1022        2         2              285
## 1023        2         2              287
## 1024        2         2              288
## 1025        2         2              290
## 1026        2         2              293
## 1027        2         2              295
## 1028        2         2              296
## 1029        2         2              298
## 1030        2         2              300
## 1031        2         2              301
## 1032        2         2              303
## 1033        2         2              304
## 1034        2         2              305
## 1035        2         2              311
## 1036        2         2              313
## 1037        2         2              315
## 1038        2         2              317
## 1039        2         2              319
## 1040        2         2              322
## 1041        2         2              324
## 1042        2         2              325
## 1043        2         2              326
## 1044        2         2              327
## 1045        2         2              332
## 1046        2         2              333
## 1047        2         2              335
## 1048        2         2              337
## 1049        2         2              339
## 1050        2         2              340
## 1051        2         2              341
## 1052        2         2              343
## 1053        2         2              344
## 1054        2         2              345
## 1055        2         2              347
## 1056        2         2              349
## 1057        2         2              351
## 1058        2         2              352
## 1059        2         2              353
## 1060        2         2              357
## 1061        2         2              358
## 1062        2         2              360
## 1063        2         2              362
## 1064        1         1                2
## 1065        1         1                4
## 1066        1         1                6
## 1067        1         1                9
## 1068        1         1               10
## 1069        1         1               11
## 1070        1         1               13
## 1071        1         1               15
## 1072        1         1               16
## 1073        1         1               18
## 1074        1         1               20
## 1075        1         1               22
## 1076        1         1               23
## 1077        1         1               25
## 1078        1         1               26
## 1079        1         1               28
## 1080        1         1               29
## 1081        1         1               30
## 1082        1         1               31
## 1083        1         1               32
## 1084        1         1               36
## 1085        1         1               38
## 1086        1         1               40
## 1087        1         1               42
## 1088        1         1               44
## 1089        1         1               45
## 1090        1         1               46
## 1091        1         1               48
## 1092        1         1               49
## 1093        1         1               50
## 1094        1         1               52
## 1095        1         1               54
## 1096        1         1               62
## 1097        1         1               64
## 1098        1         1               67
## 1099        1         1               70
## 1100        1         1               72
## 1101        1         1               75
## 1102        1         1               77
## 1103        1         1               80
## 1104        1         1               81
## 1105        1         1               82
## 1106        1         1               84
## 1107        1         1               88
## 1108        1         1               90
## 1109        1         1               92
## 1110        1         1               94
## 1111        1         1               96
## 1112        1         1               97
## 1113        1         1               98
## 1114        1         1              100
## 1115        1         1              106
## 1116        1         1              107
## 1117        1         1              111
## 1118        1         1              113
## 1119        1         1              115
## 1120        1         1              116
## 1121        1         1              117
## 1122        1         1              119
## 1123        1         1              121
## 1124        1         1              125
## 1125        1         1              127
## 1126        1         1              129
## 1127        1         1              132
## 1128        1         1              138
## 1129        1         1              145
## 1130        1         1              147
## 1131        1         1              149
## 1132        1         1              151
## 1133        1         1              153
## 1134        1         1              154
## 1135        1         1              156
## 1136        1         1              157
## 1137        1         1              159
## 1138        1         1              162
## 1139        1         1              164
## 1140        1         1              167
## 1141        1         1              169
## 1142        1         1              170
## 1143        1         1              172
## 1144        1         1              174
## 1145        1         1              177
## 1146        1         1              182
## 1147        1         1              186
## 1148        1         1              190
## 1149        1         1              194
## 1150        1         1              196
## 1151        1         1              200
## 1152        1         1              202
## 1153        1         1              204
## 1154        1         1              207
## 1155        1         1              209
## 1156        1         1              212
## 1157        2         2              218
## 1158        2         2              220
## 1159        2         2              226
## 1160        2         2              227
## 1161        2         2              229
## 1162        2         2              233
## 1163        2         2              235
## 1164        2         2              237
## 1165        2         2              240
## 1166        2         2              245
## 1167        2         2              248
## 1168        2         2              251
## 1169        2         2              252
## 1170        2         2              254
## 1171        2         2              256
## 1172        2         2              258
## 1173        2         2              259
## 1174        2         2              267
## 1175        2         2              269
## 1176        2         2              270
## 1177        2         2              272
## 1178        2         2              276
## 1179        2         2              278
## 1180        2         2              282
## 1181        2         2              284
## 1182        2         2              287
## 1183        2         2              290
## 1184        2         2              292
## 1185        2         2              293
## 1186        2         2              297
## 1187        2         2              299
## 1188        2         2              300
## 1189        2         2              304
## 1190        2         2              306
## 1191        2         2              308
## 1192        2         2              310
## 1193        2         2              312
## 1194        2         2              313
## 1195        2         2              318
## 1196        2         2              319
## 1197        2         2              321
## 1198        2         2              325
## 1199        2         2              326
## 1200        2         2              329
## 1201        2         2              331
## 1202        2         2              333
## 1203        2         2              335
## 1204        2         2              336
## 1205        2         2              337
## 1206        2         2              341
## 1207        2         2              345
## 1208        2         2              349
## 1209        2         2              351
## 1210        2         2              352
## 1211        2         2              354
## 1212        2         2              359
## 1213        2         2              361
## 1214        2         2              366
## 1215        2         2              371
## 1216        2         2              373
## 1217        2         2              376
## 1218        2         2              381
## 1219        2         2              387
## 1220        2         2              391
## 1221        2         2              393
## 1222        2         2              395
## 1223        2         2              397
## 1224        2         2              398
## 1225        2         2              400
## 1226        2         2              402
## 1227        2         2              403
## 1228        2         2              406
## 1229        2         2              407
## 1230        2         2              408
## 1231        2         2              410
## 1232        2         2              412
## 1233        2         2              415
## 1234        2         2              417
## 1235        2         2              419
## 1236        2         2              421
## 1237        2         2              425
## 1238        2         2              428
## 1239        2         2              431
## 1240        1         1                2
## 1241        1         1                4
## 1242        1         1                6
## 1243        1         1                7
## 1244        1         1                9
## 1245        1         1               11
## 1246        1         1               12
## 1247        1         1               13
## 1248        1         1               15
## 1249        1         1               16
## 1250        1         1               18
## 1251        1         1               19
## 1252        1         1               22
## 1253        1         1               24
## 1254        1         1               27
## 1255        1         1               28
## 1256        1         1               30
## 1257        1         1               32
## 1258        1         1               34
## 1259        1         1               36
## 1260        1         1               37
## 1261        1         1               39
## 1262        1         1               40
## 1263        1         1               46
## 1264        1         1               48
## 1265        1         1               49
## 1266        1         1               50
## 1267        1         1               51
## 1268        1         1               53
## 1269        1         1               55
## 1270        1         1               61
## 1271        1         1               63
## 1272        1         1               65
## 1273        1         1               68
## 1274        1         1               75
## 1275        1         1               77
## 1276        1         1               83
## 1277        1         1               85
## 1278        1         1               87
## 1279        1         1               89
## 1280        1         1               93
## 1281        1         1               96
## 1282        1         1               97
## 1283        1         1               99
## 1284        1         1              106
## 1285        1         1              108
## 1286        1         1              109
## 1287        1         1              111
## 1288        1         1              114
## 1289        1         1              116
## 1290        1         1              118
## 1291        1         1              121
## 1292        1         1              122
## 1293        1         1              123
## 1294        1         1              130
## 1295        1         1              131
## 1296        1         1              133
## 1297        1         1              138
## 1298        1         1              139
## 1299        1         1              143
## 1300        1         1              144
## 1301        1         1              147
## 1302        1         1              152
## 1303        1         1              153
## 1304        1         1              155
## 1305        1         1              157
## 1306        1         1              158
## 1307        1         1              159
## 1308        1         1              165
## 1309        1         1              166
## 1310        1         1              167
## 1311        1         1              169
## 1312        1         1              171
## 1313        1         1              172
## 1314        1         1              173
## 1315        2         2              177
## 1316        2         2              180
## 1317        2         2              182
## 1318        2         2              183
## 1319        2         2              184
## 1320        2         2              186
## 1321        2         2              187
## 1322        2         2              189
## 1323        2         2              191
## 1324        2         2              192
## 1325        2         2              193
## 1326        2         2              196
## 1327        2         2              198
## 1328        2         2              200
## 1329        2         2              201
## 1330        2         2              204
## 1331        2         2              207
## 1332        2         2              209
## 1333        2         2              212
## 1334        2         2              215
## 1335        2         2              219
## 1336        2         2              220
## 1337        2         2              223
## 1338        2         2              225
## 1339        2         2              228
## 1340        2         2              230
## 1341        2         2              232
## 1342        2         2              235
## 1343        2         2              237
## 1344        2         2              238
## 1345        2         2              241
## 1346        2         2              244
## 1347        2         2              245
## 1348        2         2              247
## 1349        2         2              249
## 1350        2         2              250
## 1351        2         2              251
## 1352        2         2              252
## 1353        2         2              253
## 1354        2         2              255
## 1355        2         2              258
## 1356        2         2              260
## 1357        2         2              262
## 1358        2         2              264
## 1359        2         2              266
## 1360        2         2              268
## 1361        2         2              269
## 1362        2         2              273
## 1363        2         2              274
## 1364        2         2              276
## 1365        2         2              277
## 1366        2         2              279
## 1367        2         2              281
## 1368        2         2              283
## 1369        2         2              288
## 1370        2         2              289
## 1371        2         2              291
## 1372        2         2              294
## 1373        2         2              296
## 1374        2         2              298
## 1375        2         2              299
## 1376        2         2              300
## 1377        2         2              306
## 1378        2         2              312
## 1379        2         2              314
## 1380        2         2              316
## 1381        2         2              317
## 1382        2         2              318
## 1383        2         2              321
## 1384        2         2              322
## 1385        2         2              324
## 1386        2         2              326
## 1387        2         2              327
## 1388        2         2              329
## 1389        2         2              332
## 1390        2         2              333
## 1391        2         2              335
## 1392        2         2              337
## 1393        2         2              338
## 1394        2         2              341
## 1395        2         2              342
## 1396        2         2              348
## 1397        2         2              350
## 1398        2         2              351
## 1399        2         2              352
## 1400        2         2              353
## 1401        2         2              356
## 1402        2         2              357
## 1403        2         2              359
## 1404        2         2              360
## 1405        2         2              362
## 1406        2         2              364
## 1407        2         2              366
## 1408        2         2              370
## 1409        2         2              372
## 1410        2         2              373
## 1411        2         2              378
## 1412        2         2              379
## 1413        2         2              380
## 1414        1         1                2
## 1415        1         1                3
## 1416        1         1                5
## 1417        1         1                7
## 1418        1         1               10
## 1419        1         1               12
## 1420        1         1               13
## 1421        1         1               16
## 1422        1         1               18
## 1423        1         1               20
## 1424        1         1               22
## 1425        1         1               24
## 1426        1         1               26
## 1427        1         1               28
## 1428        1         1               32
## 1429        1         1               33
## 1430        1         1               35
## 1431        1         1               37
## 1432        1         1               41
## 1433        1         1               42
## 1434        1         1               46
## 1435        1         1               49
## 1436        1         1               53
## 1437        1         1               54
## 1438        1         1               56
## 1439        1         1               62
## 1440        1         1               64
## 1441        1         1               65
## 1442        1         1               67
## 1443        1         1               69
## 1444        1         1               72
## 1445        1         1               73
## 1446        1         1               75
## 1447        1         1               76
## 1448        1         1               77
## 1449        1         1               78
## 1450        1         1               82
## 1451        1         1               83
## 1452        1         1               86
## 1453        1         1               88
## 1454        1         1               90
## 1455        1         1               92
## 1456        1         1               93
## 1457        1         1              100
## 1458        1         1              103
## 1459        1         1              106
## 1460        1         1              108
## 1461        1         1              109
## 1462        1         1              114
## 1463        1         1              117
## 1464        1         1              119
## 1465        1         1              121
## 1466        1         1              127
## 1467        1         1              129
## 1468        1         1              130
## 1469        1         1              131
## 1470        1         1              133
## 1471        1         1              136
## 1472        1         1              138
## 1473        1         1              140
## 1474        1         1              144
## 1475        1         1              145
## 1476        1         1              146
## 1477        1         1              147
## 1478        1         1              148
## 1479        1         1              150
## 1480        1         1              155
## 1481        1         1              157
## 1482        1         1              159
## 1483        1         1              160
## 1484        1         1              162
## 1485        1         1              164
## 1486        1         1              168
## 1487        1         1              171
## 1488        1         1              172
## 1489        1         1              175
## 1490        1         1              176
## 1491        1         1              177
## 1492        1         1              178
## 1493        1         1              184
## 1494        1         1              186
## 1495        1         1              187
## 1496        1         1              188
## 1497        1         1              189
## 1498        1         1              192
## 1499        1         1              193
## 1500        1         1              195
## 1501        1         1              198
## 1502        1         1              200
## 1503        1         1              203
## 1504        1         1              204
## 1505        1         1              205
## 1506        1         1              207
## 1507        1         1              209
## 1508        1         1              212
## 1509        2         2              217
## 1510        2         2              219
## 1511        2         2              221
## 1512        2         2              222
## 1513        2         2              224
## 1514        2         2              225
## 1515        2         2              227
## 1516        2         2              229
## 1517        2         2              231
## 1518        2         2              234
## 1519        2         2              237
## 1520        2         2              238
## 1521        2         2              240
## 1522        2         2              244
## 1523        2         2              247
## 1524        2         2              249
## 1525        2         2              250
## 1526        2         2              256
## 1527        2         2              257
## 1528        2         2              258
## 1529        2         2              261
## 1530        2         2              262
## 1531        2         2              263
## 1532        2         2              265
## 1533        2         2              267
## 1534        2         2              268
## 1535        2         2              269
## 1536        2         2              270
## 1537        2         2              272
## 1538        2         2              274
## 1539        2         2              276
## 1540        2         2              278
## 1541        2         2              279
## 1542        2         2              284
## 1543        2         2              286
## 1544        2         2              288
## 1545        2         2              290
## 1546        2         2              292
## 1547        2         2              294
## 1548        2         2              296
## 1549        2         2              302
## 1550        2         2              305
## 1551        2         2              308
## 1552        2         2              311
## 1553        2         2              312
## 1554        2         2              315
## 1555        2         2              316
## 1556        2         2              317
## 1557        2         2              318
## 1558        2         2              319
## 1559        2         2              321
## 1560        2         2              323
## 1561        2         2              326
## 1562        2         2              332
## 1563        2         2              333
## 1564        2         2              334
## 1565        2         2              338
## 1566        2         2              340
## 1567        2         2              341
## 1568        2         2              345
## 1569        2         2              347
## 1570        2         2              348
## 1571        2         2              350
## 1572        2         2              353
## 1573        2         2              355
## 1574        2         2              357
## 1575        2         2              361
## 1576        2         2              362
## 1577        2         2              365
## 1578        2         2              366
## 1579        2         2              368
## 1580        2         2              373
## 1581        2         2              376
## 1582        2         2              378
## 1583        2         2              379
## 1584        2         2              380
## 1585        2         2              383
## 1586        2         2              384
## 1587        2         2              386
## 1588        2         2              389
## 1589        2         2              390
## 1590        2         2              391
## 1591        1         1                2
## 1592        1         1                3
## 1593        1         1                5
## 1594        1         1                7
## 1595        1         1               10
## 1596        1         1               12
## 1597        1         1               14
## 1598        1         1               15
## 1599        1         1               17
## 1600        1         1               19
## 1601        1         1               22
## 1602        1         1               23
## 1603        1         1               25
## 1604        1         1               27
## 1605        1         1               29
## 1606        1         1               30
## 1607        1         1               32
## 1608        1         1               33
## 1609        1         1               35
## 1610        1         1               37
## 1611        1         1               38
## 1612        1         1               40
## 1613        1         1               42
## 1614        1         1               47
## 1615        1         1               49
## 1616        1         1               50
## 1617        1         1               52
## 1618        1         1               58
## 1619        1         1               62
## 1620        1         1               64
## 1621        1         1               65
## 1622        1         1               71
## 1623        1         1               72
## 1624        1         1               76
## 1625        1         1               79
## 1626        1         1               80
## 1627        1         1               81
## 1628        1         1               83
## 1629        1         1               85
## 1630        1         1               87
## 1631        1         1               89
## 1632        1         1               90
## 1633        1         1               92
## 1634        1         1               97
## 1635        1         1               99
## 1636        1         1              101
## 1637        1         1              102
## 1638        1         1              105
## 1639        1         1              112
## 1640        1         1              114
## 1641        1         1              117
## 1642        1         1              121
## 1643        1         1              122
## 1644        1         1              128
## 1645        1         1              130
## 1646        1         1              132
## 1647        1         1              134
## 1648        1         1              137
## 1649        1         1              140
## 1650        1         1              142
## 1651        1         1              144
## 1652        1         1              146
## 1653        1         1              148
## 1654        1         1              150
## 1655        1         1              151
## 1656        1         1              154
## 1657        1         1              159
## 1658        1         1              161
## 1659        1         1              163
## 1660        1         1              164
## 1661        1         1              166
## 1662        1         1              167
## 1663        1         1              171
## 1664        1         1              174
## 1665        1         1              176
## 1666        1         1              178
## 1667        1         1              179
## 1668        1         1              181
## 1669        1         1              183
## 1670        1         1              185
## 1671        1         1              187
## 1672        1         1              190
## 1673        1         1              191
## 1674        1         1              193
## 1675        1         1              194
## 1676        1         1              198
## 1677        1         1              200
## 1678        1         1              202
## 1679        1         1              205
## 1680        1         1              207
## 1681        1         1              208
## 1682        1         1              210
## 1683        1         1              211
## 1684        1         1              212
## 1685        1         1              214
## 1686        1         1              216
## 1687        1         1              221
## 1688        1         1              222
## 1689        2         2              227
## 1690        2         2              229
## 1691        2         2              232
## 1692        2         2              233
## 1693        2         2              235
## 1694        2         2              237
## 1695        2         2              238
## 1696        2         2              239
## 1697        2         2              241
## 1698        2         2              244
## 1699        2         2              245
## 1700        2         2              246
## 1701        2         2              248
## 1702        2         2              250
## 1703        2         2              253
## 1704        2         2              254
## 1705        2         2              256
## 1706        2         2              259
## 1707        2         2              263
## 1708        2         2              264
## 1709        2         2              266
## 1710        2         2              268
## 1711        2         2              269
## 1712        2         2              271
## 1713        2         2              273
## 1714        2         2              274
## 1715        2         2              276
## 1716        2         2              277
## 1717        2         2              279
## 1718        2         2              282
## 1719        2         2              283
## 1720        2         2              291
## 1721        2         2              298
## 1722        2         2              299
## 1723        2         2              300
## 1724        2         2              302
## 1725        2         2              304
## 1726        2         2              306
## 1727        2         2              307
## 1728        2         2              309
## 1729        2         2              310
## 1730        2         2              317
## 1731        2         2              318
## 1732        2         2              319
## 1733        2         2              321
## 1734        2         2              328
## 1735        2         2              329
## 1736        2         2              331
## 1737        2         2              333
## 1738        2         2              336
## 1739        2         2              342
## 1740        2         2              343
## 1741        2         2              345
## 1742        2         2              347
## 1743        2         2              348
## 1744        2         2              350
## 1745        2         2              353
## 1746        2         2              356
## 1747        2         2              357
## 1748        2         2              359
## 1749        2         2              361
## 1750        2         2              363
## 1751        2         2              365
## 1752        2         2              367
## 1753        2         2              369
## 1754        2         2              372
## 1755        2         2              374
## 1756        2         2              375
## 1757        2         2              376
## 1758        2         2              379
## 1759        2         2              381
## 1760        2         2              383
## 1761        2         2              385
## 1762        2         2              386
## 1763        2         2              388
## 1764        2         2              394
## 1765        2         2              396
## 1766        2         2              397
## 1767        2         2              399
## 1768        2         2              405
## 1769        2         2              406
## 1770        2         2              408
## 1771        2         2              412
## 1772        2         2              413
## 1773        2         2              415
## 1774        2         2              417
## 1775        2         2              420
## 1776        2         2              422
## 1777        2         2              424
## 1778        1         1                2
## 1779        1         1                3
## 1780        1         1                5
## 1781        1         1                6
## 1782        1         1                7
## 1783        1         1                8
## 1784        1         1               10
## 1785        1         1               12
## 1786        1         1               15
## 1787        1         1               16
## 1788        1         1               18
## 1789        1         1               20
## 1790        1         1               22
## 1791        1         1               23
## 1792        1         1               26
## 1793        1         1               29
## 1794        1         1               31
## 1795        1         1               32
## 1796        1         1               34
## 1797        1         1               35
## 1798        1         1               36
## 1799        1         1               38
## 1800        1         1               44
## 1801        1         1               45
## 1802        1         1               46
## 1803        1         1               48
## 1804        1         1               50
## 1805        1         1               52
## 1806        1         1               53
## 1807        1         1               55
## 1808        1         1               59
## 1809        1         1               61
## 1810        1         1               64
## 1811        1         1               66
## 1812        1         1               68
## 1813        1         1               70
## 1814        1         1               74
## 1815        1         1               76
## 1816        1         1               78
## 1817        1         1               80
## 1818        1         1               82
## 1819        1         1               84
## 1820        1         1               86
## 1821        1         1               87
## 1822        1         1               89
## 1823        1         1               95
## 1824        1         1               97
## 1825        1         1              100
## 1826        1         1              101
## 1827        1         1              103
## 1828        1         1              105
## 1829        1         1              106
## 1830        1         1              107
## 1831        1         1              108
## 1832        1         1              111
## 1833        1         1              112
## 1834        1         1              114
## 1835        1         1              116
## 1836        1         1              120
## 1837        1         1              122
## 1838        1         1              124
## 1839        1         1              133
## 1840        1         1              135
## 1841        1         1              136
## 1842        1         1              138
## 1843        1         1              141
## 1844        1         1              147
## 1845        1         1              149
## 1846        1         1              151
## 1847        1         1              154
## 1848        1         1              156
## 1849        1         1              157
## 1850        1         1              159
## 1851        1         1              161
## 1852        1         1              163
## 1853        1         1              166
## 1854        1         1              168
## 1855        1         1              171
## 1856        1         1              172
## 1857        1         1              175
## 1858        1         1              177
## 1859        1         1              179
## 1860        1         1              180
## 1861        1         1              182
## 1862        1         1              183
## 1863        1         1              184
## 1864        1         1              185
## 1865        1         1              188
## 1866        2         2              192
## 1867        2         2              194
## 1868        2         2              198
## 1869        2         2              199
## 1870        2         2              200
## 1871        2         2              201
## 1872        2         2              202
## 1873        2         2              204
## 1874        2         2              205
## 1875        2         2              207
## 1876        2         2              208
## 1877        2         2              210
## 1878        2         2              212
## 1879        2         2              213
## 1880        2         2              215
## 1881        2         2              217
## 1882        2         2              218
## 1883        2         2              220
## 1884        2         2              222
## 1885        2         2              223
## 1886        2         2              225
## 1887        2         2              226
## 1888        2         2              228
## 1889        2         2              235
## 1890        2         2              238
## 1891        2         2              241
## 1892        2         2              242
## 1893        2         2              243
## 1894        2         2              244
## 1895        2         2              245
## 1896        2         2              247
## 1897        2         2              249
## 1898        2         2              250
## 1899        2         2              252
## 1900        2         2              254
## 1901        2         2              256
## 1902        2         2              257
## 1903        2         2              259
## 1904        2         2              260
## 1905        2         2              266
## 1906        2         2              267
## 1907        2         2              268
## 1908        2         2              270
## 1909        2         2              271
## 1910        2         2              275
## 1911        2         2              277
## 1912        2         2              282
## 1913        2         2              283
## 1914        2         2              285
## 1915        2         2              287
## 1916        2         2              292
## 1917        2         2              293
## 1918        2         2              295
## 1919        2         2              296
## 1920        2         2              298
## 1921        2         2              300
## 1922        2         2              301
## 1923        2         2              304
## 1924        2         2              305
## 1925        2         2              307
## 1926        2         2              309
## 1927        2         2              310
## 1928        2         2              311
## 1929        2         2              313
## 1930        2         2              317
## 1931        2         2              318
## 1932        2         2              319
## 1933        2         2              320
## 1934        2         2              321
## 1935        2         2              324
## 1936        2         2              326
## 1937        2         2              329
## 1938        2         2              330
## 1939        2         2              332
## 1940        2         2              333
## 1941        2         2              336
## 1942        2         2              340
## 1943        2         2              342
## 1944        2         2              343
## 1945        2         2              345
## 1946        2         2              348
## 1947        2         2              350
## 1948        2         2              351
## 1949        2         2              352
## 1950        2         2              364
## 1951        2         2              365
## 1952        2         2              368
## 1953        1         1                2
## 1954        1         1                4
## 1955        1         1                7
## 1956        1         1                9
## 1957        1         1               11
## 1958        1         1               14
## 1959        1         1               16
## 1960        1         1               18
## 1961        1         1               21
## 1962        1         1               24
## 1963        1         1               25
## 1964        1         1               27
## 1965        1         1               29
## 1966        1         1               30
## 1967        1         1               34
## 1968        1         1               35
## 1969        1         1               38
## 1970        1         1               40
## 1971        1         1               42
## 1972        1         1               44
## 1973        1         1               46
## 1974        1         1               48
## 1975        1         1               49
## 1976        1         1               55
## 1977        1         1               56
## 1978        1         1               61
## 1979        1         1               62
## 1980        1         1               64
## 1981        1         1               66
## 1982        1         1               68
## 1983        1         1               70
## 1984        1         1               73
## 1985        1         1               78
## 1986        1         1               79
## 1987        1         1               81
## 1988        1         1               83
## 1989        1         1               86
## 1990        1         1               88
## 1991        1         1               90
## 1992        1         1               92
## 1993        1         1               94
## 1994        1         1               95
## 1995        1         1              100
## 1996        1         1              102
## 1997        1         1              103
## 1998        1         1              105
## 1999        1         1              109
## 2000        1         1              110
## 2001        1         1              112
## 2002        1         1              116
## 2003        1         1              120
## 2004        1         1              122
## 2005        1         1              125
## 2006        1         1              129
## 2007        1         1              131
## 2008        1         1              132
## 2009        1         1              136
## 2010        1         1              138
## 2011        1         1              140
## 2012        1         1              142
## 2013        1         1              144
## 2014        1         1              147
## 2015        1         1              148
## 2016        1         1              151
## 2017        1         1              153
## 2018        1         1              154
## 2019        1         1              156
## 2020        1         1              160
## 2021        1         1              161
## 2022        1         1              165
## 2023        1         1              167
## 2024        1         1              170
## 2025        1         1              172
## 2026        1         1              174
## 2027        1         1              176
## 2028        1         1              177
## 2029        1         1              180
## 2030        1         1              182
## 2031        1         1              184
## 2032        1         1              185
## 2033        1         1              187
## 2034        1         1              189
## 2035        1         1              191
## 2036        1         1              194
## 2037        1         1              199
## 2038        1         1              200
## 2039        1         1              204
## 2040        1         1              206
## 2041        1         1              208
## 2042        1         1              210
## 2043        1         1              212
## 2044        1         1              217
## 2045        1         1              218
## 2046        1         1              219
## 2047        1         1              221
## 2048        1         1              223
## 2049        1         1              227
## 2050        1         1              229
## 2051        1         1              232
## 2052        1         1              235
## 2053        1         1              238
## 2054        1         1              239
## 2055        2         2              247
## 2056        2         2              249
## 2057        2         2              252
## 2058        2         2              253
## 2059        2         2              254
## 2060        2         2              257
## 2061        2         2              259
## 2062        2         2              260
## 2063        2         2              262
## 2064        2         2              264
## 2065        2         2              268
## 2066        2         2              271
## 2067        2         2              276
## 2068        2         2              277
## 2069        2         2              280
## 2070        2         2              283
## 2071        2         2              285
## 2072        2         2              287
## 2073        2         2              290
## 2074        2         2              293
## 2075        2         2              296
## 2076        2         2              297
## 2077        2         2              299
## 2078        2         2              301
## 2079        2         2              302
## 2080        2         2              304
## 2081        2         2              305
## 2082        2         2              306
## 2083        2         2              309
## 2084        2         2              312
## 2085        2         2              313
## 2086        2         2              314
## 2087        2         2              317
## 2088        2         2              318
## 2089        2         2              321
## 2090        2         2              324
## 2091        2         2              325
## 2092        2         2              327
## 2093        2         2              330
## 2094        2         2              332
## 2095        2         2              334
## 2096        2         2              335
## 2097        2         2              336
## 2098        2         2              342
## 2099        2         2              343
## 2100        2         2              344
## 2101        2         2              346
## 2102        2         2              348
## 2103        2         2              349
## 2104        2         2              354
## 2105        2         2              357
## 2106        2         2              360
## 2107        2         2              362
## 2108        2         2              364
## 2109        2         2              366
## 2110        2         2              368
## 2111        2         2              371
## 2112        2         2              374
## 2113        2         2              375
## 2114        2         2              376
## 2115        2         2              378
## 2116        2         2              380
## 2117        2         2              381
## 2118        2         2              386
## 2119        2         2              388
## 2120        2         2              390
## 2121        2         2              394
## 2122        2         2              396
## 2123        2         2              399
## 2124        2         2              400
## 2125        2         2              403
## 2126        2         2              405
## 2127        2         2              407
## 2128        2         2              410
## 2129        2         2              413
## 2130        2         2              414
## 2131        2         2              416
## 2132        2         2              418
## 2133        2         2              419
## 2134        2         2              423
## 2135        2         2              425
## 2136        2         2              427
## 2137        2         2              429
## 2138        2         2              431
## 2139        2         2              435
## 2140        2         2              436
## 2141        2         2              437
## 2142        2         2              439
## 2143        2         2              443
## 2144        2         2              444
## 2145        2         2              445
## 2146        2         2              448
## 2147        2         2              450
## 2148        2         2              452
## 2149        2         2              454
## 2150        2         2              456
## 2151        2         2              459
## 2152        2         2              460
## 2153        2         2              463
## 2154        2         2              465
## 2155        2         2              469
## 2156        2         2              471
## 2157        2         2              472
## 2158        2         2              474
## 2159        2         2              475
## 2160        1         1                2
## 2161        1         1                4
## 2162        1         1                5
## 2163        1         1                9
## 2164        1         1               10
## 2165        1         1               11
## 2166        1         1               13
## 2167        1         1               14
## 2168        1         1               16
## 2169        1         1               18
## 2170        1         1               20
## 2171        1         1               21
## 2172        1         1               23
## 2173        1         1               24
## 2174        1         1               26
## 2175        1         1               28
## 2176        1         1               31
## 2177        1         1               33
## 2178        1         1               34
## 2179        1         1               36
## 2180        1         1               38
## 2181        1         1               40
## 2182        1         1               42
## 2183        1         1               43
## 2184        1         1               45
## 2185        1         1               47
## 2186        1         1               48
## 2187        1         1               49
## 2188        1         1               50
## 2189        1         1               52
## 2190        1         1               59
## 2191        1         1               62
## 2192        1         1               63
## 2193        1         1               66
## 2194        1         1               67
## 2195        1         1               68
## 2196        1         1               73
## 2197        1         1               74
## 2198        1         1               79
## 2199        1         1               80
## 2200        1         1               82
## 2201        1         1               85
## 2202        1         1               87
## 2203        1         1               92
## 2204        1         1               94
## 2205        1         1               96
## 2206        1         1               99
## 2207        1         1              101
## 2208        1         1              102
## 2209        1         1              105
## 2210        1         1              106
## 2211        1         1              108
## 2212        1         1              111
## 2213        1         1              112
## 2214        1         1              118
## 2215        1         1              121
## 2216        1         1              123
## 2217        1         1              125
## 2218        1         1              129
## 2219        1         1              131
## 2220        1         1              133
## 2221        1         1              137
## 2222        1         1              139
## 2223        1         1              140
## 2224        1         1              143
## 2225        1         1              144
## 2226        1         1              146
## 2227        1         1              148
## 2228        1         1              150
## 2229        1         1              152
## 2230        1         1              155
## 2231        1         1              157
## 2232        1         1              158
## 2233        1         1              160
## 2234        1         1              162
## 2235        1         1              164
## 2236        1         1              167
## 2237        1         1              169
## 2238        2         2              173
## 2239        2         2              175
## 2240        2         2              178
## 2241        2         2              179
## 2242        2         2              182
## 2243        2         2              184
## 2244        2         2              188
## 2245        2         2              189
## 2246        2         2              192
## 2247        2         2              196
## 2248        2         2              197
## 2249        2         2              199
## 2250        2         2              200
## 2251        2         2              205
## 2252        2         2              207
## 2253        2         2              208
## 2254        2         2              210
## 2255        2         2              212
## 2256        2         2              214
## 2257        2         2              216
## 2258        2         2              220
## 2259        2         2              222
## 2260        2         2              224
## 2261        2         2              226
## 2262        2         2              227
## 2263        2         2              229
## 2264        2         2              231
## 2265        2         2              232
## 2266        2         2              234
## 2267        2         2              239
## 2268        2         2              244
## 2269        2         2              246
## 2270        2         2              250
## 2271        2         2              252
## 2272        2         2              254
## 2273        2         2              256
## 2274        2         2              258
## 2275        2         2              261
## 2276        2         2              262
## 2277        2         2              266
## 2278        2         2              267
## 2279        2         2              268
## 2280        2         2              270
## 2281        2         2              273
## 2282        2         2              274
## 2283        2         2              276
## 2284        2         2              279
## 2285        2         2              281
## 2286        2         2              284
## 2287        2         2              286
## 2288        2         2              288
## 2289        2         2              293
## 2290        2         2              296
## 2291        2         2              298
## 2292        2         2              300
## 2293        2         2              304
## 2294        2         2              305
## 2295        2         2              306
## 2296        2         2              308
## 2297        2         2              309
## 2298        2         2              310
## 2299        2         2              312
## 2300        2         2              313
## 2301        2         2              315
## 2302        2         2              316
## 2303        2         2              320
## 2304        2         2              322
## 2305        2         2              324
## 2306        2         2              327
## 2307        2         2              328
## 2308        2         2              329
## 2309        2         2              330
## 2310        2         2              335
## 2311        2         2              336
## 2312        2         2              338
## 2313        2         2              339
## 2314        2         2              342
## 2315        2         2              343
## 2316        1         1                2
## 2317        1         1                4
## 2318        1         1                6
## 2319        1         1                8
## 2320        1         1               13
## 2321        1         1               14
## 2322        1         1               16
## 2323        1         1               18
## 2324        1         1               21
## 2325        1         1               26
## 2326        1         1               28
## 2327        1         1               30
## 2328        1         1               32
## 2329        1         1               34
## 2330        1         1               36
## 2331        1         1               37
## 2332        1         1               38
## 2333        1         1               41
## 2334        1         1               42
## 2335        1         1               43
## 2336        1         1               50
## 2337        1         1               51
## 2338        1         1               53
## 2339        1         1               55
## 2340        1         1               57
## 2341        1         1               60
## 2342        1         1               62
## 2343        1         1               63
## 2344        1         1               65
## 2345        1         1               66
## 2346        1         1               67
## 2347        1         1               69
## 2348        1         1               72
## 2349        1         1               74
## 2350        1         1               78
## 2351        1         1               83
## 2352        1         1               84
## 2353        1         1               87
## 2354        1         1               89
## 2355        1         1               91
## 2356        1         1               93
## 2357        1         1               95
## 2358        1         1              100
## 2359        1         1              101
## 2360        1         1              105
## 2361        1         1              106
## 2362        1         1              110
## 2363        1         1              112
## 2364        1         1              113
## 2365        1         1              114
## 2366        1         1              116
## 2367        1         1              122
## 2368        1         1              123
## 2369        1         1              124
## 2370        1         1              125
## 2371        1         1              130
## 2372        1         1              132
## 2373        1         1              135
## 2374        1         1              136
## 2375        1         1              138
## 2376        1         1              140
## 2377        1         1              142
## 2378        1         1              149
## 2379        1         1              150
## 2380        1         1              151
## 2381        1         1              154
## 2382        1         1              157
## 2383        1         1              158
## 2384        1         1              159
## 2385        1         1              161
## 2386        1         1              164
## 2387        1         1              166
## 2388        1         1              168
## 2389        1         1              171
## 2390        1         1              173
## 2391        1         1              175
## 2392        1         1              176
## 2393        1         1              177
## 2394        1         1              178
## 2395        1         1              179
## 2396        1         1              180
## 2397        2         2              187
## 2398        2         2              189
## 2399        2         2              191
## 2400        2         2              193
## 2401        2         2              194
## 2402        2         2              197
## 2403        2         2              198
## 2404        2         2              200
## 2405        2         2              202
## 2406        2         2              204
## 2407        2         2              208
## 2408        2         2              212
## 2409        2         2              215
## 2410        2         2              217
## 2411        2         2              220
## 2412        2         2              222
## 2413        2         2              224
## 2414        2         2              226
## 2415        2         2              228
## 2416        2         2              229
## 2417        2         2              234
## 2418        2         2              236
## 2419        2         2              238
## 2420        2         2              239
## 2421        2         2              241
## 2422        2         2              242
## 2423        2         2              244
## 2424        2         2              251
## 2425        2         2              253
## 2426        2         2              254
## 2427        2         2              257
## 2428        2         2              258
## 2429        2         2              261
## 2430        2         2              262
## 2431        2         2              264
## 2432        2         2              265
## 2433        2         2              269
## 2434        2         2              273
## 2435        2         2              275
## 2436        2         2              278
## 2437        2         2              282
## 2438        2         2              284
## 2439        2         2              285
## 2440        2         2              287
## 2441        2         2              292
## 2442        2         2              293
## 2443        2         2              295
## 2444        2         2              296
## 2445        2         2              297
## 2446        2         2              299
## 2447        2         2              301
## 2448        2         2              305
## 2449        2         2              306
## 2450        2         2              308
## 2451        2         2              309
## 2452        2         2              312
## 2453        2         2              313
## 2454        2         2              320
## 2455        2         2              321
## 2456        2         2              322
## 2457        2         2              323
## 2458        2         2              325
## 2459        2         2              328
## 2460        2         2              330
## 2461        2         2              331
## 2462        2         2              335
## 2463        2         2              337
## 2464        2         2              341
## 2465        2         2              344
## 2466        2         2              345
## 2467        2         2              346
## 2468        2         2              348
## 2469        2         2              349
## 2470        2         2              351
## 2471        2         2              353
## 2472        2         2              355
## 2473        2         2              356
## 2474        2         2              359
## 2475        2         2              361
## 2476        2         2              363
## 2477        2         2              364
## 2478        2         2              366
## 2479        2         2              367
## 2480        2         2              370
## 2481        2         2              372
## 2482        2         2              374
## 2483        2         2              375
## 2484        2         2              377
## 2485        2         2              379
## 2486        2         2              381
## 2487        2         2              382
## 2488        1         1                2
## 2489        1         1                4
## 2490        1         1                6
## 2491        1         1                8
## 2492        1         1               10
## 2493        1         1               13
## 2494        1         1               15
## 2495        1         1               17
## 2496        1         1               19
## 2497        1         1               21
## 2498        1         1               23
## 2499        1         1               25
## 2500        1         1               26
## 2501        1         1               28
## 2502        1         1               30
## 2503        1         1               31
## 2504        1         1               32
## 2505        1         1               33
## 2506        1         1               36
## 2507        1         1               37
## 2508        1         1               39
## 2509        1         1               40
## 2510        1         1               41
## 2511        1         1               42
## 2512        1         1               46
## 2513        1         1               48
## 2514        1         1               50
## 2515        1         1               56
## 2516        1         1               60
## 2517        1         1               62
## 2518        1         1               63
## 2519        1         1               64
## 2520        1         1               66
## 2521        1         1               68
## 2522        1         1               69
## 2523        1         1               75
## 2524        1         1               76
## 2525        1         1               79
## 2526        1         1               83
## 2527        1         1               84
## 2528        1         1               85
## 2529        1         1               87
## 2530        1         1               91
## 2531        1         1               92
## 2532        1         1               95
## 2533        1         1               96
## 2534        1         1               98
## 2535        1         1              102
## 2536        1         1              103
## 2537        1         1              105
## 2538        1         1              111
## 2539        1         1              112
## 2540        1         1              113
## 2541        1         1              114
## 2542        1         1              116
## 2543        1         1              123
## 2544        1         1              124
## 2545        1         1              126
## 2546        1         1              130
## 2547        1         1              132
## 2548        1         1              134
## 2549        1         1              136
## 2550        1         1              137
## 2551        1         1              140
## 2552        1         1              144
## 2553        1         1              145
## 2554        1         1              146
## 2555        1         1              149
## 2556        1         1              150
## 2557        1         1              151
## 2558        1         1              159
## 2559        1         1              161
## 2560        1         1              163
## 2561        1         1              164
## 2562        1         1              167
## 2563        1         1              169
## 2564        1         1              173
## 2565        1         1              175
## 2566        1         1              179
## 2567        1         1              181
## 2568        1         1              184
## 2569        1         1              188
## 2570        2         2              193
## 2571        2         2              195
## 2572        2         2              198
## 2573        2         2              199
## 2574        2         2              201
## 2575        2         2              203
## 2576        2         2              204
## 2577        2         2              206
## 2578        2         2              209
## 2579        2         2              210
## 2580        2         2              212
## 2581        2         2              216
## 2582        2         2              220
## 2583        2         2              221
## 2584        2         2              223
## 2585        2         2              224
## 2586        2         2              226
## 2587        2         2              228
## 2588        2         2              229
## 2589        2         2              231
## 2590        2         2              233
## 2591        2         2              235
## 2592        2         2              239
## 2593        2         2              240
## 2594        2         2              244
## 2595        2         2              246
## 2596        2         2              248
## 2597        2         2              250
## 2598        2         2              252
## 2599        2         2              254
## 2600        2         2              256
## 2601        2         2              258
## 2602        2         2              265
## 2603        2         2              266
## 2604        2         2              267
## 2605        2         2              268
## 2606        2         2              270
## 2607        2         2              271
## 2608        2         2              273
## 2609        2         2              275
## 2610        2         2              278
## 2611        2         2              279
## 2612        2         2              281
## 2613        2         2              286
## 2614        2         2              287
## 2615        2         2              288
## 2616        2         2              293
## 2617        2         2              295
## 2618        2         2              296
## 2619        2         2              299
## 2620        2         2              301
## 2621        2         2              304
## 2622        2         2              306
## 2623        2         2              307
## 2624        2         2              309
## 2625        2         2              311
## 2626        2         2              313
## 2627        2         2              318
## 2628        2         2              319
## 2629        2         2              327
## 2630        2         2              329
## 2631        2         2              332
## 2632        2         2              334
## 2633        2         2              336
## 2634        2         2              338
## 2635        2         2              339
## 2636        2         2              341
## 2637        2         2              342
## 2638        2         2              344
## 2639        2         2              345
## 2640        2         2              347
## 2641        2         2              349
## 2642        2         2              351
## 2643        2         2              352
## 2644        2         2              354
## 2645        2         2              355
## 2646        2         2              356
## 2647        2         2              357
## 2648        2         2              358
## 2649        2         2              361
## 2650        2         2              362
## 2651        2         2              363
## 2652        2         2              366
## 2653        2         2              370
## 2654        2         2              372
## 2655        2         2              374
## 2656        2         2              377
## 2657        2         2              384
## 2658        2         2              387
## 2659        1         1                2
## 2660        1         1                4
## 2661        1         1                5
## 2662        1         1                7
## 2663        1         1                9
## 2664        1         1               11
## 2665        1         1               14
## 2666        1         1               15
## 2667        1         1               16
## 2668        1         1               18
## 2669        1         1               19
## 2670        1         1               21
## 2671        1         1               22
## 2672        1         1               23
## 2673        1         1               25
## 2674        1         1               26
## 2675        1         1               27
## 2676        1         1               29
## 2677        1         1               32
## 2678        1         1               33
## 2679        1         1               37
## 2680        1         1               39
## 2681        1         1               42
## 2682        1         1               50
## 2683        1         1               52
## 2684        1         1               54
## 2685        1         1               56
## 2686        1         1               62
## 2687        1         1               63
## 2688        1         1               65
## 2689        1         1               66
## 2690        1         1               69
## 2691        1         1               70
## 2692        1         1               72
## 2693        1         1               77
## 2694        1         1               84
## 2695        1         1               86
## 2696        1         1               87
## 2697        1         1               89
## 2698        1         1               91
## 2699        1         1               92
## 2700        1         1               98
## 2701        1         1               99
## 2702        1         1              101
## 2703        1         1              102
## 2704        1         1              104
## 2705        1         1              105
## 2706        1         1              107
## 2707        1         1              108
## 2708        1         1              109
## 2709        1         1              111
## 2710        1         1              112
## 2711        1         1              117
## 2712        1         1              118
## 2713        1         1              120
## 2714        1         1              124
## 2715        1         1              126
## 2716        1         1              128
## 2717        1         1              129
## 2718        1         1              130
## 2719        1         1              132
## 2720        1         1              137
## 2721        1         1              138
## 2722        1         1              139
## 2723        1         1              143
## 2724        1         1              145
## 2725        1         1              148
## 2726        1         1              151
## 2727        1         1              152
## 2728        1         1              154
## 2729        1         1              157
## 2730        1         1              158
## 2731        1         1              159
## 2732        1         1              161
## 2733        1         1              162
## 2734        1         1              164
## 2735        1         1              166
## 2736        1         1              168
## 2737        1         1              169
## 2738        1         1              170
## 2739        1         1              172
## 2740        1         1              174
## 2741        2         2              181
## 2742        2         2              183
## 2743        2         2              184
## 2744        2         2              186
## 2745        2         2              188
## 2746        2         2              192
## 2747        2         2              193
## 2748        2         2              195
## 2749        2         2              196
## 2750        2         2              199
## 2751        2         2              201
## 2752        2         2              202
## 2753        2         2              203
## 2754        2         2              206
## 2755        2         2              208
## 2756        2         2              210
## 2757        2         2              212
## 2758        2         2              219
## 2759        2         2              221
## 2760        2         2              222
## 2761        2         2              224
## 2762        2         2              227
## 2763        2         2              229
## 2764        2         2              231
## 2765        2         2              232
## 2766        2         2              233
## 2767        2         2              235
## 2768        2         2              237
## 2769        2         2              238
## 2770        2         2              244
## 2771        2         2              246
## 2772        2         2              248
## 2773        2         2              250
## 2774        2         2              253
## 2775        2         2              254
## 2776        2         2              257
## 2777        2         2              258
## 2778        2         2              261
## 2779        2         2              263
## 2780        2         2              265
## 2781        2         2              266
## 2782        2         2              268
## 2783        2         2              270
## 2784        2         2              271
## 2785        2         2              273
## 2786        2         2              279
## 2787        2         2              280
## 2788        2         2              282
## 2789        2         2              283
## 2790        2         2              289
## 2791        2         2              292
## 2792        2         2              293
## 2793        2         2              295
## 2794        2         2              298
## 2795        2         2              299
## 2796        2         2              301
## 2797        2         2              303
## 2798        2         2              306
## 2799        2         2              308
## 2800        2         2              310
## 2801        2         2              312
## 2802        2         2              317
## 2803        2         2              318
## 2804        2         2              320
## 2805        2         2              323
## 2806        2         2              325
## 2807        2         2              326
## 2808        2         2              332
## 2809        2         2              334
## 2810        2         2              339
## 2811        2         2              340
## 2812        2         2              341
## 2813        2         2              344
## 2814        2         2              346
## 2815        2         2              347
## 2816        2         2              349
## 2817        2         2              350
## 2818        2         2              351
## 2819        2         2              354
## 2820        2         2              356
## 2821        2         2              357
## 2822        1         1                2
## 2823        1         1                3
## 2824        1         1                5
## 2825        1         1                7
## 2826        1         1                8
## 2827        1         1               10
## 2828        1         1               13
## 2829        1         1               15
## 2830        1         1               17
## 2831        1         1               20
## 2832        1         1               21
## 2833        1         1               22
## 2834        1         1               23
## 2835        1         1               24
## 2836        1         1               25
## 2837        1         1               26
## 2838        1         1               28
## 2839        1         1               30
## 2840        1         1               32
## 2841        1         1               33
## 2842        1         1               39
## 2843        1         1               41
## 2844        1         1               43
## 2845        1         1               44
## 2846        1         1               47
## 2847        1         1               51
## 2848        1         1               52
## 2849        1         1               54
## 2850        1         1               56
## 2851        1         1               58
## 2852        1         1               60
## 2853        1         1               61
## 2854        1         1               65
## 2855        1         1               66
## 2856        1         1               68
## 2857        1         1               70
## 2858        1         1               71
## 2859        1         1               79
## 2860        1         1               81
## 2861        1         1               83
## 2862        1         1               85
## 2863        1         1               88
## 2864        1         1               89
## 2865        1         1               93
## 2866        1         1               94
## 2867        1         1               97
## 2868        1         1               99
## 2869        1         1              101
## 2870        1         1              102
## 2871        1         1              104
## 2872        1         1              105
## 2873        1         1              107
## 2874        1         1              108
## 2875        1         1              109
## 2876        1         1              110
## 2877        1         1              112
## 2878        1         1              114
## 2879        1         1              120
## 2880        1         1              122
## 2881        1         1              123
## 2882        1         1              125
## 2883        1         1              127
## 2884        1         1              128
## 2885        1         1              130
## 2886        1         1              135
## 2887        1         1              136
## 2888        1         1              138
## 2889        1         1              141
## 2890        1         1              146
## 2891        1         1              147
## 2892        1         1              151
## 2893        1         1              153
## 2894        1         1              156
## 2895        1         1              158
## 2896        1         1              159
## 2897        1         1              161
## 2898        1         1              163
## 2899        1         1              165
## 2900        1         1              167
## 2901        1         1              169
## 2902        2         2              173
## 2903        2         2              174
## 2904        2         2              178
## 2905        2         2              180
## 2906        2         2              181
## 2907        2         2              182
## 2908        2         2              183
## 2909        2         2              185
## 2910        2         2              187
## 2911        2         2              189
## 2912        2         2              190
## 2913        2         2              192
## 2914        2         2              194
## 2915        2         2              195
## 2916        2         2              197
## 2917        2         2              199
## 2918        2         2              202
## 2919        2         2              203
## 2920        2         2              204
## 2921        2         2              208
## 2922        2         2              209
## 2923        2         2              212
## 2924        2         2              213
## 2925        2         2              215
## 2926        2         2              219
## 2927        2         2              221
## 2928        2         2              224
## 2929        2         2              228
## 2930        2         2              230
## 2931        2         2              231
## 2932        2         2              235
## 2933        2         2              237
## 2934        2         2              239
## 2935        2         2              241
## 2936        2         2              242
## 2937        2         2              244
## 2938        2         2              246
## 2939        2         2              253
## 2940        2         2              256
## 2941        2         2              257
## 2942        2         2              259
## 2943        2         2              263
## 2944        2         2              264
## 2945        2         2              266
## 2946        2         2              268
## 2947        2         2              270
## 2948        2         2              274
## 2949        2         2              275
## 2950        2         2              276
## 2951        2         2              282
## 2952        2         2              284
## 2953        2         2              286
## 2954        2         2              288
## 2955        2         2              289
## 2956        2         2              293
## 2957        2         2              294
## 2958        2         2              296
## 2959        2         2              298
## 2960        2         2              303
## 2961        2         2              306
## 2962        2         2              307
## 2963        2         2              309
## 2964        2         2              310
## 2965        2         2              311
## 2966        2         2              315
## 2967        2         2              317
## 2968        2         2              322
## 2969        2         2              323
## 2970        2         2              324
## 2971        2         2              326
## 2972        2         2              328
## 2973        2         2              330
## 2974        2         2              331
## 2975        2         2              332
## 2976        2         2              341
## 2977        2         2              342
## 2978        2         2              344
## 2979        2         2              345
## 2980        2         2              348
## 2981        2         2              350
## 2982        2         2              352
## 2983        2         2              353
## 2984        2         2              355
## 2985        2         2              357
## 2986        2         2              359
## 2987        2         2              361
## 2988        1         1                2
## 2989        1         1                3
## 2990        1         1                5
## 2991        1         1                8
## 2992        1         1               10
## 2993        1         1               11
## 2994        1         1               12
## 2995        1         1               14
## 2996        1         1               16
## 2997        1         1               18
## 2998        1         1               20
## 2999        1         1               22
## 3000        1         1               23
## 3001        1         1               25
## 3002        1         1               27
## 3003        1         1               28
## 3004        1         1               31
## 3005        1         1               32
## 3006        1         1               33
## 3007        1         1               35
## 3008        1         1               36
## 3009        1         1               37
## 3010        1         1               39
## 3011        1         1               44
## 3012        1         1               46
## 3013        1         1               48
## 3014        1         1               50
## 3015        1         1               51
## 3016        1         1               53
## 3017        1         1               54
## 3018        1         1               56
## 3019        1         1               60
## 3020        1         1               61
## 3021        1         1               63
## 3022        1         1               64
## 3023        1         1               66
## 3024        1         1               67
## 3025        1         1               69
## 3026        1         1               70
## 3027        1         1               73
## 3028        1         1               75
## 3029        1         1               77
## 3030        1         1               81
##  [ reached 'max' / getOption("max.print") -- omitted 5978 rows ]

Filtering the data

wsd <-wnba_shots_data

list_of_games <- unique(wsd$game_id)

## grabbing data from a single game
single_game <- wsd %>% 
  filter(game_id == "401320565")

single_game
##     sequence_number period_display_value period_number home_score coordinate_x
## 1                 6          1st Quarter             1          0           27
## 2                 9          1st Quarter             1          0           37
## 3                13          1st Quarter             1          3           41
## 4                15          1st Quarter             1          3           35
## 5                17          1st Quarter             1          3           27
## 6                20          1st Quarter             1          6           10
## 7                21          1st Quarter             1          6            2
## 8                25          1st Quarter             1          6           23
## 9                27          1st Quarter             1          8           13
## 10               29          1st Quarter             1          8           22
## 11               32          1st Quarter             1          9   -214748340
## 12               33          1st Quarter             1         10   -214748340
## 13               34          1st Quarter             1         10           27
## 14               36          1st Quarter             1         10           25
## 15               37          1st Quarter             1         10           31
## 16               39          1st Quarter             1         10           16
## 17               42          1st Quarter             1         10           24
## 18               43          1st Quarter             1         10           39
## 19               45          1st Quarter             1         10           25
## 20               47          1st Quarter             1         13            6
## 21               49          1st Quarter             1         13           25
## 22               51          1st Quarter             1         15           26
## 23               53          1st Quarter             1         15           24
## 24               55          1st Quarter             1         15           29
## 25               57          1st Quarter             1         15           41
## 26               72          1st Quarter             1         18           37
## 27               74          1st Quarter             1         18           18
## 28               78          1st Quarter             1         19   -214748340
## 29               79          1st Quarter             1         20   -214748340
## 30               80          1st Quarter             1         20           47
## 31               82          1st Quarter             1         20           25
## 32              161          1st Quarter             1         20           26
## 33               84          1st Quarter             1         20           35
## 34               86          1st Quarter             1         23            8
## 35               88          1st Quarter             1         23           12
## 36               92          1st Quarter             1         23           25
## 37               94          1st Quarter             1         23           36
## 38               96          1st Quarter             1         23           26
## 39              100          1st Quarter             1         23   -214748340
## 40              101          1st Quarter             1         23   -214748340
## 41              113          1st Quarter             1         23           37
## 42              114          1st Quarter             1         26           29
## 43              116          1st Quarter             1         26           23
## 44              203          1st Quarter             1         26           36
## 45              118          1st Quarter             1         26           18
## 46              119          1st Quarter             1         26           34
## 47              121          1st Quarter             1         26           30
## 48              138          2nd Quarter             2         26           15
## 49              146          2nd Quarter             2         26           14
## 50              150          2nd Quarter             2         26           37
## 51              152          2nd Quarter             2         26           23
## 52              164          2nd Quarter             2         26   -214748340
## 53              169          2nd Quarter             2         26           23
## 54              171          2nd Quarter             2         26           25
## 55              175          2nd Quarter             2         27   -214748340
## 56              176          2nd Quarter             2         28   -214748340
## 57              177          2nd Quarter             2         28           23
## 58              179          2nd Quarter             2         30           24
## 59              181          2nd Quarter             2         30           38
## 60              183          2nd Quarter             2         30           28
## 61              185          2nd Quarter             2         30           26
## 62              198          2nd Quarter             2         33           14
## 63              200          2nd Quarter             2         33           36
## 64              201          2nd Quarter             2         33           34
## 65              205          2nd Quarter             2         33           23
## 66              207          2nd Quarter             2         33           19
## 67              209          2nd Quarter             2         33           24
## 68              211          2nd Quarter             2         33           16
## 69              212          2nd Quarter             2         33           27
## 70              214          2nd Quarter             2         33            2
## 71              219          2nd Quarter             2         36            2
## 72              228          2nd Quarter             2         36           13
## 73              230          2nd Quarter             2         36           44
## 74              232          2nd Quarter             2         36           12
## 75              234          2nd Quarter             2         36           18
## 76              236          2nd Quarter             2         38           24
## 77              238          2nd Quarter             2         38           26
## 78              240          2nd Quarter             2         40           24
## 79              242          2nd Quarter             2         40           30
## 80              243          2nd Quarter             2         40           35
## 81              248          2nd Quarter             2         40   -214748340
## 82              249          2nd Quarter             2         40   -214748340
## 83              250          2nd Quarter             2         43            3
## 84              252          2nd Quarter             2         43           13
## 85              256          2nd Quarter             2         43           23
## 86              261          2nd Quarter             2         43   -214748340
## 87              262          2nd Quarter             2         43   -214748340
## 88              264          2nd Quarter             2         43           47
## 89              268          2nd Quarter             2         45           36
## 90              269          2nd Quarter             2         45           26
## 91              272          2nd Quarter             2         46   -214748340
## 92              275          2nd Quarter             2         47   -214748340
## 93              276          2nd Quarter             2         47           25
## 94              286          3rd Quarter             3         47           17
## 95              288          3rd Quarter             3         50           14
## 96              289          3rd Quarter             3         50           13
## 97              291          3rd Quarter             3         52           26
## 98              293          3rd Quarter             3         52           27
## 99              295          3rd Quarter             3         52           25
## 100             297          3rd Quarter             3         52           24
## 101             298          3rd Quarter             3         52           21
## 102             302          3rd Quarter             3         52           32
## 103             304          3rd Quarter             3         52           29
## 104             306          3rd Quarter             3         54           29
## 105             308          3rd Quarter             3         54           27
## 106             312          3rd Quarter             3         56           24
## 107             317          3rd Quarter             3         56           29
## 108             319          3rd Quarter             3         56           21
## 109             321          3rd Quarter             3         56           25
## 110             323          3rd Quarter             3         56           19
## 111             325          3rd Quarter             3         56           36
## 112             328          3rd Quarter             3         59            4
## 113             330          3rd Quarter             3         59           40
## 114             332          3rd Quarter             3         61           25
## 115             335          3rd Quarter             3         62   -214748340
## 116             336          3rd Quarter             3         62           25
## 117             338          3rd Quarter             3         62           23
## 118             340          3rd Quarter             3         62           26
## 119             346          3rd Quarter             3         62   -214748340
## 120             347          3rd Quarter             3         62           23
## 121             350          3rd Quarter             3         62            9
## 122             352          3rd Quarter             3         62           15
## 123             354          3rd Quarter             3         62           24
## 124             356          3rd Quarter             3         62           24
## 125             358          3rd Quarter             3         62           26
## 126             360          3rd Quarter             3         62           24
## 127             368          3rd Quarter             3         62           35
## 128             376          3rd Quarter             3         64           16
## 129             377          3rd Quarter             3         64           37
## 130             379          3rd Quarter             3         64           18
## 131             384          3rd Quarter             3         64           21
## 132             386          3rd Quarter             3         66           26
## 133             389          3rd Quarter             3         66           26
## 134             393          3rd Quarter             3         66           28
## 135             397          3rd Quarter             3         68           13
## 136             398          3rd Quarter             3         68           35
## 137             403          3rd Quarter             3         68           26
## 138             409          4th Quarter             4         70           27
## 139             410          4th Quarter             4         70           25
## 140             415          4th Quarter             4         70            2
## 141             417          4th Quarter             4         72           18
## 142             424          4th Quarter             4         72           19
## 143             426          4th Quarter             4         72           24
## 144             430          4th Quarter             4         72   -214748340
## 145             436          4th Quarter             4         73   -214748340
## 146             437          4th Quarter             4         73           28
## 147             444          4th Quarter             4         73           33
## 148             448          4th Quarter             4         75           18
## 149             453          4th Quarter             4         75           35
## 150             456          4th Quarter             4         75           10
## 151             458          4th Quarter             4         75           48
## 152             462          4th Quarter             4         75           23
## 153             472          4th Quarter             4         75           25
## 154             474          4th Quarter             4         75           25
## 155             477          4th Quarter             4         75           26
## 156             485          4th Quarter             4         75   -214748340
## 157             488          4th Quarter             4         75           28
## 158             489          4th Quarter             4         77           21
## 159             492          4th Quarter             4         78   -214748340
## 160             493          4th Quarter             4         78           23
## 161             495          4th Quarter             4         78           25
## 162             498          4th Quarter             4         80           32
## 163             499          4th Quarter             4         80           24
## 164             501          4th Quarter             4         80           24
## 165             502          4th Quarter             4         80           11
## 166             512          4th Quarter             4         80   -214748340
## 167             514          4th Quarter             4         80   -214748340
## 168             517          4th Quarter             4         80   -214748340
## 169             519          4th Quarter             4         81   -214748340
## 170             520          4th Quarter             4         81           22
## 171             524          4th Quarter             4         81           26
## 172             526          4th Quarter             4         81           24
## 173             527          4th Quarter             4         81           14
## 174             529          4th Quarter             4         81           19
## 175             533          4th Quarter             4         81   -214748340
## 176             537          4th Quarter             4         82   -214748340
## 177             538          4th Quarter             4         82           38
## 178             542          4th Quarter             4         82           26
## 179             545          4th Quarter             4         82           25
## 180             546          4th Quarter             4         85           12
## 181             549          4th Quarter             4         85   -214748340
## 182             551          4th Quarter             4         85   -214748340
## 183             554          4th Quarter             4         86   -214748340
## 184             555          4th Quarter             4         87   -214748340
## 185             570          4th Quarter             4         90           13
##     coordinate_y scoring_play clock_display_value team_id type_id
## 1              2        FALSE                9:37       5     110
## 2             13        FALSE                9:16       9     131
## 3             20         TRUE                8:47       9      92
## 4              2        FALSE                8:23       5     130
## 5             25        FALSE                8:18       5      92
## 6             22         TRUE                8:05       9      92
## 7              8        FALSE                7:51       5      92
## 8              3         TRUE                7:31       5      95
## 9             13         TRUE                7:12       9      92
## 10            17         TRUE                6:58       5     131
## 11    -214748365         TRUE                6:36       9      98
## 12    -214748365         TRUE                6:36       9      99
## 13            16        FALSE                6:26       5      92
## 14             4         TRUE                6:22       5     114
## 15            19        FALSE                6:08       9     132
## 16             9         TRUE                6:02       5     131
## 17             2         TRUE                5:42       5     110
## 18            21        FALSE                5:28       9     131
## 19             3         TRUE                5:18       5      95
## 20            16         TRUE                5:04       9      92
## 21             7        FALSE                4:38       5      92
## 22             3         TRUE                4:30       9      95
## 23             3        FALSE                4:12       5     120
## 24            20        FALSE                4:00       9      92
## 25            18        FALSE                3:51       5      92
## 26            23         TRUE                3:41       9      92
## 27            19        FALSE                3:26       5      92
## 28    -214748365         TRUE                3:19       9      98
## 29    -214748365         TRUE                3:19       9      99
## 30             8        FALSE                3:06       5      92
## 31             3        FALSE                3:04       5      95
## 32             2        FALSE                3:03       5     125
## 33            23        FALSE                2:56       5      92
## 34            18         TRUE                2:49       9      92
## 35            22        FALSE                2:33       5      92
## 36             3         TRUE                2:27       5      95
## 37            18        FALSE                2:17       9      92
## 38             3        FALSE                2:03       5     110
## 39    -214748365         TRUE                2:03       5      98
## 40    -214748365         TRUE                2:03       5      99
## 41            22         TRUE                1:42       5      92
## 42            25         TRUE                1:30       9      92
## 43             3        FALSE                1:14       5     110
## 44            23        FALSE                1:07       9      92
## 45             5         TRUE                53.8       5      95
## 46            23        FALSE                39.8       9      92
## 47            19        FALSE                30.4       5      92
## 48            22         TRUE                9:27       5      92
## 49            16        FALSE                8:57       5      92
## 50            23        FALSE                8:38       9      92
## 51             3         TRUE                8:27       5     110
## 52    -214748365         TRUE                8:27       5      97
## 53             4        FALSE                8:02       5      95
## 54             3         TRUE                7:58       5      95
## 55    -214748365         TRUE                7:46       9      98
## 56    -214748365         TRUE                7:46       9      99
## 57             4        FALSE                7:22       5      93
## 58             4         TRUE                7:07       9     110
## 59            20        FALSE                6:55       5     132
## 60            16        FALSE                6:46       9     131
## 61             3        FALSE                6:39       5     110
## 62            22         TRUE                6:30       9      92
## 63            13         TRUE                6:17       5     131
## 64            25        FALSE                6:06       9      92
## 65             5        FALSE                5:52       5      92
## 66             9        FALSE                5:33       9     130
## 67             5        FALSE                5:29       9     114
## 68            15         TRUE                5:19       5      92
## 69            10        FALSE                5:03       9     130
## 70             4        FALSE                4:52       5      92
## 71             8         TRUE                4:35       9      92
## 72            13        FALSE                3:59       9     131
## 73            15         TRUE                3:50       5      92
## 74             9        FALSE                3:38       9      92
## 75            18        FALSE                3:31       5     131
## 76             3         TRUE                3:22       9     141
## 77             3         TRUE                3:02       5      95
## 78             4         TRUE                2:45       9     141
## 79             4         TRUE                2:29       5     124
## 80            23        FALSE                2:14       9      92
## 81    -214748365         TRUE                2:03       5      98
## 82    -214748365         TRUE                2:03       5      99
## 83             8         TRUE                1:50       9      92
## 84            21        FALSE                1:35       5      92
## 85             3         TRUE                1:30       5      95
## 86    -214748365         TRUE                1:02       5      98
## 87    -214748365        FALSE                1:02       5      99
## 88             8        FALSE                50.1       9      92
## 89            15         TRUE                42.2       9      92
## 90             2         TRUE                31.2       5      95
## 91    -214748365         TRUE                19.0       9      98
## 92    -214748365         TRUE                19.0       9      99
## 93             5        FALSE                 1.5       5      92
## 94            21        FALSE                9:44       9      92
## 95            22         TRUE                9:37       9     133
## 96            22        FALSE                9:18       5      92
## 97             2         TRUE                9:11       9      95
## 98             7        FALSE                8:55       5     144
## 99             3        FALSE                8:52       5      95
## 100            4         TRUE                8:49       5      95
## 101            5        FALSE                8:41       9      92
## 102            4        FALSE                8:26       9     145
## 103            4        FALSE                8:02       5     114
## 104            5         TRUE                7:52       9     110
## 105            3         TRUE                7:29       5      95
## 106            3         TRUE                7:14       9     141
## 107           25        FALSE                6:58       5     132
## 108            7        FALSE                6:52       5      95
## 109            4         TRUE                6:50       5      95
## 110            7        FALSE                6:39       9     144
## 111           14        FALSE                6:19       5     131
## 112           10         TRUE                6:00       9      92
## 113           13         TRUE                5:42       5      92
## 114            3         TRUE                5:26       9     128
## 115   -214748365         TRUE                5:26       9      97
## 116            8         TRUE                5:11       5     145
## 117            2        FALSE                4:48       9     110
## 118            4         TRUE                4:43       5     141
## 119   -214748365         TRUE                4:43       5      97
## 120            3        FALSE                4:28       9     110
## 121           19        FALSE                4:06       9      92
## 122           17        FALSE                3:53       5     131
## 123            3         TRUE                3:48       5     110
## 124           10        FALSE                3:34       9      92
## 125            3        FALSE                3:25       5     110
## 126            3        FALSE                3:20       5      95
## 127           22        FALSE                3:03       9      92
## 128            4         TRUE                2:30       9     131
## 129           23        FALSE                2:20       5      92
## 130            7        FALSE                2:14       9      92
## 131            6        FALSE                1:45       5     114
## 132            3         TRUE                1:36       9      95
## 133            3         TRUE                1:17       5     128
## 134           16        FALSE                1:02       5      92
## 135           14         TRUE                44.4       9      92
## 136           11        FALSE                30.0       5      92
## 137           21        FALSE                 2.3       5      92
## 138           15         TRUE                9:15       9      92
## 139            8        FALSE                8:49       5     144
## 140            8        FALSE                8:24       5      92
## 141            4         TRUE                8:14       9     137
## 142            7        FALSE                7:42       9     130
## 143            3         TRUE                7:33       5      95
## 144   -214748365        FALSE                7:17       9      98
## 145   -214748365         TRUE                7:17       9      99
## 146           18         TRUE                7:03       5     132
## 147           24        FALSE                6:29       9      92
## 148           10         TRUE                6:11       9     131
## 149           23        FALSE                5:48       5     132
## 150           19        FALSE                5:31       9      92
## 151            0        FALSE                5:17       9      92
## 152            3        FALSE                5:06       9      95
## 153            3        FALSE                4:50       5      95
## 154            3         TRUE                4:48       5     125
## 155            4         TRUE                4:26       5     110
## 156   -214748365         TRUE                4:26       5      97
## 157           16         TRUE                4:10       5     131
## 158            3         TRUE                3:58       9     110
## 159   -214748365         TRUE                3:58       9      97
## 160            7        FALSE                3:38       5      95
## 161            3        FALSE                3:36       5      95
## 162           12         TRUE                3:20       9      92
## 163            8        FALSE                3:09       5     130
## 164            4         TRUE                3:05       5      95
## 165           21        FALSE                2:53       9      92
## 166   -214748365        FALSE                2:42       5      98
## 167   -214748365         TRUE                2:42       5      99
## 168   -214748365        FALSE                2:33       9      98
## 169   -214748365         TRUE                2:33       9      99
## 170            8         TRUE                2:22       5      95
## 171            3        FALSE                1:58       5     110
## 172            3         TRUE                1:56       5      95
## 173           14        FALSE                1:45       9      92
## 174           20         TRUE                1:32       5      92
## 175   -214748365        FALSE                1:27       9      98
## 176   -214748365         TRUE                1:27       9      99
## 177           22        FALSE                1:13       5      92
## 178            3        FALSE                58.5       9      95
## 179           21         TRUE                47.0       5      92
## 180           21         TRUE                39.7       9      92
## 181   -214748365        FALSE                30.9       5      98
## 182   -214748365         TRUE                30.9       5      99
## 183   -214748365         TRUE                21.8       9      98
## 184   -214748365         TRUE                21.8       9      99
## 185           22         TRUE                 0.4       9      92
##                           type_text away_score
## 1                Driving Layup Shot          0
## 2                  Pullup Jump Shot          0
## 3                         Jump Shot          0
## 4                Floating Jump Shot          0
## 5                         Jump Shot          0
## 6                         Jump Shot          0
## 7                         Jump Shot          0
## 8                        Layup Shot          2
## 9                         Jump Shot          2
## 10                 Pullup Jump Shot          4
## 11              Free Throw - 1 of 2          4
## 12              Free Throw - 2 of 2          4
## 13                        Jump Shot          4
## 14             Turnaround Jump Shot          6
## 15              Step Back Jump Shot          6
## 16                 Pullup Jump Shot          8
## 17               Driving Layup Shot         10
## 18                 Pullup Jump Shot         10
## 19                       Layup Shot         12
## 20                        Jump Shot         12
## 21                        Jump Shot         12
## 22                       Layup Shot         12
## 23             Turnaround Hook Shot         12
## 24                        Jump Shot         12
## 25                        Jump Shot         12
## 26                        Jump Shot         12
## 27                        Jump Shot         12
## 28              Free Throw - 1 of 2         12
## 29              Free Throw - 2 of 2         12
## 30                        Jump Shot         12
## 31                       Layup Shot         12
## 32               Layup Shot Putback         12
## 33                        Jump Shot         12
## 34                        Jump Shot         12
## 35                        Jump Shot         12
## 36                       Layup Shot         14
## 37                        Jump Shot         14
## 38               Driving Layup Shot         14
## 39              Free Throw - 1 of 2         15
## 40              Free Throw - 2 of 2         16
## 41                        Jump Shot         19
## 42                        Jump Shot         19
## 43               Driving Layup Shot         19
## 44                        Jump Shot         19
## 45                       Layup Shot         21
## 46                        Jump Shot         21
## 47                        Jump Shot         21
## 48                        Jump Shot         24
## 49                        Jump Shot         24
## 50                        Jump Shot         24
## 51               Driving Layup Shot         26
## 52              Free Throw - 1 of 1         27
## 53                       Layup Shot         27
## 54                       Layup Shot         29
## 55              Free Throw - 1 of 2         29
## 56              Free Throw - 2 of 2         29
## 57                        Hook Shot         29
## 58               Driving Layup Shot         29
## 59              Step Back Jump Shot         29
## 60                 Pullup Jump Shot         29
## 61               Driving Layup Shot         29
## 62                        Jump Shot         29
## 63                 Pullup Jump Shot         31
## 64                        Jump Shot         31
## 65                        Jump Shot         31
## 66               Floating Jump Shot         31
## 67             Turnaround Jump Shot         31
## 68                        Jump Shot         33
## 69               Floating Jump Shot         33
## 70                        Jump Shot         33
## 71                        Jump Shot         33
## 72                 Pullup Jump Shot         33
## 73                        Jump Shot         36
## 74                        Jump Shot         36
## 75                 Pullup Jump Shot         36
## 76               Cutting Layup Shot         36
## 77                       Layup Shot         38
## 78               Cutting Layup Shot         38
## 79                Finger Roll Layup         40
## 80                        Jump Shot         40
## 81              Free Throw - 1 of 2         41
## 82              Free Throw - 2 of 2         42
## 83                        Jump Shot         42
## 84                        Jump Shot         42
## 85                       Layup Shot         44
## 86              Free Throw - 1 of 2         45
## 87              Free Throw - 2 of 2         45
## 88                        Jump Shot         45
## 89                        Jump Shot         45
## 90                       Layup Shot         47
## 91              Free Throw - 1 of 2         47
## 92              Free Throw - 2 of 2         47
## 93                        Jump Shot         47
## 94                        Jump Shot         47
## 95            Pullup Bank Jump Shot         47
## 96                        Jump Shot         47
## 97                       Layup Shot         47
## 98       Driving Floating Jump Shot         47
## 99                       Layup Shot         47
## 100                      Layup Shot         49
## 101                       Jump Shot         49
## 102 Driving Floating Bank Jump Shot         49
## 103            Turnaround Jump Shot         49
## 104              Driving Layup Shot         49
## 105                      Layup Shot         51
## 106              Cutting Layup Shot         51
## 107             Step Back Jump Shot         51
## 108                      Layup Shot         51
## 109                      Layup Shot         53
## 110      Driving Floating Jump Shot         53
## 111                Pullup Jump Shot         53
## 112                       Jump Shot         53
## 113                       Jump Shot         55
## 114       Driving Finger Roll Layup         55
## 115             Free Throw - 1 of 1         55
## 116 Driving Floating Bank Jump Shot         57
## 117              Driving Layup Shot         57
## 118              Cutting Layup Shot         59
## 119             Free Throw - 1 of 1         60
## 120              Driving Layup Shot         60
## 121                       Jump Shot         60
## 122                Pullup Jump Shot         60
## 123              Driving Layup Shot         62
## 124                       Jump Shot         62
## 125              Driving Layup Shot         62
## 126                      Layup Shot         62
## 127                       Jump Shot         62
## 128                Pullup Jump Shot         62
## 129                       Jump Shot         62
## 130                       Jump Shot         62
## 131            Turnaround Jump Shot         62
## 132                      Layup Shot         62
## 133       Driving Finger Roll Layup         64
## 134                       Jump Shot         64
## 135                       Jump Shot         64
## 136                       Jump Shot         64
## 137                       Jump Shot         64
## 138                       Jump Shot         64
## 139      Driving Floating Jump Shot         64
## 140                       Jump Shot         64
## 141  Turnaround Fade Away Jump Shot         64
## 142              Floating Jump Shot         64
## 143                      Layup Shot         66
## 144             Free Throw - 1 of 2         66
## 145             Free Throw - 2 of 2         66
## 146             Step Back Jump Shot         68
## 147                       Jump Shot         68
## 148                Pullup Jump Shot         68
## 149             Step Back Jump Shot         68
## 150                       Jump Shot         68
## 151                       Jump Shot         68
## 152                      Layup Shot         68
## 153                      Layup Shot         68
## 154              Layup Shot Putback         70
## 155              Driving Layup Shot         72
## 156             Free Throw - 1 of 1         73
## 157                Pullup Jump Shot         75
## 158              Driving Layup Shot         75
## 159             Free Throw - 1 of 1         75
## 160                      Layup Shot         75
## 161                      Layup Shot         75
## 162                       Jump Shot         75
## 163              Floating Jump Shot         75
## 164                      Layup Shot         77
## 165                       Jump Shot         77
## 166             Free Throw - 1 of 2         77
## 167             Free Throw - 2 of 2         78
## 168             Free Throw - 1 of 2         78
## 169             Free Throw - 2 of 2         78
## 170                      Layup Shot         80
## 171              Driving Layup Shot         80
## 172                      Layup Shot         82
## 173                       Jump Shot         82
## 174                       Jump Shot         84
## 175             Free Throw - 1 of 2         84
## 176             Free Throw - 2 of 2         84
## 177                       Jump Shot         84
## 178                      Layup Shot         84
## 179                       Jump Shot         86
## 180                       Jump Shot         86
## 181             Free Throw - 1 of 2         86
## 182             Free Throw - 2 of 2         87
## 183             Free Throw - 1 of 2         87
## 184             Free Throw - 2 of 2         87
## 185                       Jump Shot         87
##                                                                              text
## 1                                          Danielle Robinson misses driving layup
## 2                                 Sabrina Ionescu misses 18-foot pullup jump shot
## 3     Michaela Onyenwere makes 26-foot three point jumper (Sami Whitcomb assists)
## 4                                   Kelsey Mitchell misses 10-foot two point shot
## 5                              Victoria Vivians misses 25-foot three point jumper
## 6            Sami Whitcomb makes 27-foot three point jumper (Kylee Shook assists)
## 7                               Kelsey Mitchell misses 24-foot three point jumper
## 8                         Kelsey Mitchell makes layup (Danielle Robinson assists)
## 9                      Kylee Shook makes 17-foot jumper (Sabrina Ionescu assists)
## 10                                 Kelsey Mitchell makes 18-foot pullup jump shot
## 11                                         Betnijah Laney makes free throw 1 of 2
## 12                                         Betnijah Laney makes free throw 2 of 2
## 13                                          Kelsey Mitchell misses 16-foot jumper
## 14                                            Teaira McCowan makes two point shot
## 15                           Michaela Onyenwere misses 20-foot step back jumpshot
## 16                               Danielle Robinson makes 13-foot pullup jump shot
## 17                                          Danielle Robinson makes driving layup
## 18                    Sabrina Ionescu misses 25-foot three point pullup jump shot
## 19                         Teaira McCowan makes layup (Danielle Robinson assists)
## 20       Sami Whitcomb makes 24-foot three point jumper (Sabrina Ionescu assists)
## 21                                                Danielle Robinson misses jumper
## 22                         Michaela Onyenwere makes layup (Sami Whitcomb assists)
## 23                                    Teaira McCowan misses 3-foot two point shot
## 24                                           Betnijah Laney misses 20-foot jumper
## 25                              Kelsey Mitchell misses 24-foot three point jumper
## 26   Betnijah Laney makes 26-foot three point jumper (Michaela Onyenwere assists)
## 27                                          Jessica Breland misses 20-foot jumper
## 28                                     Michaela Onyenwere makes free throw 1 of 2
## 29                                     Michaela Onyenwere makes free throw 2 of 2
## 30                             Tiffany Mitchell misses 23-foot three point jumper
## 31                                                    Teaira McCowan misses layup
## 32                   Jazmine Jones blocks Teaira McCowan 's 2-foot two point shot
## 33                              Kelsey Mitchell misses 25-foot three point jumper
## 34      Betnijah Laney makes 24-foot three point jumper (Sabrina Ionescu assists)
## 35                                Lindsay Allen misses 25-foot three point jumper
## 36                           Teaira McCowan makes layup (Kelsey Mitchell assists)
## 37                                           Betnijah Laney misses 21-foot jumper
## 38                                          Tiffany Mitchell misses driving layup
## 39                                       Tiffany Mitchell makes free throw 1 of 2
## 40                                       Tiffany Mitchell makes free throw 2 of 2
## 41    Jantel Lavender makes 25-foot three point jumper (Tiffany Mitchell assists)
## 42        Betnijah Laney makes 25-foot three point jumper (Joyner Holmes assists)
## 43                                          Tiffany Mitchell misses driving layup
## 44                               Betnijah Laney misses 26-foot three point jumper
## 45                                                   Kysre Gondrezick makes layup
## 46                           Michaela Onyenwere misses 25-foot three point jumper
## 47                                          Jantel Lavender misses 19-foot jumper
## 48      Kysre Gondrezick makes 24-foot three point jumper (Lindsay Allen assists)
## 49                                          Jantel Lavender misses 19-foot jumper
## 50                                Sami Whitcomb misses 26-foot three point jumper
## 51                                              Lindsay Allen makes driving layup
## 52                                          Lindsay Allen makes free throw 1 of 1
## 53                                                   Jantel Lavender misses layup
## 54                                                    Jantel Lavender makes layup
## 55                                        Sabrina Ionescu makes free throw 1 of 2
## 56                                        Sabrina Ionescu makes free throw 2 of 2
## 57                                        Jantel Lavender misses 5-foot hook shot
## 58                   Betnijah Laney makes driving layup (Sabrina Ionescu assists)
## 59                             Tiffany Mitchell misses 24-foot step back jumpshot
## 60                                 Betnijah Laney misses 16-foot pullup jump shot
## 61                                          Tiffany Mitchell misses driving layup
## 62      Sabrina Ionescu makes 25-foot three point jumper (Betnijah Laney assists)
## 63                                Victoria Vivians makes 17-foot pullup jump shot
## 64                              Sabrina Ionescu misses 26-foot three point jumper
## 65                                             Chelsey Perry misses 6-foot jumper
## 66                                  Sabrina Ionescu misses 11-foot two point shot
## 67                                Michaela Onyenwere misses 6-foot two point shot
## 68                                          Victoria Vivians makes 18-foot jumper
## 69                                    Sami Whitcomb misses 11-foot two point shot
## 70                             Victoria Vivians misses 23-foot three point jumper
## 71      Betnijah Laney makes 24-foot three point jumper (Sabrina Ionescu assists)
## 72                                Sabrina Ionescu misses 18-foot pullup jump shot
## 73   Kelsey Mitchell makes 24-foot three point jumper (Danielle Robinson assists)
## 74                                              Kylee Shook misses 16-foot jumper
## 75                              Danielle Robinson misses 19-foot pullup jump shot
## 76                        Kylee Shook makes 4-foot layup (Betnijah Laney assists)
## 77                           Teaira McCowan makes layup (Kelsey Mitchell assists)
## 78                    Betnijah Laney makes 4-foot layup (Sabrina Ionescu assists)
## 79                                        Jessica Breland makes finger roll layup
## 80                                Sami Whitcomb misses 25-foot three point jumper
## 81                                        Jessica Breland makes free throw 1 of 2
## 82                                        Jessica Breland makes free throw 2 of 2
## 83  Michaela Onyenwere makes 24-foot three point jumper (Sabrina Ionescu assists)
## 84                             Victoria Vivians misses 24-foot three point jumper
## 85                           Teaira McCowan makes layup (Jessica Breland assists)
## 86                                         Teaira McCowan makes free throw 1 of 2
## 87                                        Teaira McCowan misses free throw 2 of 2
## 88        Jessica Breland blocks Michaela Onyenwere 's 23-foot three point jumper
## 89                                            Betnijah Laney makes 18-foot jumper
## 90                                                    Jessica Breland makes layup
## 91                                        Sabrina Ionescu makes free throw 1 of 2
## 92                                        Sabrina Ionescu makes free throw 2 of 2
## 93                                                   Teaira McCowan misses jumper
## 94                                           Betnijah Laney misses 22-foot jumper
## 95                                 Sabrina Ionescu makes 24-foot three point shot
## 96                              Kelsey Mitchell misses 25-foot three point jumper
## 97                       Michaela Onyenwere makes layup (Sabrina Ionescu assists)
## 98                             Victoria Vivians misses driving floating jump shot
## 99                                                    Teaira McCowan misses layup
## 100                                                   Jantel Lavender makes layup
## 101                                              Kylee Shook misses 6-foot jumper
## 102                                         Sabrina Ionescu misses two point shot
## 103                                   Teaira McCowan misses 5-foot two point shot
## 104                  Betnijah Laney makes driving layup (Sabrina Ionescu assists)
## 105                        Teaira McCowan makes layup (Danielle Robinson assists)
## 106                      Kylee Shook makes 3-foot layup (Sabrina Ionescu assists)
## 107                             Kelsey Mitchell misses 25-foot step back jumpshot
## 108                                                  Jantel Lavender misses layup
## 109                                                    Teaira McCowan makes layup
## 110                             Sabrina Ionescu misses driving floating jump shot
## 111                              Tiffany Mitchell misses 18-foot pullup jump shot
## 112     Michaela Onyenwere makes 23-foot three point jumper (Kylee Shook assists)
## 113                Kelsey Mitchell makes 19-foot jumper (Jantel Lavender assists)
## 114                                       Michaela Onyenwere makes two point shot
## 115                                    Michaela Onyenwere makes free throw 1 of 1
## 116                                          Kelsey Mitchell makes two point shot
## 117                                           Betnijah Laney misses driving layup
## 118                         Tiffany Mitchell makes layup (Teaira McCowan assists)
## 119                                      Tiffany Mitchell makes free throw 1 of 1
## 120                                       Michaela Onyenwere misses driving layup
## 121                                 Kylee Shook misses 25-foot three point jumper
## 122                               Kelsey Mitchell misses 19-foot pullup jump shot
## 123               Danielle Robinson makes driving layup (Jantel Lavender assists)
## 124                                             Kylee Shook misses 10-foot jumper
## 125                                         Tiffany Mitchell misses driving layup
## 126                                                  Jantel Lavender misses layup
## 127                          Michaela Onyenwere misses 25-foot three point jumper
## 128                                Sabrina Ionescu makes 10-foot pullup jump shot
## 129                             Kelsey Mitchell misses 26-foot three point jumper
## 130                                          Betnijah Laney misses 10-foot jumper
## 131                                  Jessica Breland misses 8-foot two point shot
## 132                           Reshanda Gray makes layup (Sabrina Ionescu assists)
## 133                                         Tiffany Mitchell makes two point shot
## 134                                        Kysre Gondrezick misses 16-foot jumper
## 135                                           Betnijah Laney makes 18-foot jumper
## 136                                         Jessica Breland misses 15-foot jumper
## 137                                        Kysre Gondrezick misses 21-foot jumper
## 138                                          Sabrina Ionescu makes 15-foot jumper
## 139                           Danielle Robinson misses driving floating jump shot
## 140                           Danielle Robinson misses 24-foot three point jumper
## 141                                    Betnijah Laney makes 8-foot two point shot
## 142                                  Sabrina Ionescu misses 9-foot two point shot
## 143                        Jessica Breland makes layup (Kysre Gondrezick assists)
## 144                                        Reshanda Gray misses free throw 1 of 2
## 145                                         Reshanda Gray makes free throw 2 of 2
## 146                              Kelsey Mitchell makes 18-foot step back jumpshot
## 147                               Jazmine Jones misses 25-foot three point jumper
## 148                                  DiDi Richards makes 12-foot pullup jump shot
## 149                            Kysre Gondrezick misses 25-foot step back jumpshot
## 150                             Sabrina Ionescu misses 24-foot three point jumper
## 151                                       Sami Whitcomb misses three point jumper
## 152                           Teaira McCowan blocks Reshanda Gray 's 3-foot layup
## 153                                                  Jantel Lavender misses layup
## 154                                           Teaira McCowan makes two point shot
## 155                                           Kelsey Mitchell makes driving layup
## 156                                       Kelsey Mitchell makes free throw 1 of 1
## 157                                Kelsey Mitchell makes 16-foot pullup jump shot
## 158                                           Sabrina Ionescu makes driving layup
## 159                                       Sabrina Ionescu makes free throw 1 of 1
## 160                                                   Teaira McCowan misses layup
## 161                                                  Jantel Lavender misses layup
## 162                                           Betnijah Laney makes 14-foot jumper
## 163                 Kylee Shook blocks Danielle Robinson 's 8-foot two point shot
## 164                                                    Teaira McCowan makes layup
## 165                             Sabrina Ionescu misses 25-foot three point jumper
## 166                                       Teaira McCowan misses free throw 1 of 2
## 167                                        Teaira McCowan makes free throw 2 of 2
## 168                                       Betnijah Laney misses free throw 1 of 2
## 169                                        Betnijah Laney makes free throw 2 of 2
## 170                          Teaira McCowan makes layup (Jantel Lavender assists)
## 171                                        Danielle Robinson misses driving layup
## 172                                                   Jantel Lavender makes layup
## 173                                         Sabrina Ionescu misses 18-foot jumper
## 174                                          Kelsey Mitchell makes 20-foot jumper
## 175                                       Betnijah Laney misses free throw 1 of 2
## 176                                        Betnijah Laney makes free throw 2 of 2
## 177                            Tiffany Mitchell misses 25-foot three point jumper
## 178                             Teaira McCowan blocks Kylee Shook 's 3-foot layup
## 179                                                  Kelsey Mitchell makes jumper
## 180                              Sabrina Ionescu makes 25-foot three point jumper
## 181                                      Kelsey Mitchell misses free throw 1 of 2
## 182                                       Kelsey Mitchell makes free throw 2 of 2
## 183                                       Sabrina Ionescu makes free throw 1 of 2
## 184                                       Sabrina Ionescu makes free throw 2 of 2
## 185        Sabrina Ionescu makes 25-foot three point jumper (Kylee Shook assists)
##     score_value participants_0_athlete_id participants_1_athlete_id   game_id
## 1             0                      1014                      <NA> 401320565
## 2             0                   4066533                      <NA> 401320565
## 3             3                   4282173                       887 401320565
## 4             0                   3142191                      <NA> 401320565
## 5             0                   3142948                      <NA> 401320565
## 6             3                       887                   4065849 401320565
## 7             0                   3142191                      <NA> 401320565
## 8             2                   3142191                      1014 401320565
## 9             2                   4065849                   4066533 401320565
## 10            2                   3142191                      <NA> 401320565
## 11            1                   2593770                      <NA> 401320565
## 12            1                   2593770                      <NA> 401320565
## 13            0                   3142191                      <NA> 401320565
## 14            2                   3913903                      <NA> 401320565
## 15            0                   4282173                      <NA> 401320565
## 16            2                      1014                      <NA> 401320565
## 17            2                      1014                      <NA> 401320565
## 18            0                   4066533                      <NA> 401320565
## 19            2                   3913903                      1014 401320565
## 20            3                       887                   4066533 401320565
## 21            0                      1014                      <NA> 401320565
## 22            2                   4282173                       887 401320565
## 23            0                   3913903                      <NA> 401320565
## 24            0                   2593770                      <NA> 401320565
## 25            0                   3142191                      <NA> 401320565
## 26            3                   2593770                   4282173 401320565
## 27            0                      1002                      <NA> 401320565
## 28            1                   4282173                      <NA> 401320565
## 29            1                   4282173                      <NA> 401320565
## 30            0                   2984741                      <NA> 401320565
## 31            0                   3913903                      <NA> 401320565
## 32            0                   3913903                   4065850 401320565
## 33            0                   3142191                      <NA> 401320565
## 34            3                   2593770                   4066533 401320565
## 35            0                   3058908                      <NA> 401320565
## 36            2                   3913903                   3142191 401320565
## 37            0                   2593770                      <NA> 401320565
## 38            0                   2984741                      <NA> 401320565
## 39            1                   2984741                      <NA> 401320565
## 40            1                   2984741                      <NA> 401320565
## 41            3                      1013                   2984741 401320565
## 42            3                   2593770                   4068161 401320565
## 43            0                   2984741                      <NA> 401320565
## 44            0                   2593770                      <NA> 401320565
## 45            2                   4065820                      <NA> 401320565
## 46            0                   4282173                      <NA> 401320565
## 47            0                      1013                      <NA> 401320565
## 48            3                   4065820                   3058908 401320565
## 49            0                      1013                      <NA> 401320565
## 50            0                       887                      <NA> 401320565
## 51            2                   3058908                      <NA> 401320565
## 52            1                   3058908                      <NA> 401320565
## 53            0                      1013                      <NA> 401320565
## 54            2                      1013                      <NA> 401320565
## 55            1                   4066533                      <NA> 401320565
## 56            1                   4066533                      <NA> 401320565
## 57            0                      1013                      <NA> 401320565
## 58            2                   2593770                   4066533 401320565
## 59            0                   2984741                      <NA> 401320565
## 60            0                   2593770                      <NA> 401320565
## 61            0                   2984741                      <NA> 401320565
## 62            3                   4066533                   2593770 401320565
## 63            2                   3142948                      <NA> 401320565
## 64            0                   4066533                      <NA> 401320565
## 65            0                   4282471                      <NA> 401320565
## 66            0                   4066533                      <NA> 401320565
## 67            0                   4282173                      <NA> 401320565
## 68            2                   3142948                      <NA> 401320565
## 69            0                       887                      <NA> 401320565
## 70            0                   3142948                      <NA> 401320565
## 71            3                   2593770                   4066533 401320565
## 72            0                   4066533                      <NA> 401320565
## 73            3                   3142191                      1014 401320565
## 74            0                   4065849                      <NA> 401320565
## 75            0                      1014                      <NA> 401320565
## 76            2                   4065849                   2593770 401320565
## 77            2                   3913903                   3142191 401320565
## 78            2                   2593770                   4066533 401320565
## 79            2                      1002                      <NA> 401320565
## 80            0                       887                      <NA> 401320565
## 81            1                      1002                      <NA> 401320565
## 82            1                      1002                      <NA> 401320565
## 83            3                   4282173                   4066533 401320565
## 84            0                   3142948                      <NA> 401320565
## 85            2                   3913903                      1002 401320565
## 86            1                   3913903                      <NA> 401320565
## 87            0                   3913903                      <NA> 401320565
## 88            0                   4282173                      1002 401320565
## 89            2                   2593770                      <NA> 401320565
## 90            2                      1002                      <NA> 401320565
## 91            1                   4066533                      <NA> 401320565
## 92            1                   4066533                      <NA> 401320565
## 93            0                   3913903                      <NA> 401320565
## 94            0                   2593770                      <NA> 401320565
## 95            3                   4066533                      <NA> 401320565
## 96            0                   3142191                      <NA> 401320565
## 97            2                   4282173                   4066533 401320565
## 98            0                   3142948                      <NA> 401320565
## 99            0                   3913903                      <NA> 401320565
## 100           2                      1013                      <NA> 401320565
## 101           0                   4065849                      <NA> 401320565
## 102           0                   4066533                      <NA> 401320565
## 103           0                   3913903                      <NA> 401320565
## 104           2                   2593770                   4066533 401320565
## 105           2                   3913903                      1014 401320565
## 106           2                   4065849                   4066533 401320565
## 107           0                   3142191                      <NA> 401320565
## 108           0                      1013                      <NA> 401320565
## 109           2                   3913903                      <NA> 401320565
## 110           0                   4066533                      <NA> 401320565
## 111           0                   2984741                      <NA> 401320565
## 112           3                   4282173                   4065849 401320565
## 113           2                   3142191                      1013 401320565
## 114           2                   4282173                      <NA> 401320565
## 115           1                   4282173                      <NA> 401320565
## 116           2                   3142191                      <NA> 401320565
## 117           0                   2593770                      <NA> 401320565
## 118           2                   2984741                   3913903 401320565
## 119           1                   2984741                      <NA> 401320565
## 120           0                   4282173                      <NA> 401320565
## 121           0                   4065849                      <NA> 401320565
## 122           0                   3142191                      <NA> 401320565
## 123           2                      1014                      1013 401320565
## 124           0                   4065849                      <NA> 401320565
## 125           0                   2984741                      <NA> 401320565
## 126           0                      1013                      <NA> 401320565
## 127           0                   4282173                      <NA> 401320565
## 128           2                   4066533                      <NA> 401320565
## 129           0                   3142191                      <NA> 401320565
## 130           0                   2593770                      <NA> 401320565
## 131           0                      1002                      <NA> 401320565
## 132           2                   2566211                   4066533 401320565
## 133           2                   2984741                      <NA> 401320565
## 134           0                   4065820                      <NA> 401320565
## 135           2                   2593770                      <NA> 401320565
## 136           0                      1002                      <NA> 401320565
## 137           0                   4065820                      <NA> 401320565
## 138           2                   4066533                      <NA> 401320565
## 139           0                      1014                      <NA> 401320565
## 140           0                      1014                      <NA> 401320565
## 141           2                   2593770                      <NA> 401320565
## 142           0                   4066533                      <NA> 401320565
## 143           2                      1002                   4065820 401320565
## 144           0                   2566211                      <NA> 401320565
## 145           1                   2566211                      <NA> 401320565
## 146           2                   3142191                      <NA> 401320565
## 147           0                   4065850                      <NA> 401320565
## 148           2                   4281253                      <NA> 401320565
## 149           0                   4065820                      <NA> 401320565
## 150           0                   4066533                      <NA> 401320565
## 151           0                       887                      <NA> 401320565
## 152           0                   2566211                   3913903 401320565
## 153           0                      1013                      <NA> 401320565
## 154           2                   3913903                      <NA> 401320565
## 155           2                   3142191                      <NA> 401320565
## 156           1                   3142191                      <NA> 401320565
## 157           2                   3142191                      <NA> 401320565
## 158           2                   4066533                      <NA> 401320565
## 159           1                   4066533                      <NA> 401320565
## 160           0                   3913903                      <NA> 401320565
## 161           0                      1013                      <NA> 401320565
## 162           2                   2593770                      <NA> 401320565
## 163           0                      1014                   4065849 401320565
## 164           2                   3913903                      <NA> 401320565
## 165           0                   4066533                      <NA> 401320565
## 166           0                   3913903                      <NA> 401320565
## 167           1                   3913903                      <NA> 401320565
## 168           0                   2593770                      <NA> 401320565
## 169           1                   2593770                      <NA> 401320565
## 170           2                   3913903                      1013 401320565
## 171           0                      1014                      <NA> 401320565
## 172           2                      1013                      <NA> 401320565
## 173           0                   4066533                      <NA> 401320565
## 174           2                   3142191                      <NA> 401320565
## 175           0                   2593770                      <NA> 401320565
## 176           1                   2593770                      <NA> 401320565
## 177           0                   2984741                      <NA> 401320565
## 178           0                   4065849                   3913903 401320565
## 179           2                   3142191                      <NA> 401320565
## 180           3                   4066533                      <NA> 401320565
## 181           0                   3142191                      <NA> 401320565
## 182           1                   3142191                      <NA> 401320565
## 183           1                   4066533                      <NA> 401320565
## 184           1                   4066533                      <NA> 401320565
## 185           3                   4066533                   4065849 401320565
##     away_team_id away_team_name away_team_mascot away_team_abbrev
## 1              5        Indiana            Fever              IND
## 2              5        Indiana            Fever              IND
## 3              5        Indiana            Fever              IND
## 4              5        Indiana            Fever              IND
## 5              5        Indiana            Fever              IND
## 6              5        Indiana            Fever              IND
## 7              5        Indiana            Fever              IND
## 8              5        Indiana            Fever              IND
## 9              5        Indiana            Fever              IND
## 10             5        Indiana            Fever              IND
## 11             5        Indiana            Fever              IND
## 12             5        Indiana            Fever              IND
## 13             5        Indiana            Fever              IND
## 14             5        Indiana            Fever              IND
## 15             5        Indiana            Fever              IND
## 16             5        Indiana            Fever              IND
## 17             5        Indiana            Fever              IND
## 18             5        Indiana            Fever              IND
## 19             5        Indiana            Fever              IND
## 20             5        Indiana            Fever              IND
## 21             5        Indiana            Fever              IND
## 22             5        Indiana            Fever              IND
## 23             5        Indiana            Fever              IND
## 24             5        Indiana            Fever              IND
## 25             5        Indiana            Fever              IND
## 26             5        Indiana            Fever              IND
## 27             5        Indiana            Fever              IND
## 28             5        Indiana            Fever              IND
## 29             5        Indiana            Fever              IND
## 30             5        Indiana            Fever              IND
## 31             5        Indiana            Fever              IND
## 32             5        Indiana            Fever              IND
## 33             5        Indiana            Fever              IND
## 34             5        Indiana            Fever              IND
## 35             5        Indiana            Fever              IND
## 36             5        Indiana            Fever              IND
## 37             5        Indiana            Fever              IND
## 38             5        Indiana            Fever              IND
## 39             5        Indiana            Fever              IND
## 40             5        Indiana            Fever              IND
## 41             5        Indiana            Fever              IND
## 42             5        Indiana            Fever              IND
## 43             5        Indiana            Fever              IND
## 44             5        Indiana            Fever              IND
## 45             5        Indiana            Fever              IND
## 46             5        Indiana            Fever              IND
## 47             5        Indiana            Fever              IND
## 48             5        Indiana            Fever              IND
## 49             5        Indiana            Fever              IND
## 50             5        Indiana            Fever              IND
## 51             5        Indiana            Fever              IND
## 52             5        Indiana            Fever              IND
## 53             5        Indiana            Fever              IND
## 54             5        Indiana            Fever              IND
## 55             5        Indiana            Fever              IND
## 56             5        Indiana            Fever              IND
## 57             5        Indiana            Fever              IND
## 58             5        Indiana            Fever              IND
## 59             5        Indiana            Fever              IND
## 60             5        Indiana            Fever              IND
## 61             5        Indiana            Fever              IND
## 62             5        Indiana            Fever              IND
## 63             5        Indiana            Fever              IND
## 64             5        Indiana            Fever              IND
## 65             5        Indiana            Fever              IND
## 66             5        Indiana            Fever              IND
## 67             5        Indiana            Fever              IND
## 68             5        Indiana            Fever              IND
## 69             5        Indiana            Fever              IND
## 70             5        Indiana            Fever              IND
## 71             5        Indiana            Fever              IND
## 72             5        Indiana            Fever              IND
## 73             5        Indiana            Fever              IND
## 74             5        Indiana            Fever              IND
## 75             5        Indiana            Fever              IND
## 76             5        Indiana            Fever              IND
## 77             5        Indiana            Fever              IND
## 78             5        Indiana            Fever              IND
## 79             5        Indiana            Fever              IND
## 80             5        Indiana            Fever              IND
## 81             5        Indiana            Fever              IND
## 82             5        Indiana            Fever              IND
## 83             5        Indiana            Fever              IND
## 84             5        Indiana            Fever              IND
## 85             5        Indiana            Fever              IND
## 86             5        Indiana            Fever              IND
## 87             5        Indiana            Fever              IND
## 88             5        Indiana            Fever              IND
## 89             5        Indiana            Fever              IND
## 90             5        Indiana            Fever              IND
## 91             5        Indiana            Fever              IND
## 92             5        Indiana            Fever              IND
## 93             5        Indiana            Fever              IND
## 94             5        Indiana            Fever              IND
## 95             5        Indiana            Fever              IND
## 96             5        Indiana            Fever              IND
## 97             5        Indiana            Fever              IND
## 98             5        Indiana            Fever              IND
## 99             5        Indiana            Fever              IND
## 100            5        Indiana            Fever              IND
## 101            5        Indiana            Fever              IND
## 102            5        Indiana            Fever              IND
## 103            5        Indiana            Fever              IND
## 104            5        Indiana            Fever              IND
## 105            5        Indiana            Fever              IND
## 106            5        Indiana            Fever              IND
## 107            5        Indiana            Fever              IND
## 108            5        Indiana            Fever              IND
## 109            5        Indiana            Fever              IND
## 110            5        Indiana            Fever              IND
## 111            5        Indiana            Fever              IND
## 112            5        Indiana            Fever              IND
## 113            5        Indiana            Fever              IND
## 114            5        Indiana            Fever              IND
## 115            5        Indiana            Fever              IND
## 116            5        Indiana            Fever              IND
## 117            5        Indiana            Fever              IND
## 118            5        Indiana            Fever              IND
## 119            5        Indiana            Fever              IND
## 120            5        Indiana            Fever              IND
## 121            5        Indiana            Fever              IND
## 122            5        Indiana            Fever              IND
## 123            5        Indiana            Fever              IND
## 124            5        Indiana            Fever              IND
## 125            5        Indiana            Fever              IND
## 126            5        Indiana            Fever              IND
## 127            5        Indiana            Fever              IND
## 128            5        Indiana            Fever              IND
## 129            5        Indiana            Fever              IND
## 130            5        Indiana            Fever              IND
## 131            5        Indiana            Fever              IND
## 132            5        Indiana            Fever              IND
## 133            5        Indiana            Fever              IND
## 134            5        Indiana            Fever              IND
## 135            5        Indiana            Fever              IND
## 136            5        Indiana            Fever              IND
## 137            5        Indiana            Fever              IND
## 138            5        Indiana            Fever              IND
## 139            5        Indiana            Fever              IND
## 140            5        Indiana            Fever              IND
## 141            5        Indiana            Fever              IND
## 142            5        Indiana            Fever              IND
## 143            5        Indiana            Fever              IND
## 144            5        Indiana            Fever              IND
## 145            5        Indiana            Fever              IND
## 146            5        Indiana            Fever              IND
## 147            5        Indiana            Fever              IND
## 148            5        Indiana            Fever              IND
## 149            5        Indiana            Fever              IND
## 150            5        Indiana            Fever              IND
## 151            5        Indiana            Fever              IND
## 152            5        Indiana            Fever              IND
## 153            5        Indiana            Fever              IND
## 154            5        Indiana            Fever              IND
## 155            5        Indiana            Fever              IND
## 156            5        Indiana            Fever              IND
## 157            5        Indiana            Fever              IND
## 158            5        Indiana            Fever              IND
## 159            5        Indiana            Fever              IND
## 160            5        Indiana            Fever              IND
## 161            5        Indiana            Fever              IND
## 162            5        Indiana            Fever              IND
## 163            5        Indiana            Fever              IND
## 164            5        Indiana            Fever              IND
## 165            5        Indiana            Fever              IND
## 166            5        Indiana            Fever              IND
## 167            5        Indiana            Fever              IND
## 168            5        Indiana            Fever              IND
## 169            5        Indiana            Fever              IND
## 170            5        Indiana            Fever              IND
## 171            5        Indiana            Fever              IND
## 172            5        Indiana            Fever              IND
## 173            5        Indiana            Fever              IND
## 174            5        Indiana            Fever              IND
## 175            5        Indiana            Fever              IND
## 176            5        Indiana            Fever              IND
## 177            5        Indiana            Fever              IND
## 178            5        Indiana            Fever              IND
## 179            5        Indiana            Fever              IND
## 180            5        Indiana            Fever              IND
## 181            5        Indiana            Fever              IND
## 182            5        Indiana            Fever              IND
## 183            5        Indiana            Fever              IND
## 184            5        Indiana            Fever              IND
## 185            5        Indiana            Fever              IND
##     away_team_name_alt home_team_id home_team_name home_team_mascot
## 1              Indiana            9       New York          Liberty
## 2              Indiana            9       New York          Liberty
## 3              Indiana            9       New York          Liberty
## 4              Indiana            9       New York          Liberty
## 5              Indiana            9       New York          Liberty
## 6              Indiana            9       New York          Liberty
## 7              Indiana            9       New York          Liberty
## 8              Indiana            9       New York          Liberty
## 9              Indiana            9       New York          Liberty
## 10             Indiana            9       New York          Liberty
## 11             Indiana            9       New York          Liberty
## 12             Indiana            9       New York          Liberty
## 13             Indiana            9       New York          Liberty
## 14             Indiana            9       New York          Liberty
## 15             Indiana            9       New York          Liberty
## 16             Indiana            9       New York          Liberty
## 17             Indiana            9       New York          Liberty
## 18             Indiana            9       New York          Liberty
## 19             Indiana            9       New York          Liberty
## 20             Indiana            9       New York          Liberty
## 21             Indiana            9       New York          Liberty
## 22             Indiana            9       New York          Liberty
## 23             Indiana            9       New York          Liberty
## 24             Indiana            9       New York          Liberty
## 25             Indiana            9       New York          Liberty
## 26             Indiana            9       New York          Liberty
## 27             Indiana            9       New York          Liberty
## 28             Indiana            9       New York          Liberty
## 29             Indiana            9       New York          Liberty
## 30             Indiana            9       New York          Liberty
## 31             Indiana            9       New York          Liberty
## 32             Indiana            9       New York          Liberty
## 33             Indiana            9       New York          Liberty
## 34             Indiana            9       New York          Liberty
## 35             Indiana            9       New York          Liberty
## 36             Indiana            9       New York          Liberty
## 37             Indiana            9       New York          Liberty
## 38             Indiana            9       New York          Liberty
## 39             Indiana            9       New York          Liberty
## 40             Indiana            9       New York          Liberty
## 41             Indiana            9       New York          Liberty
## 42             Indiana            9       New York          Liberty
## 43             Indiana            9       New York          Liberty
## 44             Indiana            9       New York          Liberty
## 45             Indiana            9       New York          Liberty
## 46             Indiana            9       New York          Liberty
## 47             Indiana            9       New York          Liberty
## 48             Indiana            9       New York          Liberty
## 49             Indiana            9       New York          Liberty
## 50             Indiana            9       New York          Liberty
## 51             Indiana            9       New York          Liberty
## 52             Indiana            9       New York          Liberty
## 53             Indiana            9       New York          Liberty
## 54             Indiana            9       New York          Liberty
## 55             Indiana            9       New York          Liberty
## 56             Indiana            9       New York          Liberty
## 57             Indiana            9       New York          Liberty
## 58             Indiana            9       New York          Liberty
## 59             Indiana            9       New York          Liberty
## 60             Indiana            9       New York          Liberty
## 61             Indiana            9       New York          Liberty
## 62             Indiana            9       New York          Liberty
## 63             Indiana            9       New York          Liberty
## 64             Indiana            9       New York          Liberty
## 65             Indiana            9       New York          Liberty
## 66             Indiana            9       New York          Liberty
## 67             Indiana            9       New York          Liberty
## 68             Indiana            9       New York          Liberty
## 69             Indiana            9       New York          Liberty
## 70             Indiana            9       New York          Liberty
## 71             Indiana            9       New York          Liberty
## 72             Indiana            9       New York          Liberty
## 73             Indiana            9       New York          Liberty
## 74             Indiana            9       New York          Liberty
## 75             Indiana            9       New York          Liberty
## 76             Indiana            9       New York          Liberty
## 77             Indiana            9       New York          Liberty
## 78             Indiana            9       New York          Liberty
## 79             Indiana            9       New York          Liberty
## 80             Indiana            9       New York          Liberty
## 81             Indiana            9       New York          Liberty
## 82             Indiana            9       New York          Liberty
## 83             Indiana            9       New York          Liberty
## 84             Indiana            9       New York          Liberty
## 85             Indiana            9       New York          Liberty
## 86             Indiana            9       New York          Liberty
## 87             Indiana            9       New York          Liberty
## 88             Indiana            9       New York          Liberty
## 89             Indiana            9       New York          Liberty
## 90             Indiana            9       New York          Liberty
## 91             Indiana            9       New York          Liberty
## 92             Indiana            9       New York          Liberty
## 93             Indiana            9       New York          Liberty
## 94             Indiana            9       New York          Liberty
## 95             Indiana            9       New York          Liberty
## 96             Indiana            9       New York          Liberty
## 97             Indiana            9       New York          Liberty
## 98             Indiana            9       New York          Liberty
## 99             Indiana            9       New York          Liberty
## 100            Indiana            9       New York          Liberty
## 101            Indiana            9       New York          Liberty
## 102            Indiana            9       New York          Liberty
## 103            Indiana            9       New York          Liberty
## 104            Indiana            9       New York          Liberty
## 105            Indiana            9       New York          Liberty
## 106            Indiana            9       New York          Liberty
## 107            Indiana            9       New York          Liberty
## 108            Indiana            9       New York          Liberty
## 109            Indiana            9       New York          Liberty
## 110            Indiana            9       New York          Liberty
## 111            Indiana            9       New York          Liberty
## 112            Indiana            9       New York          Liberty
## 113            Indiana            9       New York          Liberty
## 114            Indiana            9       New York          Liberty
## 115            Indiana            9       New York          Liberty
## 116            Indiana            9       New York          Liberty
## 117            Indiana            9       New York          Liberty
## 118            Indiana            9       New York          Liberty
## 119            Indiana            9       New York          Liberty
## 120            Indiana            9       New York          Liberty
## 121            Indiana            9       New York          Liberty
## 122            Indiana            9       New York          Liberty
## 123            Indiana            9       New York          Liberty
## 124            Indiana            9       New York          Liberty
## 125            Indiana            9       New York          Liberty
## 126            Indiana            9       New York          Liberty
## 127            Indiana            9       New York          Liberty
## 128            Indiana            9       New York          Liberty
## 129            Indiana            9       New York          Liberty
## 130            Indiana            9       New York          Liberty
## 131            Indiana            9       New York          Liberty
## 132            Indiana            9       New York          Liberty
## 133            Indiana            9       New York          Liberty
## 134            Indiana            9       New York          Liberty
## 135            Indiana            9       New York          Liberty
## 136            Indiana            9       New York          Liberty
## 137            Indiana            9       New York          Liberty
## 138            Indiana            9       New York          Liberty
## 139            Indiana            9       New York          Liberty
## 140            Indiana            9       New York          Liberty
## 141            Indiana            9       New York          Liberty
## 142            Indiana            9       New York          Liberty
## 143            Indiana            9       New York          Liberty
## 144            Indiana            9       New York          Liberty
## 145            Indiana            9       New York          Liberty
## 146            Indiana            9       New York          Liberty
## 147            Indiana            9       New York          Liberty
## 148            Indiana            9       New York          Liberty
## 149            Indiana            9       New York          Liberty
## 150            Indiana            9       New York          Liberty
## 151            Indiana            9       New York          Liberty
## 152            Indiana            9       New York          Liberty
## 153            Indiana            9       New York          Liberty
## 154            Indiana            9       New York          Liberty
## 155            Indiana            9       New York          Liberty
## 156            Indiana            9       New York          Liberty
## 157            Indiana            9       New York          Liberty
## 158            Indiana            9       New York          Liberty
## 159            Indiana            9       New York          Liberty
## 160            Indiana            9       New York          Liberty
## 161            Indiana            9       New York          Liberty
## 162            Indiana            9       New York          Liberty
## 163            Indiana            9       New York          Liberty
## 164            Indiana            9       New York          Liberty
## 165            Indiana            9       New York          Liberty
## 166            Indiana            9       New York          Liberty
## 167            Indiana            9       New York          Liberty
## 168            Indiana            9       New York          Liberty
## 169            Indiana            9       New York          Liberty
## 170            Indiana            9       New York          Liberty
## 171            Indiana            9       New York          Liberty
## 172            Indiana            9       New York          Liberty
## 173            Indiana            9       New York          Liberty
## 174            Indiana            9       New York          Liberty
## 175            Indiana            9       New York          Liberty
## 176            Indiana            9       New York          Liberty
## 177            Indiana            9       New York          Liberty
## 178            Indiana            9       New York          Liberty
## 179            Indiana            9       New York          Liberty
## 180            Indiana            9       New York          Liberty
## 181            Indiana            9       New York          Liberty
## 182            Indiana            9       New York          Liberty
## 183            Indiana            9       New York          Liberty
## 184            Indiana            9       New York          Liberty
## 185            Indiana            9       New York          Liberty
##     home_team_abbrev home_team_name_alt clock_minutes clock_seconds half
## 1                 NY           New York             9            37    1
## 2                 NY           New York             9            16    1
## 3                 NY           New York             8            47    1
## 4                 NY           New York             8            23    1
## 5                 NY           New York             8            18    1
## 6                 NY           New York             8            05    1
## 7                 NY           New York             7            51    1
## 8                 NY           New York             7            31    1
## 9                 NY           New York             7            12    1
## 10                NY           New York             6            58    1
## 11                NY           New York             6            36    1
## 12                NY           New York             6            36    1
## 13                NY           New York             6            26    1
## 14                NY           New York             6            22    1
## 15                NY           New York             6            08    1
## 16                NY           New York             6            02    1
## 17                NY           New York             5            42    1
## 18                NY           New York             5            28    1
## 19                NY           New York             5            18    1
## 20                NY           New York             5            04    1
## 21                NY           New York             4            38    1
## 22                NY           New York             4            30    1
## 23                NY           New York             4            12    1
## 24                NY           New York             4            00    1
## 25                NY           New York             3            51    1
## 26                NY           New York             3            41    1
## 27                NY           New York             3            26    1
## 28                NY           New York             3            19    1
## 29                NY           New York             3            19    1
## 30                NY           New York             3            06    1
## 31                NY           New York             3            04    1
## 32                NY           New York             3            03    1
## 33                NY           New York             2            56    1
## 34                NY           New York             2            49    1
## 35                NY           New York             2            33    1
## 36                NY           New York             2            27    1
## 37                NY           New York             2            17    1
## 38                NY           New York             2            03    1
## 39                NY           New York             2            03    1
## 40                NY           New York             2            03    1
## 41                NY           New York             1            42    1
## 42                NY           New York             1            30    1
## 43                NY           New York             1            14    1
## 44                NY           New York             1            07    1
## 45                NY           New York             0          53.8    1
## 46                NY           New York             0          39.8    1
## 47                NY           New York             0          30.4    1
## 48                NY           New York             9            27    1
## 49                NY           New York             8            57    1
## 50                NY           New York             8            38    1
## 51                NY           New York             8            27    1
## 52                NY           New York             8            27    1
## 53                NY           New York             8            02    1
## 54                NY           New York             7            58    1
## 55                NY           New York             7            46    1
## 56                NY           New York             7            46    1
## 57                NY           New York             7            22    1
## 58                NY           New York             7            07    1
## 59                NY           New York             6            55    1
## 60                NY           New York             6            46    1
## 61                NY           New York             6            39    1
## 62                NY           New York             6            30    1
## 63                NY           New York             6            17    1
## 64                NY           New York             6            06    1
## 65                NY           New York             5            52    1
## 66                NY           New York             5            33    1
## 67                NY           New York             5            29    1
## 68                NY           New York             5            19    1
## 69                NY           New York             5            03    1
## 70                NY           New York             4            52    1
## 71                NY           New York             4            35    1
## 72                NY           New York             3            59    1
## 73                NY           New York             3            50    1
## 74                NY           New York             3            38    1
## 75                NY           New York             3            31    1
## 76                NY           New York             3            22    1
## 77                NY           New York             3            02    1
## 78                NY           New York             2            45    1
## 79                NY           New York             2            29    1
## 80                NY           New York             2            14    1
## 81                NY           New York             2            03    1
## 82                NY           New York             2            03    1
## 83                NY           New York             1            50    1
## 84                NY           New York             1            35    1
## 85                NY           New York             1            30    1
## 86                NY           New York             1            02    1
## 87                NY           New York             1            02    1
## 88                NY           New York             0          50.1    1
## 89                NY           New York             0          42.2    1
## 90                NY           New York             0          31.2    1
## 91                NY           New York             0          19.0    1
## 92                NY           New York             0          19.0    1
## 93                NY           New York             0           1.5    1
## 94                NY           New York             9            44    2
## 95                NY           New York             9            37    2
## 96                NY           New York             9            18    2
## 97                NY           New York             9            11    2
## 98                NY           New York             8            55    2
## 99                NY           New York             8            52    2
## 100               NY           New York             8            49    2
## 101               NY           New York             8            41    2
## 102               NY           New York             8            26    2
## 103               NY           New York             8            02    2
## 104               NY           New York             7            52    2
## 105               NY           New York             7            29    2
## 106               NY           New York             7            14    2
## 107               NY           New York             6            58    2
## 108               NY           New York             6            52    2
## 109               NY           New York             6            50    2
## 110               NY           New York             6            39    2
## 111               NY           New York             6            19    2
## 112               NY           New York             6            00    2
## 113               NY           New York             5            42    2
## 114               NY           New York             5            26    2
## 115               NY           New York             5            26    2
## 116               NY           New York             5            11    2
## 117               NY           New York             4            48    2
## 118               NY           New York             4            43    2
## 119               NY           New York             4            43    2
## 120               NY           New York             4            28    2
## 121               NY           New York             4            06    2
## 122               NY           New York             3            53    2
## 123               NY           New York             3            48    2
## 124               NY           New York             3            34    2
## 125               NY           New York             3            25    2
## 126               NY           New York             3            20    2
## 127               NY           New York             3            03    2
## 128               NY           New York             2            30    2
## 129               NY           New York             2            20    2
## 130               NY           New York             2            14    2
## 131               NY           New York             1            45    2
## 132               NY           New York             1            36    2
## 133               NY           New York             1            17    2
## 134               NY           New York             1            02    2
## 135               NY           New York             0          44.4    2
## 136               NY           New York             0          30.0    2
## 137               NY           New York             0           2.3    2
## 138               NY           New York             9            15    2
## 139               NY           New York             8            49    2
## 140               NY           New York             8            24    2
## 141               NY           New York             8            14    2
## 142               NY           New York             7            42    2
## 143               NY           New York             7            33    2
## 144               NY           New York             7            17    2
## 145               NY           New York             7            17    2
## 146               NY           New York             7            03    2
## 147               NY           New York             6            29    2
## 148               NY           New York             6            11    2
## 149               NY           New York             5            48    2
## 150               NY           New York             5            31    2
## 151               NY           New York             5            17    2
## 152               NY           New York             5            06    2
## 153               NY           New York             4            50    2
## 154               NY           New York             4            48    2
## 155               NY           New York             4            26    2
## 156               NY           New York             4            26    2
## 157               NY           New York             4            10    2
## 158               NY           New York             3            58    2
## 159               NY           New York             3            58    2
## 160               NY           New York             3            38    2
## 161               NY           New York             3            36    2
## 162               NY           New York             3            20    2
## 163               NY           New York             3            09    2
## 164               NY           New York             3            05    2
## 165               NY           New York             2            53    2
## 166               NY           New York             2            42    2
## 167               NY           New York             2            42    2
## 168               NY           New York             2            33    2
## 169               NY           New York             2            33    2
## 170               NY           New York             2            22    2
## 171               NY           New York             1            58    2
## 172               NY           New York             1            56    2
## 173               NY           New York             1            45    2
## 174               NY           New York             1            32    2
## 175               NY           New York             1            27    2
## 176               NY           New York             1            27    2
## 177               NY           New York             1            13    2
## 178               NY           New York             0          58.5    2
## 179               NY           New York             0          47.0    2
## 180               NY           New York             0          39.7    2
## 181               NY           New York             0          30.9    2
## 182               NY           New York             0          30.9    2
## 183               NY           New York             0          21.8    2
## 184               NY           New York             0          21.8    2
## 185               NY           New York             0           0.4    2
##     lag_half lead_half game_play_number
## 1          1         1                2
## 2          1         1                4
## 3          1         1                7
## 4          1         1                8
## 5          1         1               10
## 6          1         1               12
## 7          1         1               13
## 8          1         1               16
## 9          1         1               17
## 10         1         1               18
## 11         1         1               20
## 12         1         1               21
## 13         1         1               22
## 14         1         1               24
## 15         1         1               25
## 16         1         1               27
## 17         1         1               29
## 18         1         1               30
## 19         1         1               32
## 20         1         1               33
## 21         1         1               34
## 22         1         1               36
## 23         1         1               37
## 24         1         1               39
## 25         1         1               41
## 26         1         1               50
## 27         1         1               51
## 28         1         1               54
## 29         1         1               55
## 30         1         1               56
## 31         1         1               58
## 32         1         1               60
## 33         1         1               62
## 34         1         1               64
## 35         1         1               65
## 36         1         1               68
## 37         1         1               69
## 38         1         1               71
## 39         1         1               74
## 40         1         1               75
## 41         1         1               82
## 42         1         1               83
## 43         1         1               84
## 44         1         1               86
## 45         1         1               88
## 46         1         1               89
## 47         1         1               91
## 48         1         1              101
## 49         1         1              105
## 50         1         1              108
## 51         1         1              110
## 52         1         1              115
## 53         1         1              118
## 54         1         1              120
## 55         1         1              122
## 56         1         1              123
## 57         1         1              124
## 58         1         1              126
## 59         1         1              127
## 60         1         1              129
## 61         1         1              131
## 62         1         1              138
## 63         1         1              139
## 64         1         1              140
## 65         1         1              142
## 66         1         1              144
## 67         1         1              146
## 68         1         1              148
## 69         1         1              149
## 70         1         1              151
## 71         1         1              155
## 72         1         1              160
## 73         1         1              162
## 74         1         1              163
## 75         1         1              165
## 76         1         1              167
## 77         1         1              168
## 78         1         1              169
## 79         1         1              170
## 80         1         1              171
## 81         1         1              175
## 82         1         1              176
## 83         1         1              177
## 84         1         1              178
## 85         1         1              181
## 86         1         1              184
## 87         1         1              185
## 88         1         1              187
## 89         1         1              189
## 90         1         1              190
## 91         1         1              192
## 92         1         1              194
## 93         1         1              195
## 94         2         2              200
## 95         2         2              202
## 96         2         2              203
## 97         2         2              205
## 98         2         2              206
## 99         2         2              208
## 100        2         2              210
## 101        2         2              211
## 102        2         2              214
## 103        2         2              216
## 104        2         2              218
## 105        2         2              219
## 106        2         2              221
## 107        2         2              223
## 108        2         2              225
## 109        2         2              227
## 110        2         2              229
## 111        2         2              231
## 112        2         2              234
## 113        2         2              235
## 114        2         2              236
## 115        2         2              238
## 116        2         2              239
## 117        2         2              240
## 118        2         2              242
## 119        2         2              245
## 120        2         2              246
## 121        2         2              249
## 122        2         2              251
## 123        2         2              253
## 124        2         2              254
## 125        2         2              256
## 126        2         2              258
## 127        2         2              263
## 128        2         2              268
## 129        2         2              269
## 130        2         2              271
## 131        2         2              274
## 132        2         2              276
## 133        2         2              277
## 134        2         2              280
## 135        2         2              283
## 136        2         2              284
## 137        2         2              288
## 138        2         2              292
## 139        2         2              293
## 140        2         2              297
## 141        2         2              299
## 142        2         2              304
## 143        2         2              306
## 144        2         2              308
## 145        2         2              312
## 146        2         2              313
## 147        2         2              317
## 148        2         2              320
## 149        2         2              323
## 150        2         2              325
## 151        2         2              327
## 152        2         2              330
## 153        2         2              335
## 154        2         2              337
## 155        2         2              339
## 156        2         2              344
## 157        2         2              346
## 158        2         2              347
## 159        2         2              349
## 160        2         2              350
## 161        2         2              352
## 162        2         2              354
## 163        2         2              355
## 164        2         2              357
## 165        2         2              358
## 166        2         2              364
## 167        2         2              366
## 168        2         2              368
## 169        2         2              370
## 170        2         2              371
## 171        2         2              373
## 172        2         2              375
## 173        2         2              376
## 174        2         2              378
## 175        2         2              381
## 176        2         2              384
## 177        2         2              385
## 178        2         2              388
## 179        2         2              390
## 180        2         2              391
## 181        2         2              393
## 182        2         2              395
## 183        2         2              397
## 184        2         2              398
## 185        2         2              407

Todo List —-

  1. Try to graph the x, y, and color base on success
  2. Number of Successes per Quarter

four 10 minute quarters 2 quarters per halves

sg <- single_game %>% 
  mutate(distance = sqrt((coordinate_x-25)^2 + coordinate_y^2)) %>% 
  filter(coordinate_x > 0 & coordinate_y > 0)


sg %>% 
  ggplot() + 
  geom_point(aes(x = coordinate_x, y = coordinate_y, color = distance))

sg <- sg %>% 
  mutate(sequence_number = as.integer(sequence_number))

sg_q1 <- sg %>% 
  filter(period_display_value == "1st Quarter")


sg %>% 
  ggplot() + 
  geom_point(aes(x = sequence_number, y = distance, shape = team_id, color = period_display_value)) +
  labs(title = "Development of distance through the 4 quarters")

Test —-

library(lubridate)
## Warning: package 'lubridate' was built under R version 4.0.2
## 
## Attaching package: 'lubridate'
## The following objects are masked from 'package:base':
## 
##     date, intersect, setdiff, union
sg
##     sequence_number period_display_value period_number home_score coordinate_x
## 1                 6          1st Quarter             1          0           27
## 2                 9          1st Quarter             1          0           37
## 3                13          1st Quarter             1          3           41
## 4                15          1st Quarter             1          3           35
## 5                17          1st Quarter             1          3           27
## 6                20          1st Quarter             1          6           10
## 7                21          1st Quarter             1          6            2
## 8                25          1st Quarter             1          6           23
## 9                27          1st Quarter             1          8           13
## 10               29          1st Quarter             1          8           22
## 11               34          1st Quarter             1         10           27
## 12               36          1st Quarter             1         10           25
## 13               37          1st Quarter             1         10           31
## 14               39          1st Quarter             1         10           16
## 15               42          1st Quarter             1         10           24
## 16               43          1st Quarter             1         10           39
## 17               45          1st Quarter             1         10           25
## 18               47          1st Quarter             1         13            6
## 19               49          1st Quarter             1         13           25
## 20               51          1st Quarter             1         15           26
## 21               53          1st Quarter             1         15           24
## 22               55          1st Quarter             1         15           29
## 23               57          1st Quarter             1         15           41
## 24               72          1st Quarter             1         18           37
## 25               74          1st Quarter             1         18           18
## 26               80          1st Quarter             1         20           47
## 27               82          1st Quarter             1         20           25
## 28              161          1st Quarter             1         20           26
## 29               84          1st Quarter             1         20           35
## 30               86          1st Quarter             1         23            8
## 31               88          1st Quarter             1         23           12
## 32               92          1st Quarter             1         23           25
## 33               94          1st Quarter             1         23           36
## 34               96          1st Quarter             1         23           26
## 35              113          1st Quarter             1         23           37
## 36              114          1st Quarter             1         26           29
## 37              116          1st Quarter             1         26           23
## 38              203          1st Quarter             1         26           36
## 39              118          1st Quarter             1         26           18
## 40              119          1st Quarter             1         26           34
## 41              121          1st Quarter             1         26           30
## 42              138          2nd Quarter             2         26           15
## 43              146          2nd Quarter             2         26           14
## 44              150          2nd Quarter             2         26           37
## 45              152          2nd Quarter             2         26           23
## 46              169          2nd Quarter             2         26           23
## 47              171          2nd Quarter             2         26           25
## 48              177          2nd Quarter             2         28           23
## 49              179          2nd Quarter             2         30           24
## 50              181          2nd Quarter             2         30           38
## 51              183          2nd Quarter             2         30           28
## 52              185          2nd Quarter             2         30           26
## 53              198          2nd Quarter             2         33           14
## 54              200          2nd Quarter             2         33           36
## 55              201          2nd Quarter             2         33           34
## 56              205          2nd Quarter             2         33           23
## 57              207          2nd Quarter             2         33           19
## 58              209          2nd Quarter             2         33           24
## 59              211          2nd Quarter             2         33           16
## 60              212          2nd Quarter             2         33           27
## 61              214          2nd Quarter             2         33            2
## 62              219          2nd Quarter             2         36            2
## 63              228          2nd Quarter             2         36           13
## 64              230          2nd Quarter             2         36           44
## 65              232          2nd Quarter             2         36           12
## 66              234          2nd Quarter             2         36           18
## 67              236          2nd Quarter             2         38           24
## 68              238          2nd Quarter             2         38           26
## 69              240          2nd Quarter             2         40           24
## 70              242          2nd Quarter             2         40           30
## 71              243          2nd Quarter             2         40           35
## 72              250          2nd Quarter             2         43            3
## 73              252          2nd Quarter             2         43           13
## 74              256          2nd Quarter             2         43           23
## 75              264          2nd Quarter             2         43           47
## 76              268          2nd Quarter             2         45           36
## 77              269          2nd Quarter             2         45           26
## 78              276          2nd Quarter             2         47           25
## 79              286          3rd Quarter             3         47           17
## 80              288          3rd Quarter             3         50           14
## 81              289          3rd Quarter             3         50           13
## 82              291          3rd Quarter             3         52           26
## 83              293          3rd Quarter             3         52           27
## 84              295          3rd Quarter             3         52           25
## 85              297          3rd Quarter             3         52           24
## 86              298          3rd Quarter             3         52           21
## 87              302          3rd Quarter             3         52           32
## 88              304          3rd Quarter             3         52           29
## 89              306          3rd Quarter             3         54           29
## 90              308          3rd Quarter             3         54           27
## 91              312          3rd Quarter             3         56           24
## 92              317          3rd Quarter             3         56           29
## 93              319          3rd Quarter             3         56           21
## 94              321          3rd Quarter             3         56           25
## 95              323          3rd Quarter             3         56           19
## 96              325          3rd Quarter             3         56           36
## 97              328          3rd Quarter             3         59            4
## 98              330          3rd Quarter             3         59           40
## 99              332          3rd Quarter             3         61           25
## 100             336          3rd Quarter             3         62           25
## 101             338          3rd Quarter             3         62           23
## 102             340          3rd Quarter             3         62           26
## 103             347          3rd Quarter             3         62           23
## 104             350          3rd Quarter             3         62            9
## 105             352          3rd Quarter             3         62           15
## 106             354          3rd Quarter             3         62           24
## 107             356          3rd Quarter             3         62           24
## 108             358          3rd Quarter             3         62           26
## 109             360          3rd Quarter             3         62           24
## 110             368          3rd Quarter             3         62           35
## 111             376          3rd Quarter             3         64           16
## 112             377          3rd Quarter             3         64           37
## 113             379          3rd Quarter             3         64           18
## 114             384          3rd Quarter             3         64           21
## 115             386          3rd Quarter             3         66           26
## 116             389          3rd Quarter             3         66           26
## 117             393          3rd Quarter             3         66           28
## 118             397          3rd Quarter             3         68           13
## 119             398          3rd Quarter             3         68           35
## 120             403          3rd Quarter             3         68           26
## 121             409          4th Quarter             4         70           27
## 122             410          4th Quarter             4         70           25
## 123             415          4th Quarter             4         70            2
## 124             417          4th Quarter             4         72           18
## 125             424          4th Quarter             4         72           19
## 126             426          4th Quarter             4         72           24
## 127             437          4th Quarter             4         73           28
## 128             444          4th Quarter             4         73           33
## 129             448          4th Quarter             4         75           18
## 130             453          4th Quarter             4         75           35
## 131             456          4th Quarter             4         75           10
## 132             462          4th Quarter             4         75           23
## 133             472          4th Quarter             4         75           25
## 134             474          4th Quarter             4         75           25
## 135             477          4th Quarter             4         75           26
## 136             488          4th Quarter             4         75           28
## 137             489          4th Quarter             4         77           21
## 138             493          4th Quarter             4         78           23
## 139             495          4th Quarter             4         78           25
## 140             498          4th Quarter             4         80           32
## 141             499          4th Quarter             4         80           24
## 142             501          4th Quarter             4         80           24
## 143             502          4th Quarter             4         80           11
## 144             520          4th Quarter             4         81           22
## 145             524          4th Quarter             4         81           26
## 146             526          4th Quarter             4         81           24
## 147             527          4th Quarter             4         81           14
## 148             529          4th Quarter             4         81           19
## 149             538          4th Quarter             4         82           38
## 150             542          4th Quarter             4         82           26
## 151             545          4th Quarter             4         82           25
## 152             546          4th Quarter             4         85           12
## 153             570          4th Quarter             4         90           13
##     coordinate_y scoring_play clock_display_value team_id type_id
## 1              2        FALSE                9:37       5     110
## 2             13        FALSE                9:16       9     131
## 3             20         TRUE                8:47       9      92
## 4              2        FALSE                8:23       5     130
## 5             25        FALSE                8:18       5      92
## 6             22         TRUE                8:05       9      92
## 7              8        FALSE                7:51       5      92
## 8              3         TRUE                7:31       5      95
## 9             13         TRUE                7:12       9      92
## 10            17         TRUE                6:58       5     131
## 11            16        FALSE                6:26       5      92
## 12             4         TRUE                6:22       5     114
## 13            19        FALSE                6:08       9     132
## 14             9         TRUE                6:02       5     131
## 15             2         TRUE                5:42       5     110
## 16            21        FALSE                5:28       9     131
## 17             3         TRUE                5:18       5      95
## 18            16         TRUE                5:04       9      92
## 19             7        FALSE                4:38       5      92
## 20             3         TRUE                4:30       9      95
## 21             3        FALSE                4:12       5     120
## 22            20        FALSE                4:00       9      92
## 23            18        FALSE                3:51       5      92
## 24            23         TRUE                3:41       9      92
## 25            19        FALSE                3:26       5      92
## 26             8        FALSE                3:06       5      92
## 27             3        FALSE                3:04       5      95
## 28             2        FALSE                3:03       5     125
## 29            23        FALSE                2:56       5      92
## 30            18         TRUE                2:49       9      92
## 31            22        FALSE                2:33       5      92
## 32             3         TRUE                2:27       5      95
## 33            18        FALSE                2:17       9      92
## 34             3        FALSE                2:03       5     110
## 35            22         TRUE                1:42       5      92
## 36            25         TRUE                1:30       9      92
## 37             3        FALSE                1:14       5     110
## 38            23        FALSE                1:07       9      92
## 39             5         TRUE                53.8       5      95
## 40            23        FALSE                39.8       9      92
## 41            19        FALSE                30.4       5      92
## 42            22         TRUE                9:27       5      92
## 43            16        FALSE                8:57       5      92
## 44            23        FALSE                8:38       9      92
## 45             3         TRUE                8:27       5     110
## 46             4        FALSE                8:02       5      95
## 47             3         TRUE                7:58       5      95
## 48             4        FALSE                7:22       5      93
## 49             4         TRUE                7:07       9     110
## 50            20        FALSE                6:55       5     132
## 51            16        FALSE                6:46       9     131
## 52             3        FALSE                6:39       5     110
## 53            22         TRUE                6:30       9      92
## 54            13         TRUE                6:17       5     131
## 55            25        FALSE                6:06       9      92
## 56             5        FALSE                5:52       5      92
## 57             9        FALSE                5:33       9     130
## 58             5        FALSE                5:29       9     114
## 59            15         TRUE                5:19       5      92
## 60            10        FALSE                5:03       9     130
## 61             4        FALSE                4:52       5      92
## 62             8         TRUE                4:35       9      92
## 63            13        FALSE                3:59       9     131
## 64            15         TRUE                3:50       5      92
## 65             9        FALSE                3:38       9      92
## 66            18        FALSE                3:31       5     131
## 67             3         TRUE                3:22       9     141
## 68             3         TRUE                3:02       5      95
## 69             4         TRUE                2:45       9     141
## 70             4         TRUE                2:29       5     124
## 71            23        FALSE                2:14       9      92
## 72             8         TRUE                1:50       9      92
## 73            21        FALSE                1:35       5      92
## 74             3         TRUE                1:30       5      95
## 75             8        FALSE                50.1       9      92
## 76            15         TRUE                42.2       9      92
## 77             2         TRUE                31.2       5      95
## 78             5        FALSE                 1.5       5      92
## 79            21        FALSE                9:44       9      92
## 80            22         TRUE                9:37       9     133
## 81            22        FALSE                9:18       5      92
## 82             2         TRUE                9:11       9      95
## 83             7        FALSE                8:55       5     144
## 84             3        FALSE                8:52       5      95
## 85             4         TRUE                8:49       5      95
## 86             5        FALSE                8:41       9      92
## 87             4        FALSE                8:26       9     145
## 88             4        FALSE                8:02       5     114
## 89             5         TRUE                7:52       9     110
## 90             3         TRUE                7:29       5      95
## 91             3         TRUE                7:14       9     141
## 92            25        FALSE                6:58       5     132
## 93             7        FALSE                6:52       5      95
## 94             4         TRUE                6:50       5      95
## 95             7        FALSE                6:39       9     144
## 96            14        FALSE                6:19       5     131
## 97            10         TRUE                6:00       9      92
## 98            13         TRUE                5:42       5      92
## 99             3         TRUE                5:26       9     128
## 100            8         TRUE                5:11       5     145
## 101            2        FALSE                4:48       9     110
## 102            4         TRUE                4:43       5     141
## 103            3        FALSE                4:28       9     110
## 104           19        FALSE                4:06       9      92
## 105           17        FALSE                3:53       5     131
## 106            3         TRUE                3:48       5     110
## 107           10        FALSE                3:34       9      92
## 108            3        FALSE                3:25       5     110
## 109            3        FALSE                3:20       5      95
## 110           22        FALSE                3:03       9      92
## 111            4         TRUE                2:30       9     131
## 112           23        FALSE                2:20       5      92
## 113            7        FALSE                2:14       9      92
## 114            6        FALSE                1:45       5     114
## 115            3         TRUE                1:36       9      95
## 116            3         TRUE                1:17       5     128
## 117           16        FALSE                1:02       5      92
## 118           14         TRUE                44.4       9      92
## 119           11        FALSE                30.0       5      92
## 120           21        FALSE                 2.3       5      92
## 121           15         TRUE                9:15       9      92
## 122            8        FALSE                8:49       5     144
## 123            8        FALSE                8:24       5      92
## 124            4         TRUE                8:14       9     137
## 125            7        FALSE                7:42       9     130
## 126            3         TRUE                7:33       5      95
## 127           18         TRUE                7:03       5     132
## 128           24        FALSE                6:29       9      92
## 129           10         TRUE                6:11       9     131
## 130           23        FALSE                5:48       5     132
## 131           19        FALSE                5:31       9      92
## 132            3        FALSE                5:06       9      95
## 133            3        FALSE                4:50       5      95
## 134            3         TRUE                4:48       5     125
## 135            4         TRUE                4:26       5     110
## 136           16         TRUE                4:10       5     131
## 137            3         TRUE                3:58       9     110
## 138            7        FALSE                3:38       5      95
## 139            3        FALSE                3:36       5      95
## 140           12         TRUE                3:20       9      92
## 141            8        FALSE                3:09       5     130
## 142            4         TRUE                3:05       5      95
## 143           21        FALSE                2:53       9      92
## 144            8         TRUE                2:22       5      95
## 145            3        FALSE                1:58       5     110
## 146            3         TRUE                1:56       5      95
## 147           14        FALSE                1:45       9      92
## 148           20         TRUE                1:32       5      92
## 149           22        FALSE                1:13       5      92
## 150            3        FALSE                58.5       9      95
## 151           21         TRUE                47.0       5      92
## 152           21         TRUE                39.7       9      92
## 153           22         TRUE                 0.4       9      92
##                           type_text away_score
## 1                Driving Layup Shot          0
## 2                  Pullup Jump Shot          0
## 3                         Jump Shot          0
## 4                Floating Jump Shot          0
## 5                         Jump Shot          0
## 6                         Jump Shot          0
## 7                         Jump Shot          0
## 8                        Layup Shot          2
## 9                         Jump Shot          2
## 10                 Pullup Jump Shot          4
## 11                        Jump Shot          4
## 12             Turnaround Jump Shot          6
## 13              Step Back Jump Shot          6
## 14                 Pullup Jump Shot          8
## 15               Driving Layup Shot         10
## 16                 Pullup Jump Shot         10
## 17                       Layup Shot         12
## 18                        Jump Shot         12
## 19                        Jump Shot         12
## 20                       Layup Shot         12
## 21             Turnaround Hook Shot         12
## 22                        Jump Shot         12
## 23                        Jump Shot         12
## 24                        Jump Shot         12
## 25                        Jump Shot         12
## 26                        Jump Shot         12
## 27                       Layup Shot         12
## 28               Layup Shot Putback         12
## 29                        Jump Shot         12
## 30                        Jump Shot         12
## 31                        Jump Shot         12
## 32                       Layup Shot         14
## 33                        Jump Shot         14
## 34               Driving Layup Shot         14
## 35                        Jump Shot         19
## 36                        Jump Shot         19
## 37               Driving Layup Shot         19
## 38                        Jump Shot         19
## 39                       Layup Shot         21
## 40                        Jump Shot         21
## 41                        Jump Shot         21
## 42                        Jump Shot         24
## 43                        Jump Shot         24
## 44                        Jump Shot         24
## 45               Driving Layup Shot         26
## 46                       Layup Shot         27
## 47                       Layup Shot         29
## 48                        Hook Shot         29
## 49               Driving Layup Shot         29
## 50              Step Back Jump Shot         29
## 51                 Pullup Jump Shot         29
## 52               Driving Layup Shot         29
## 53                        Jump Shot         29
## 54                 Pullup Jump Shot         31
## 55                        Jump Shot         31
## 56                        Jump Shot         31
## 57               Floating Jump Shot         31
## 58             Turnaround Jump Shot         31
## 59                        Jump Shot         33
## 60               Floating Jump Shot         33
## 61                        Jump Shot         33
## 62                        Jump Shot         33
## 63                 Pullup Jump Shot         33
## 64                        Jump Shot         36
## 65                        Jump Shot         36
## 66                 Pullup Jump Shot         36
## 67               Cutting Layup Shot         36
## 68                       Layup Shot         38
## 69               Cutting Layup Shot         38
## 70                Finger Roll Layup         40
## 71                        Jump Shot         40
## 72                        Jump Shot         42
## 73                        Jump Shot         42
## 74                       Layup Shot         44
## 75                        Jump Shot         45
## 76                        Jump Shot         45
## 77                       Layup Shot         47
## 78                        Jump Shot         47
## 79                        Jump Shot         47
## 80            Pullup Bank Jump Shot         47
## 81                        Jump Shot         47
## 82                       Layup Shot         47
## 83       Driving Floating Jump Shot         47
## 84                       Layup Shot         47
## 85                       Layup Shot         49
## 86                        Jump Shot         49
## 87  Driving Floating Bank Jump Shot         49
## 88             Turnaround Jump Shot         49
## 89               Driving Layup Shot         49
## 90                       Layup Shot         51
## 91               Cutting Layup Shot         51
## 92              Step Back Jump Shot         51
## 93                       Layup Shot         51
## 94                       Layup Shot         53
## 95       Driving Floating Jump Shot         53
## 96                 Pullup Jump Shot         53
## 97                        Jump Shot         53
## 98                        Jump Shot         55
## 99        Driving Finger Roll Layup         55
## 100 Driving Floating Bank Jump Shot         57
## 101              Driving Layup Shot         57
## 102              Cutting Layup Shot         59
## 103              Driving Layup Shot         60
## 104                       Jump Shot         60
## 105                Pullup Jump Shot         60
## 106              Driving Layup Shot         62
## 107                       Jump Shot         62
## 108              Driving Layup Shot         62
## 109                      Layup Shot         62
## 110                       Jump Shot         62
## 111                Pullup Jump Shot         62
## 112                       Jump Shot         62
## 113                       Jump Shot         62
## 114            Turnaround Jump Shot         62
## 115                      Layup Shot         62
## 116       Driving Finger Roll Layup         64
## 117                       Jump Shot         64
## 118                       Jump Shot         64
## 119                       Jump Shot         64
## 120                       Jump Shot         64
## 121                       Jump Shot         64
## 122      Driving Floating Jump Shot         64
## 123                       Jump Shot         64
## 124  Turnaround Fade Away Jump Shot         64
## 125              Floating Jump Shot         64
## 126                      Layup Shot         66
## 127             Step Back Jump Shot         68
## 128                       Jump Shot         68
## 129                Pullup Jump Shot         68
## 130             Step Back Jump Shot         68
## 131                       Jump Shot         68
## 132                      Layup Shot         68
## 133                      Layup Shot         68
## 134              Layup Shot Putback         70
## 135              Driving Layup Shot         72
## 136                Pullup Jump Shot         75
## 137              Driving Layup Shot         75
## 138                      Layup Shot         75
## 139                      Layup Shot         75
## 140                       Jump Shot         75
## 141              Floating Jump Shot         75
## 142                      Layup Shot         77
## 143                       Jump Shot         77
## 144                      Layup Shot         80
## 145              Driving Layup Shot         80
## 146                      Layup Shot         82
## 147                       Jump Shot         82
## 148                       Jump Shot         84
## 149                       Jump Shot         84
## 150                      Layup Shot         84
## 151                       Jump Shot         86
## 152                       Jump Shot         86
## 153                       Jump Shot         87
##                                                                              text
## 1                                          Danielle Robinson misses driving layup
## 2                                 Sabrina Ionescu misses 18-foot pullup jump shot
## 3     Michaela Onyenwere makes 26-foot three point jumper (Sami Whitcomb assists)
## 4                                   Kelsey Mitchell misses 10-foot two point shot
## 5                              Victoria Vivians misses 25-foot three point jumper
## 6            Sami Whitcomb makes 27-foot three point jumper (Kylee Shook assists)
## 7                               Kelsey Mitchell misses 24-foot three point jumper
## 8                         Kelsey Mitchell makes layup (Danielle Robinson assists)
## 9                      Kylee Shook makes 17-foot jumper (Sabrina Ionescu assists)
## 10                                 Kelsey Mitchell makes 18-foot pullup jump shot
## 11                                          Kelsey Mitchell misses 16-foot jumper
## 12                                            Teaira McCowan makes two point shot
## 13                           Michaela Onyenwere misses 20-foot step back jumpshot
## 14                               Danielle Robinson makes 13-foot pullup jump shot
## 15                                          Danielle Robinson makes driving layup
## 16                    Sabrina Ionescu misses 25-foot three point pullup jump shot
## 17                         Teaira McCowan makes layup (Danielle Robinson assists)
## 18       Sami Whitcomb makes 24-foot three point jumper (Sabrina Ionescu assists)
## 19                                                Danielle Robinson misses jumper
## 20                         Michaela Onyenwere makes layup (Sami Whitcomb assists)
## 21                                    Teaira McCowan misses 3-foot two point shot
## 22                                           Betnijah Laney misses 20-foot jumper
## 23                              Kelsey Mitchell misses 24-foot three point jumper
## 24   Betnijah Laney makes 26-foot three point jumper (Michaela Onyenwere assists)
## 25                                          Jessica Breland misses 20-foot jumper
## 26                             Tiffany Mitchell misses 23-foot three point jumper
## 27                                                    Teaira McCowan misses layup
## 28                   Jazmine Jones blocks Teaira McCowan 's 2-foot two point shot
## 29                              Kelsey Mitchell misses 25-foot three point jumper
## 30      Betnijah Laney makes 24-foot three point jumper (Sabrina Ionescu assists)
## 31                                Lindsay Allen misses 25-foot three point jumper
## 32                           Teaira McCowan makes layup (Kelsey Mitchell assists)
## 33                                           Betnijah Laney misses 21-foot jumper
## 34                                          Tiffany Mitchell misses driving layup
## 35    Jantel Lavender makes 25-foot three point jumper (Tiffany Mitchell assists)
## 36        Betnijah Laney makes 25-foot three point jumper (Joyner Holmes assists)
## 37                                          Tiffany Mitchell misses driving layup
## 38                               Betnijah Laney misses 26-foot three point jumper
## 39                                                   Kysre Gondrezick makes layup
## 40                           Michaela Onyenwere misses 25-foot three point jumper
## 41                                          Jantel Lavender misses 19-foot jumper
## 42      Kysre Gondrezick makes 24-foot three point jumper (Lindsay Allen assists)
## 43                                          Jantel Lavender misses 19-foot jumper
## 44                                Sami Whitcomb misses 26-foot three point jumper
## 45                                              Lindsay Allen makes driving layup
## 46                                                   Jantel Lavender misses layup
## 47                                                    Jantel Lavender makes layup
## 48                                        Jantel Lavender misses 5-foot hook shot
## 49                   Betnijah Laney makes driving layup (Sabrina Ionescu assists)
## 50                             Tiffany Mitchell misses 24-foot step back jumpshot
## 51                                 Betnijah Laney misses 16-foot pullup jump shot
## 52                                          Tiffany Mitchell misses driving layup
## 53      Sabrina Ionescu makes 25-foot three point jumper (Betnijah Laney assists)
## 54                                Victoria Vivians makes 17-foot pullup jump shot
## 55                              Sabrina Ionescu misses 26-foot three point jumper
## 56                                             Chelsey Perry misses 6-foot jumper
## 57                                  Sabrina Ionescu misses 11-foot two point shot
## 58                                Michaela Onyenwere misses 6-foot two point shot
## 59                                          Victoria Vivians makes 18-foot jumper
## 60                                    Sami Whitcomb misses 11-foot two point shot
## 61                             Victoria Vivians misses 23-foot three point jumper
## 62      Betnijah Laney makes 24-foot three point jumper (Sabrina Ionescu assists)
## 63                                Sabrina Ionescu misses 18-foot pullup jump shot
## 64   Kelsey Mitchell makes 24-foot three point jumper (Danielle Robinson assists)
## 65                                              Kylee Shook misses 16-foot jumper
## 66                              Danielle Robinson misses 19-foot pullup jump shot
## 67                        Kylee Shook makes 4-foot layup (Betnijah Laney assists)
## 68                           Teaira McCowan makes layup (Kelsey Mitchell assists)
## 69                    Betnijah Laney makes 4-foot layup (Sabrina Ionescu assists)
## 70                                        Jessica Breland makes finger roll layup
## 71                                Sami Whitcomb misses 25-foot three point jumper
## 72  Michaela Onyenwere makes 24-foot three point jumper (Sabrina Ionescu assists)
## 73                             Victoria Vivians misses 24-foot three point jumper
## 74                           Teaira McCowan makes layup (Jessica Breland assists)
## 75        Jessica Breland blocks Michaela Onyenwere 's 23-foot three point jumper
## 76                                            Betnijah Laney makes 18-foot jumper
## 77                                                    Jessica Breland makes layup
## 78                                                   Teaira McCowan misses jumper
## 79                                           Betnijah Laney misses 22-foot jumper
## 80                                 Sabrina Ionescu makes 24-foot three point shot
## 81                              Kelsey Mitchell misses 25-foot three point jumper
## 82                       Michaela Onyenwere makes layup (Sabrina Ionescu assists)
## 83                             Victoria Vivians misses driving floating jump shot
## 84                                                    Teaira McCowan misses layup
## 85                                                    Jantel Lavender makes layup
## 86                                               Kylee Shook misses 6-foot jumper
## 87                                          Sabrina Ionescu misses two point shot
## 88                                    Teaira McCowan misses 5-foot two point shot
## 89                   Betnijah Laney makes driving layup (Sabrina Ionescu assists)
## 90                         Teaira McCowan makes layup (Danielle Robinson assists)
## 91                       Kylee Shook makes 3-foot layup (Sabrina Ionescu assists)
## 92                              Kelsey Mitchell misses 25-foot step back jumpshot
## 93                                                   Jantel Lavender misses layup
## 94                                                     Teaira McCowan makes layup
## 95                              Sabrina Ionescu misses driving floating jump shot
## 96                               Tiffany Mitchell misses 18-foot pullup jump shot
## 97      Michaela Onyenwere makes 23-foot three point jumper (Kylee Shook assists)
## 98                 Kelsey Mitchell makes 19-foot jumper (Jantel Lavender assists)
## 99                                        Michaela Onyenwere makes two point shot
## 100                                          Kelsey Mitchell makes two point shot
## 101                                           Betnijah Laney misses driving layup
## 102                         Tiffany Mitchell makes layup (Teaira McCowan assists)
## 103                                       Michaela Onyenwere misses driving layup
## 104                                 Kylee Shook misses 25-foot three point jumper
## 105                               Kelsey Mitchell misses 19-foot pullup jump shot
## 106               Danielle Robinson makes driving layup (Jantel Lavender assists)
## 107                                             Kylee Shook misses 10-foot jumper
## 108                                         Tiffany Mitchell misses driving layup
## 109                                                  Jantel Lavender misses layup
## 110                          Michaela Onyenwere misses 25-foot three point jumper
## 111                                Sabrina Ionescu makes 10-foot pullup jump shot
## 112                             Kelsey Mitchell misses 26-foot three point jumper
## 113                                          Betnijah Laney misses 10-foot jumper
## 114                                  Jessica Breland misses 8-foot two point shot
## 115                           Reshanda Gray makes layup (Sabrina Ionescu assists)
## 116                                         Tiffany Mitchell makes two point shot
## 117                                        Kysre Gondrezick misses 16-foot jumper
## 118                                           Betnijah Laney makes 18-foot jumper
## 119                                         Jessica Breland misses 15-foot jumper
## 120                                        Kysre Gondrezick misses 21-foot jumper
## 121                                          Sabrina Ionescu makes 15-foot jumper
## 122                           Danielle Robinson misses driving floating jump shot
## 123                           Danielle Robinson misses 24-foot three point jumper
## 124                                    Betnijah Laney makes 8-foot two point shot
## 125                                  Sabrina Ionescu misses 9-foot two point shot
## 126                        Jessica Breland makes layup (Kysre Gondrezick assists)
## 127                              Kelsey Mitchell makes 18-foot step back jumpshot
## 128                               Jazmine Jones misses 25-foot three point jumper
## 129                                  DiDi Richards makes 12-foot pullup jump shot
## 130                            Kysre Gondrezick misses 25-foot step back jumpshot
## 131                             Sabrina Ionescu misses 24-foot three point jumper
## 132                           Teaira McCowan blocks Reshanda Gray 's 3-foot layup
## 133                                                  Jantel Lavender misses layup
## 134                                           Teaira McCowan makes two point shot
## 135                                           Kelsey Mitchell makes driving layup
## 136                                Kelsey Mitchell makes 16-foot pullup jump shot
## 137                                           Sabrina Ionescu makes driving layup
## 138                                                   Teaira McCowan misses layup
## 139                                                  Jantel Lavender misses layup
## 140                                           Betnijah Laney makes 14-foot jumper
## 141                 Kylee Shook blocks Danielle Robinson 's 8-foot two point shot
## 142                                                    Teaira McCowan makes layup
## 143                             Sabrina Ionescu misses 25-foot three point jumper
## 144                          Teaira McCowan makes layup (Jantel Lavender assists)
## 145                                        Danielle Robinson misses driving layup
## 146                                                   Jantel Lavender makes layup
## 147                                         Sabrina Ionescu misses 18-foot jumper
## 148                                          Kelsey Mitchell makes 20-foot jumper
## 149                            Tiffany Mitchell misses 25-foot three point jumper
## 150                             Teaira McCowan blocks Kylee Shook 's 3-foot layup
## 151                                                  Kelsey Mitchell makes jumper
## 152                              Sabrina Ionescu makes 25-foot three point jumper
## 153        Sabrina Ionescu makes 25-foot three point jumper (Kylee Shook assists)
##     score_value participants_0_athlete_id participants_1_athlete_id   game_id
## 1             0                      1014                      <NA> 401320565
## 2             0                   4066533                      <NA> 401320565
## 3             3                   4282173                       887 401320565
## 4             0                   3142191                      <NA> 401320565
## 5             0                   3142948                      <NA> 401320565
## 6             3                       887                   4065849 401320565
## 7             0                   3142191                      <NA> 401320565
## 8             2                   3142191                      1014 401320565
## 9             2                   4065849                   4066533 401320565
## 10            2                   3142191                      <NA> 401320565
## 11            0                   3142191                      <NA> 401320565
## 12            2                   3913903                      <NA> 401320565
## 13            0                   4282173                      <NA> 401320565
## 14            2                      1014                      <NA> 401320565
## 15            2                      1014                      <NA> 401320565
## 16            0                   4066533                      <NA> 401320565
## 17            2                   3913903                      1014 401320565
## 18            3                       887                   4066533 401320565
## 19            0                      1014                      <NA> 401320565
## 20            2                   4282173                       887 401320565
## 21            0                   3913903                      <NA> 401320565
## 22            0                   2593770                      <NA> 401320565
## 23            0                   3142191                      <NA> 401320565
## 24            3                   2593770                   4282173 401320565
## 25            0                      1002                      <NA> 401320565
## 26            0                   2984741                      <NA> 401320565
## 27            0                   3913903                      <NA> 401320565
## 28            0                   3913903                   4065850 401320565
## 29            0                   3142191                      <NA> 401320565
## 30            3                   2593770                   4066533 401320565
## 31            0                   3058908                      <NA> 401320565
## 32            2                   3913903                   3142191 401320565
## 33            0                   2593770                      <NA> 401320565
## 34            0                   2984741                      <NA> 401320565
## 35            3                      1013                   2984741 401320565
## 36            3                   2593770                   4068161 401320565
## 37            0                   2984741                      <NA> 401320565
## 38            0                   2593770                      <NA> 401320565
## 39            2                   4065820                      <NA> 401320565
## 40            0                   4282173                      <NA> 401320565
## 41            0                      1013                      <NA> 401320565
## 42            3                   4065820                   3058908 401320565
## 43            0                      1013                      <NA> 401320565
## 44            0                       887                      <NA> 401320565
## 45            2                   3058908                      <NA> 401320565
## 46            0                      1013                      <NA> 401320565
## 47            2                      1013                      <NA> 401320565
## 48            0                      1013                      <NA> 401320565
## 49            2                   2593770                   4066533 401320565
## 50            0                   2984741                      <NA> 401320565
## 51            0                   2593770                      <NA> 401320565
## 52            0                   2984741                      <NA> 401320565
## 53            3                   4066533                   2593770 401320565
## 54            2                   3142948                      <NA> 401320565
## 55            0                   4066533                      <NA> 401320565
## 56            0                   4282471                      <NA> 401320565
## 57            0                   4066533                      <NA> 401320565
## 58            0                   4282173                      <NA> 401320565
## 59            2                   3142948                      <NA> 401320565
## 60            0                       887                      <NA> 401320565
## 61            0                   3142948                      <NA> 401320565
## 62            3                   2593770                   4066533 401320565
## 63            0                   4066533                      <NA> 401320565
## 64            3                   3142191                      1014 401320565
## 65            0                   4065849                      <NA> 401320565
## 66            0                      1014                      <NA> 401320565
## 67            2                   4065849                   2593770 401320565
## 68            2                   3913903                   3142191 401320565
## 69            2                   2593770                   4066533 401320565
## 70            2                      1002                      <NA> 401320565
## 71            0                       887                      <NA> 401320565
## 72            3                   4282173                   4066533 401320565
## 73            0                   3142948                      <NA> 401320565
## 74            2                   3913903                      1002 401320565
## 75            0                   4282173                      1002 401320565
## 76            2                   2593770                      <NA> 401320565
## 77            2                      1002                      <NA> 401320565
## 78            0                   3913903                      <NA> 401320565
## 79            0                   2593770                      <NA> 401320565
## 80            3                   4066533                      <NA> 401320565
## 81            0                   3142191                      <NA> 401320565
## 82            2                   4282173                   4066533 401320565
## 83            0                   3142948                      <NA> 401320565
## 84            0                   3913903                      <NA> 401320565
## 85            2                      1013                      <NA> 401320565
## 86            0                   4065849                      <NA> 401320565
## 87            0                   4066533                      <NA> 401320565
## 88            0                   3913903                      <NA> 401320565
## 89            2                   2593770                   4066533 401320565
## 90            2                   3913903                      1014 401320565
## 91            2                   4065849                   4066533 401320565
## 92            0                   3142191                      <NA> 401320565
## 93            0                      1013                      <NA> 401320565
## 94            2                   3913903                      <NA> 401320565
## 95            0                   4066533                      <NA> 401320565
## 96            0                   2984741                      <NA> 401320565
## 97            3                   4282173                   4065849 401320565
## 98            2                   3142191                      1013 401320565
## 99            2                   4282173                      <NA> 401320565
## 100           2                   3142191                      <NA> 401320565
## 101           0                   2593770                      <NA> 401320565
## 102           2                   2984741                   3913903 401320565
## 103           0                   4282173                      <NA> 401320565
## 104           0                   4065849                      <NA> 401320565
## 105           0                   3142191                      <NA> 401320565
## 106           2                      1014                      1013 401320565
## 107           0                   4065849                      <NA> 401320565
## 108           0                   2984741                      <NA> 401320565
## 109           0                      1013                      <NA> 401320565
## 110           0                   4282173                      <NA> 401320565
## 111           2                   4066533                      <NA> 401320565
## 112           0                   3142191                      <NA> 401320565
## 113           0                   2593770                      <NA> 401320565
## 114           0                      1002                      <NA> 401320565
## 115           2                   2566211                   4066533 401320565
## 116           2                   2984741                      <NA> 401320565
## 117           0                   4065820                      <NA> 401320565
## 118           2                   2593770                      <NA> 401320565
## 119           0                      1002                      <NA> 401320565
## 120           0                   4065820                      <NA> 401320565
## 121           2                   4066533                      <NA> 401320565
## 122           0                      1014                      <NA> 401320565
## 123           0                      1014                      <NA> 401320565
## 124           2                   2593770                      <NA> 401320565
## 125           0                   4066533                      <NA> 401320565
## 126           2                      1002                   4065820 401320565
## 127           2                   3142191                      <NA> 401320565
## 128           0                   4065850                      <NA> 401320565
## 129           2                   4281253                      <NA> 401320565
## 130           0                   4065820                      <NA> 401320565
## 131           0                   4066533                      <NA> 401320565
## 132           0                   2566211                   3913903 401320565
## 133           0                      1013                      <NA> 401320565
## 134           2                   3913903                      <NA> 401320565
## 135           2                   3142191                      <NA> 401320565
## 136           2                   3142191                      <NA> 401320565
## 137           2                   4066533                      <NA> 401320565
## 138           0                   3913903                      <NA> 401320565
## 139           0                      1013                      <NA> 401320565
## 140           2                   2593770                      <NA> 401320565
## 141           0                      1014                   4065849 401320565
## 142           2                   3913903                      <NA> 401320565
## 143           0                   4066533                      <NA> 401320565
## 144           2                   3913903                      1013 401320565
## 145           0                      1014                      <NA> 401320565
## 146           2                      1013                      <NA> 401320565
## 147           0                   4066533                      <NA> 401320565
## 148           2                   3142191                      <NA> 401320565
## 149           0                   2984741                      <NA> 401320565
## 150           0                   4065849                   3913903 401320565
## 151           2                   3142191                      <NA> 401320565
## 152           3                   4066533                      <NA> 401320565
## 153           3                   4066533                   4065849 401320565
##     away_team_id away_team_name away_team_mascot away_team_abbrev
## 1              5        Indiana            Fever              IND
## 2              5        Indiana            Fever              IND
## 3              5        Indiana            Fever              IND
## 4              5        Indiana            Fever              IND
## 5              5        Indiana            Fever              IND
## 6              5        Indiana            Fever              IND
## 7              5        Indiana            Fever              IND
## 8              5        Indiana            Fever              IND
## 9              5        Indiana            Fever              IND
## 10             5        Indiana            Fever              IND
## 11             5        Indiana            Fever              IND
## 12             5        Indiana            Fever              IND
## 13             5        Indiana            Fever              IND
## 14             5        Indiana            Fever              IND
## 15             5        Indiana            Fever              IND
## 16             5        Indiana            Fever              IND
## 17             5        Indiana            Fever              IND
## 18             5        Indiana            Fever              IND
## 19             5        Indiana            Fever              IND
## 20             5        Indiana            Fever              IND
## 21             5        Indiana            Fever              IND
## 22             5        Indiana            Fever              IND
## 23             5        Indiana            Fever              IND
## 24             5        Indiana            Fever              IND
## 25             5        Indiana            Fever              IND
## 26             5        Indiana            Fever              IND
## 27             5        Indiana            Fever              IND
## 28             5        Indiana            Fever              IND
## 29             5        Indiana            Fever              IND
## 30             5        Indiana            Fever              IND
## 31             5        Indiana            Fever              IND
## 32             5        Indiana            Fever              IND
## 33             5        Indiana            Fever              IND
## 34             5        Indiana            Fever              IND
## 35             5        Indiana            Fever              IND
## 36             5        Indiana            Fever              IND
## 37             5        Indiana            Fever              IND
## 38             5        Indiana            Fever              IND
## 39             5        Indiana            Fever              IND
## 40             5        Indiana            Fever              IND
## 41             5        Indiana            Fever              IND
## 42             5        Indiana            Fever              IND
## 43             5        Indiana            Fever              IND
## 44             5        Indiana            Fever              IND
## 45             5        Indiana            Fever              IND
## 46             5        Indiana            Fever              IND
## 47             5        Indiana            Fever              IND
## 48             5        Indiana            Fever              IND
## 49             5        Indiana            Fever              IND
## 50             5        Indiana            Fever              IND
## 51             5        Indiana            Fever              IND
## 52             5        Indiana            Fever              IND
## 53             5        Indiana            Fever              IND
## 54             5        Indiana            Fever              IND
## 55             5        Indiana            Fever              IND
## 56             5        Indiana            Fever              IND
## 57             5        Indiana            Fever              IND
## 58             5        Indiana            Fever              IND
## 59             5        Indiana            Fever              IND
## 60             5        Indiana            Fever              IND
## 61             5        Indiana            Fever              IND
## 62             5        Indiana            Fever              IND
## 63             5        Indiana            Fever              IND
## 64             5        Indiana            Fever              IND
## 65             5        Indiana            Fever              IND
## 66             5        Indiana            Fever              IND
## 67             5        Indiana            Fever              IND
## 68             5        Indiana            Fever              IND
## 69             5        Indiana            Fever              IND
## 70             5        Indiana            Fever              IND
## 71             5        Indiana            Fever              IND
## 72             5        Indiana            Fever              IND
## 73             5        Indiana            Fever              IND
## 74             5        Indiana            Fever              IND
## 75             5        Indiana            Fever              IND
## 76             5        Indiana            Fever              IND
## 77             5        Indiana            Fever              IND
## 78             5        Indiana            Fever              IND
## 79             5        Indiana            Fever              IND
## 80             5        Indiana            Fever              IND
## 81             5        Indiana            Fever              IND
## 82             5        Indiana            Fever              IND
## 83             5        Indiana            Fever              IND
## 84             5        Indiana            Fever              IND
## 85             5        Indiana            Fever              IND
## 86             5        Indiana            Fever              IND
## 87             5        Indiana            Fever              IND
## 88             5        Indiana            Fever              IND
## 89             5        Indiana            Fever              IND
## 90             5        Indiana            Fever              IND
## 91             5        Indiana            Fever              IND
## 92             5        Indiana            Fever              IND
## 93             5        Indiana            Fever              IND
## 94             5        Indiana            Fever              IND
## 95             5        Indiana            Fever              IND
## 96             5        Indiana            Fever              IND
## 97             5        Indiana            Fever              IND
## 98             5        Indiana            Fever              IND
## 99             5        Indiana            Fever              IND
## 100            5        Indiana            Fever              IND
## 101            5        Indiana            Fever              IND
## 102            5        Indiana            Fever              IND
## 103            5        Indiana            Fever              IND
## 104            5        Indiana            Fever              IND
## 105            5        Indiana            Fever              IND
## 106            5        Indiana            Fever              IND
## 107            5        Indiana            Fever              IND
## 108            5        Indiana            Fever              IND
## 109            5        Indiana            Fever              IND
## 110            5        Indiana            Fever              IND
## 111            5        Indiana            Fever              IND
## 112            5        Indiana            Fever              IND
## 113            5        Indiana            Fever              IND
## 114            5        Indiana            Fever              IND
## 115            5        Indiana            Fever              IND
## 116            5        Indiana            Fever              IND
## 117            5        Indiana            Fever              IND
## 118            5        Indiana            Fever              IND
## 119            5        Indiana            Fever              IND
## 120            5        Indiana            Fever              IND
## 121            5        Indiana            Fever              IND
## 122            5        Indiana            Fever              IND
## 123            5        Indiana            Fever              IND
## 124            5        Indiana            Fever              IND
## 125            5        Indiana            Fever              IND
## 126            5        Indiana            Fever              IND
## 127            5        Indiana            Fever              IND
## 128            5        Indiana            Fever              IND
## 129            5        Indiana            Fever              IND
## 130            5        Indiana            Fever              IND
## 131            5        Indiana            Fever              IND
## 132            5        Indiana            Fever              IND
## 133            5        Indiana            Fever              IND
## 134            5        Indiana            Fever              IND
## 135            5        Indiana            Fever              IND
## 136            5        Indiana            Fever              IND
## 137            5        Indiana            Fever              IND
## 138            5        Indiana            Fever              IND
## 139            5        Indiana            Fever              IND
## 140            5        Indiana            Fever              IND
## 141            5        Indiana            Fever              IND
## 142            5        Indiana            Fever              IND
## 143            5        Indiana            Fever              IND
## 144            5        Indiana            Fever              IND
## 145            5        Indiana            Fever              IND
## 146            5        Indiana            Fever              IND
## 147            5        Indiana            Fever              IND
## 148            5        Indiana            Fever              IND
## 149            5        Indiana            Fever              IND
## 150            5        Indiana            Fever              IND
## 151            5        Indiana            Fever              IND
## 152            5        Indiana            Fever              IND
## 153            5        Indiana            Fever              IND
##     away_team_name_alt home_team_id home_team_name home_team_mascot
## 1              Indiana            9       New York          Liberty
## 2              Indiana            9       New York          Liberty
## 3              Indiana            9       New York          Liberty
## 4              Indiana            9       New York          Liberty
## 5              Indiana            9       New York          Liberty
## 6              Indiana            9       New York          Liberty
## 7              Indiana            9       New York          Liberty
## 8              Indiana            9       New York          Liberty
## 9              Indiana            9       New York          Liberty
## 10             Indiana            9       New York          Liberty
## 11             Indiana            9       New York          Liberty
## 12             Indiana            9       New York          Liberty
## 13             Indiana            9       New York          Liberty
## 14             Indiana            9       New York          Liberty
## 15             Indiana            9       New York          Liberty
## 16             Indiana            9       New York          Liberty
## 17             Indiana            9       New York          Liberty
## 18             Indiana            9       New York          Liberty
## 19             Indiana            9       New York          Liberty
## 20             Indiana            9       New York          Liberty
## 21             Indiana            9       New York          Liberty
## 22             Indiana            9       New York          Liberty
## 23             Indiana            9       New York          Liberty
## 24             Indiana            9       New York          Liberty
## 25             Indiana            9       New York          Liberty
## 26             Indiana            9       New York          Liberty
## 27             Indiana            9       New York          Liberty
## 28             Indiana            9       New York          Liberty
## 29             Indiana            9       New York          Liberty
## 30             Indiana            9       New York          Liberty
## 31             Indiana            9       New York          Liberty
## 32             Indiana            9       New York          Liberty
## 33             Indiana            9       New York          Liberty
## 34             Indiana            9       New York          Liberty
## 35             Indiana            9       New York          Liberty
## 36             Indiana            9       New York          Liberty
## 37             Indiana            9       New York          Liberty
## 38             Indiana            9       New York          Liberty
## 39             Indiana            9       New York          Liberty
## 40             Indiana            9       New York          Liberty
## 41             Indiana            9       New York          Liberty
## 42             Indiana            9       New York          Liberty
## 43             Indiana            9       New York          Liberty
## 44             Indiana            9       New York          Liberty
## 45             Indiana            9       New York          Liberty
## 46             Indiana            9       New York          Liberty
## 47             Indiana            9       New York          Liberty
## 48             Indiana            9       New York          Liberty
## 49             Indiana            9       New York          Liberty
## 50             Indiana            9       New York          Liberty
## 51             Indiana            9       New York          Liberty
## 52             Indiana            9       New York          Liberty
## 53             Indiana            9       New York          Liberty
## 54             Indiana            9       New York          Liberty
## 55             Indiana            9       New York          Liberty
## 56             Indiana            9       New York          Liberty
## 57             Indiana            9       New York          Liberty
## 58             Indiana            9       New York          Liberty
## 59             Indiana            9       New York          Liberty
## 60             Indiana            9       New York          Liberty
## 61             Indiana            9       New York          Liberty
## 62             Indiana            9       New York          Liberty
## 63             Indiana            9       New York          Liberty
## 64             Indiana            9       New York          Liberty
## 65             Indiana            9       New York          Liberty
## 66             Indiana            9       New York          Liberty
## 67             Indiana            9       New York          Liberty
## 68             Indiana            9       New York          Liberty
## 69             Indiana            9       New York          Liberty
## 70             Indiana            9       New York          Liberty
## 71             Indiana            9       New York          Liberty
## 72             Indiana            9       New York          Liberty
## 73             Indiana            9       New York          Liberty
## 74             Indiana            9       New York          Liberty
## 75             Indiana            9       New York          Liberty
## 76             Indiana            9       New York          Liberty
## 77             Indiana            9       New York          Liberty
## 78             Indiana            9       New York          Liberty
## 79             Indiana            9       New York          Liberty
## 80             Indiana            9       New York          Liberty
## 81             Indiana            9       New York          Liberty
## 82             Indiana            9       New York          Liberty
## 83             Indiana            9       New York          Liberty
## 84             Indiana            9       New York          Liberty
## 85             Indiana            9       New York          Liberty
## 86             Indiana            9       New York          Liberty
## 87             Indiana            9       New York          Liberty
## 88             Indiana            9       New York          Liberty
## 89             Indiana            9       New York          Liberty
## 90             Indiana            9       New York          Liberty
## 91             Indiana            9       New York          Liberty
## 92             Indiana            9       New York          Liberty
## 93             Indiana            9       New York          Liberty
## 94             Indiana            9       New York          Liberty
## 95             Indiana            9       New York          Liberty
## 96             Indiana            9       New York          Liberty
## 97             Indiana            9       New York          Liberty
## 98             Indiana            9       New York          Liberty
## 99             Indiana            9       New York          Liberty
## 100            Indiana            9       New York          Liberty
## 101            Indiana            9       New York          Liberty
## 102            Indiana            9       New York          Liberty
## 103            Indiana            9       New York          Liberty
## 104            Indiana            9       New York          Liberty
## 105            Indiana            9       New York          Liberty
## 106            Indiana            9       New York          Liberty
## 107            Indiana            9       New York          Liberty
## 108            Indiana            9       New York          Liberty
## 109            Indiana            9       New York          Liberty
## 110            Indiana            9       New York          Liberty
## 111            Indiana            9       New York          Liberty
## 112            Indiana            9       New York          Liberty
## 113            Indiana            9       New York          Liberty
## 114            Indiana            9       New York          Liberty
## 115            Indiana            9       New York          Liberty
## 116            Indiana            9       New York          Liberty
## 117            Indiana            9       New York          Liberty
## 118            Indiana            9       New York          Liberty
## 119            Indiana            9       New York          Liberty
## 120            Indiana            9       New York          Liberty
## 121            Indiana            9       New York          Liberty
## 122            Indiana            9       New York          Liberty
## 123            Indiana            9       New York          Liberty
## 124            Indiana            9       New York          Liberty
## 125            Indiana            9       New York          Liberty
## 126            Indiana            9       New York          Liberty
## 127            Indiana            9       New York          Liberty
## 128            Indiana            9       New York          Liberty
## 129            Indiana            9       New York          Liberty
## 130            Indiana            9       New York          Liberty
## 131            Indiana            9       New York          Liberty
## 132            Indiana            9       New York          Liberty
## 133            Indiana            9       New York          Liberty
## 134            Indiana            9       New York          Liberty
## 135            Indiana            9       New York          Liberty
## 136            Indiana            9       New York          Liberty
## 137            Indiana            9       New York          Liberty
## 138            Indiana            9       New York          Liberty
## 139            Indiana            9       New York          Liberty
## 140            Indiana            9       New York          Liberty
## 141            Indiana            9       New York          Liberty
## 142            Indiana            9       New York          Liberty
## 143            Indiana            9       New York          Liberty
## 144            Indiana            9       New York          Liberty
## 145            Indiana            9       New York          Liberty
## 146            Indiana            9       New York          Liberty
## 147            Indiana            9       New York          Liberty
## 148            Indiana            9       New York          Liberty
## 149            Indiana            9       New York          Liberty
## 150            Indiana            9       New York          Liberty
## 151            Indiana            9       New York          Liberty
## 152            Indiana            9       New York          Liberty
## 153            Indiana            9       New York          Liberty
##     home_team_abbrev home_team_name_alt clock_minutes clock_seconds half
## 1                 NY           New York             9            37    1
## 2                 NY           New York             9            16    1
## 3                 NY           New York             8            47    1
## 4                 NY           New York             8            23    1
## 5                 NY           New York             8            18    1
## 6                 NY           New York             8            05    1
## 7                 NY           New York             7            51    1
## 8                 NY           New York             7            31    1
## 9                 NY           New York             7            12    1
## 10                NY           New York             6            58    1
## 11                NY           New York             6            26    1
## 12                NY           New York             6            22    1
## 13                NY           New York             6            08    1
## 14                NY           New York             6            02    1
## 15                NY           New York             5            42    1
## 16                NY           New York             5            28    1
## 17                NY           New York             5            18    1
## 18                NY           New York             5            04    1
## 19                NY           New York             4            38    1
## 20                NY           New York             4            30    1
## 21                NY           New York             4            12    1
## 22                NY           New York             4            00    1
## 23                NY           New York             3            51    1
## 24                NY           New York             3            41    1
## 25                NY           New York             3            26    1
## 26                NY           New York             3            06    1
## 27                NY           New York             3            04    1
## 28                NY           New York             3            03    1
## 29                NY           New York             2            56    1
## 30                NY           New York             2            49    1
## 31                NY           New York             2            33    1
## 32                NY           New York             2            27    1
## 33                NY           New York             2            17    1
## 34                NY           New York             2            03    1
## 35                NY           New York             1            42    1
## 36                NY           New York             1            30    1
## 37                NY           New York             1            14    1
## 38                NY           New York             1            07    1
## 39                NY           New York             0          53.8    1
## 40                NY           New York             0          39.8    1
## 41                NY           New York             0          30.4    1
## 42                NY           New York             9            27    1
## 43                NY           New York             8            57    1
## 44                NY           New York             8            38    1
## 45                NY           New York             8            27    1
## 46                NY           New York             8            02    1
## 47                NY           New York             7            58    1
## 48                NY           New York             7            22    1
## 49                NY           New York             7            07    1
## 50                NY           New York             6            55    1
## 51                NY           New York             6            46    1
## 52                NY           New York             6            39    1
## 53                NY           New York             6            30    1
## 54                NY           New York             6            17    1
## 55                NY           New York             6            06    1
## 56                NY           New York             5            52    1
## 57                NY           New York             5            33    1
## 58                NY           New York             5            29    1
## 59                NY           New York             5            19    1
## 60                NY           New York             5            03    1
## 61                NY           New York             4            52    1
## 62                NY           New York             4            35    1
## 63                NY           New York             3            59    1
## 64                NY           New York             3            50    1
## 65                NY           New York             3            38    1
## 66                NY           New York             3            31    1
## 67                NY           New York             3            22    1
## 68                NY           New York             3            02    1
## 69                NY           New York             2            45    1
## 70                NY           New York             2            29    1
## 71                NY           New York             2            14    1
## 72                NY           New York             1            50    1
## 73                NY           New York             1            35    1
## 74                NY           New York             1            30    1
## 75                NY           New York             0          50.1    1
## 76                NY           New York             0          42.2    1
## 77                NY           New York             0          31.2    1
## 78                NY           New York             0           1.5    1
## 79                NY           New York             9            44    2
## 80                NY           New York             9            37    2
## 81                NY           New York             9            18    2
## 82                NY           New York             9            11    2
## 83                NY           New York             8            55    2
## 84                NY           New York             8            52    2
## 85                NY           New York             8            49    2
## 86                NY           New York             8            41    2
## 87                NY           New York             8            26    2
## 88                NY           New York             8            02    2
## 89                NY           New York             7            52    2
## 90                NY           New York             7            29    2
## 91                NY           New York             7            14    2
## 92                NY           New York             6            58    2
## 93                NY           New York             6            52    2
## 94                NY           New York             6            50    2
## 95                NY           New York             6            39    2
## 96                NY           New York             6            19    2
## 97                NY           New York             6            00    2
## 98                NY           New York             5            42    2
## 99                NY           New York             5            26    2
## 100               NY           New York             5            11    2
## 101               NY           New York             4            48    2
## 102               NY           New York             4            43    2
## 103               NY           New York             4            28    2
## 104               NY           New York             4            06    2
## 105               NY           New York             3            53    2
## 106               NY           New York             3            48    2
## 107               NY           New York             3            34    2
## 108               NY           New York             3            25    2
## 109               NY           New York             3            20    2
## 110               NY           New York             3            03    2
## 111               NY           New York             2            30    2
## 112               NY           New York             2            20    2
## 113               NY           New York             2            14    2
## 114               NY           New York             1            45    2
## 115               NY           New York             1            36    2
## 116               NY           New York             1            17    2
## 117               NY           New York             1            02    2
## 118               NY           New York             0          44.4    2
## 119               NY           New York             0          30.0    2
## 120               NY           New York             0           2.3    2
## 121               NY           New York             9            15    2
## 122               NY           New York             8            49    2
## 123               NY           New York             8            24    2
## 124               NY           New York             8            14    2
## 125               NY           New York             7            42    2
## 126               NY           New York             7            33    2
## 127               NY           New York             7            03    2
## 128               NY           New York             6            29    2
## 129               NY           New York             6            11    2
## 130               NY           New York             5            48    2
## 131               NY           New York             5            31    2
## 132               NY           New York             5            06    2
## 133               NY           New York             4            50    2
## 134               NY           New York             4            48    2
## 135               NY           New York             4            26    2
## 136               NY           New York             4            10    2
## 137               NY           New York             3            58    2
## 138               NY           New York             3            38    2
## 139               NY           New York             3            36    2
## 140               NY           New York             3            20    2
## 141               NY           New York             3            09    2
## 142               NY           New York             3            05    2
## 143               NY           New York             2            53    2
## 144               NY           New York             2            22    2
## 145               NY           New York             1            58    2
## 146               NY           New York             1            56    2
## 147               NY           New York             1            45    2
## 148               NY           New York             1            32    2
## 149               NY           New York             1            13    2
## 150               NY           New York             0          58.5    2
## 151               NY           New York             0          47.0    2
## 152               NY           New York             0          39.7    2
## 153               NY           New York             0           0.4    2
##     lag_half lead_half game_play_number  distance
## 1          1         1                2  2.828427
## 2          1         1                4 17.691806
## 3          1         1                7 25.612497
## 4          1         1                8 10.198039
## 5          1         1               10 25.079872
## 6          1         1               12 26.627054
## 7          1         1               13 24.351591
## 8          1         1               16  3.605551
## 9          1         1               17 17.691806
## 10         1         1               18 17.262677
## 11         1         1               22 16.124515
## 12         1         1               24  4.000000
## 13         1         1               25 19.924859
## 14         1         1               27 12.727922
## 15         1         1               29  2.236068
## 16         1         1               30 25.238859
## 17         1         1               32  3.000000
## 18         1         1               33 24.839485
## 19         1         1               34  7.000000
## 20         1         1               36  3.162278
## 21         1         1               37  3.162278
## 22         1         1               39 20.396078
## 23         1         1               41 24.083189
## 24         1         1               50 25.942244
## 25         1         1               51 20.248457
## 26         1         1               56 23.409400
## 27         1         1               58  3.000000
## 28         1         1               60  2.236068
## 29         1         1               62 25.079872
## 30         1         1               64 24.758837
## 31         1         1               65 25.553865
## 32         1         1               68  3.000000
## 33         1         1               69 21.095023
## 34         1         1               71  3.162278
## 35         1         1               82 25.059928
## 36         1         1               83 25.317978
## 37         1         1               84  3.605551
## 38         1         1               86 25.495098
## 39         1         1               88  8.602325
## 40         1         1               89 24.698178
## 41         1         1               91 19.646883
## 42         1         1              101 24.166092
## 43         1         1              105 19.416488
## 44         1         1              108 25.942244
## 45         1         1              110  3.605551
## 46         1         1              118  4.472136
## 47         1         1              120  3.000000
## 48         1         1              124  4.472136
## 49         1         1              126  4.123106
## 50         1         1              127 23.853721
## 51         1         1              129 16.278821
## 52         1         1              131  3.162278
## 53         1         1              138 24.596748
## 54         1         1              139 17.029386
## 55         1         1              140 26.570661
## 56         1         1              142  5.385165
## 57         1         1              144 10.816654
## 58         1         1              146  5.099020
## 59         1         1              148 17.492856
## 60         1         1              149 10.198039
## 61         1         1              151 23.345235
## 62         1         1              155 24.351591
## 63         1         1              160 17.691806
## 64         1         1              162 24.207437
## 65         1         1              163 15.811388
## 66         1         1              165 19.313208
## 67         1         1              167  3.162278
## 68         1         1              168  3.162278
## 69         1         1              169  4.123106
## 70         1         1              170  6.403124
## 71         1         1              171 25.079872
## 72         1         1              177 23.409400
## 73         1         1              178 24.186773
## 74         1         1              181  3.605551
## 75         1         1              187 23.409400
## 76         1         1              189 18.601075
## 77         1         1              190  2.236068
## 78         1         1              195  5.000000
## 79         2         2              200 22.472205
## 80         2         2              202 24.596748
## 81         2         2              203 25.059928
## 82         2         2              205  2.236068
## 83         2         2              206  7.280110
## 84         2         2              208  3.000000
## 85         2         2              210  4.123106
## 86         2         2              211  6.403124
## 87         2         2              214  8.062258
## 88         2         2              216  5.656854
## 89         2         2              218  6.403124
## 90         2         2              219  3.605551
## 91         2         2              221  3.162278
## 92         2         2              223 25.317978
## 93         2         2              225  8.062258
## 94         2         2              227  4.000000
## 95         2         2              229  9.219544
## 96         2         2              231 17.804494
## 97         2         2              234 23.259407
## 98         2         2              235 19.849433
## 99         2         2              236  3.000000
## 100        2         2              239  8.000000
## 101        2         2              240  2.828427
## 102        2         2              242  4.123106
## 103        2         2              246  3.605551
## 104        2         2              249 24.839485
## 105        2         2              251 19.723083
## 106        2         2              253  3.162278
## 107        2         2              254 10.049876
## 108        2         2              256  3.162278
## 109        2         2              258  3.162278
## 110        2         2              263 24.166092
## 111        2         2              268  9.848858
## 112        2         2              269 25.942244
## 113        2         2              271  9.899495
## 114        2         2              274  7.211103
## 115        2         2              276  3.162278
## 116        2         2              277  3.162278
## 117        2         2              280 16.278821
## 118        2         2              283 18.439089
## 119        2         2              284 14.866069
## 120        2         2              288 21.023796
## 121        2         2              292 15.132746
## 122        2         2              293  8.000000
## 123        2         2              297 24.351591
## 124        2         2              299  8.062258
## 125        2         2              304  9.219544
## 126        2         2              306  3.162278
## 127        2         2              313 18.248288
## 128        2         2              317 25.298221
## 129        2         2              320 12.206556
## 130        2         2              323 25.079872
## 131        2         2              325 24.207437
## 132        2         2              330  3.605551
## 133        2         2              335  3.000000
## 134        2         2              337  3.000000
## 135        2         2              339  4.123106
## 136        2         2              346 16.278821
## 137        2         2              347  5.000000
## 138        2         2              350  7.280110
## 139        2         2              352  3.000000
## 140        2         2              354 13.892444
## 141        2         2              355  8.062258
## 142        2         2              357  4.123106
## 143        2         2              358 25.238859
## 144        2         2              371  8.544004
## 145        2         2              373  3.162278
## 146        2         2              375  3.162278
## 147        2         2              376 17.804494
## 148        2         2              378 20.880613
## 149        2         2              385 25.553865
## 150        2         2              388  3.162278
## 151        2         2              390 21.000000
## 152        2         2              391 24.698178
## 153        2         2              407 25.059928
sg <- sg %>% 
  arrange(sequence_number)


sg %>% 
  ggplot() + 
  geom_point(aes(x = sequence_number, y = distance, size = scoring_play, shape = team_id, color = period_display_value)) +
  labs(title = "Development of distance and success through the 4 quarters",
       x = "Sequence of shots", y = "distance from hoop")
## Warning: Using size for a discrete variable is not advised.

Lets check it for each quarter

First find the team that “won” and by how much

final_score_home <- sg$home_score[length(sg$home_score)]
print(final_score_home)
## [1] 90
final_score_away <- sg$away_score[length(sg$away_score)]
print(final_score_away)
## [1] 87
away_id <- sg$away_team_id[1]
home_id <- sg$home_team_id[1]

if ( final_score_home > final_score_away) {
  winning_id = sg$home_team_id[1]
  losing_id = sg$away_team_id[1]
} else {
  winning_id = sg$away_team_id[1]
  losing_id = sg$home_team_id[1]
}


sg <- sg %>% 
  mutate(win_id = case_when(team_id == winning_id ~ "win_team",
                              team_id == losing_id ~ "lost_team"))

sg
##     sequence_number period_display_value period_number home_score coordinate_x
## 1                 6          1st Quarter             1          0           27
## 2                 9          1st Quarter             1          0           37
## 3                13          1st Quarter             1          3           41
## 4                15          1st Quarter             1          3           35
## 5                17          1st Quarter             1          3           27
## 6                20          1st Quarter             1          6           10
## 7                21          1st Quarter             1          6            2
## 8                25          1st Quarter             1          6           23
## 9                27          1st Quarter             1          8           13
## 10               29          1st Quarter             1          8           22
## 11               34          1st Quarter             1         10           27
## 12               36          1st Quarter             1         10           25
## 13               37          1st Quarter             1         10           31
## 14               39          1st Quarter             1         10           16
## 15               42          1st Quarter             1         10           24
## 16               43          1st Quarter             1         10           39
## 17               45          1st Quarter             1         10           25
## 18               47          1st Quarter             1         13            6
## 19               49          1st Quarter             1         13           25
## 20               51          1st Quarter             1         15           26
## 21               53          1st Quarter             1         15           24
## 22               55          1st Quarter             1         15           29
## 23               57          1st Quarter             1         15           41
## 24               72          1st Quarter             1         18           37
## 25               74          1st Quarter             1         18           18
## 26               80          1st Quarter             1         20           47
## 27               82          1st Quarter             1         20           25
## 28               84          1st Quarter             1         20           35
## 29               86          1st Quarter             1         23            8
## 30               88          1st Quarter             1         23           12
## 31               92          1st Quarter             1         23           25
## 32               94          1st Quarter             1         23           36
## 33               96          1st Quarter             1         23           26
## 34              113          1st Quarter             1         23           37
## 35              114          1st Quarter             1         26           29
## 36              116          1st Quarter             1         26           23
## 37              118          1st Quarter             1         26           18
## 38              119          1st Quarter             1         26           34
## 39              121          1st Quarter             1         26           30
## 40              138          2nd Quarter             2         26           15
## 41              146          2nd Quarter             2         26           14
## 42              150          2nd Quarter             2         26           37
## 43              152          2nd Quarter             2         26           23
## 44              161          1st Quarter             1         20           26
## 45              169          2nd Quarter             2         26           23
## 46              171          2nd Quarter             2         26           25
## 47              177          2nd Quarter             2         28           23
## 48              179          2nd Quarter             2         30           24
## 49              181          2nd Quarter             2         30           38
## 50              183          2nd Quarter             2         30           28
## 51              185          2nd Quarter             2         30           26
## 52              198          2nd Quarter             2         33           14
## 53              200          2nd Quarter             2         33           36
## 54              201          2nd Quarter             2         33           34
## 55              203          1st Quarter             1         26           36
## 56              205          2nd Quarter             2         33           23
## 57              207          2nd Quarter             2         33           19
## 58              209          2nd Quarter             2         33           24
## 59              211          2nd Quarter             2         33           16
## 60              212          2nd Quarter             2         33           27
## 61              214          2nd Quarter             2         33            2
## 62              219          2nd Quarter             2         36            2
## 63              228          2nd Quarter             2         36           13
## 64              230          2nd Quarter             2         36           44
## 65              232          2nd Quarter             2         36           12
## 66              234          2nd Quarter             2         36           18
## 67              236          2nd Quarter             2         38           24
## 68              238          2nd Quarter             2         38           26
## 69              240          2nd Quarter             2         40           24
## 70              242          2nd Quarter             2         40           30
## 71              243          2nd Quarter             2         40           35
## 72              250          2nd Quarter             2         43            3
## 73              252          2nd Quarter             2         43           13
## 74              256          2nd Quarter             2         43           23
## 75              264          2nd Quarter             2         43           47
## 76              268          2nd Quarter             2         45           36
## 77              269          2nd Quarter             2         45           26
## 78              276          2nd Quarter             2         47           25
## 79              286          3rd Quarter             3         47           17
## 80              288          3rd Quarter             3         50           14
## 81              289          3rd Quarter             3         50           13
## 82              291          3rd Quarter             3         52           26
## 83              293          3rd Quarter             3         52           27
## 84              295          3rd Quarter             3         52           25
## 85              297          3rd Quarter             3         52           24
## 86              298          3rd Quarter             3         52           21
## 87              302          3rd Quarter             3         52           32
## 88              304          3rd Quarter             3         52           29
## 89              306          3rd Quarter             3         54           29
## 90              308          3rd Quarter             3         54           27
## 91              312          3rd Quarter             3         56           24
## 92              317          3rd Quarter             3         56           29
## 93              319          3rd Quarter             3         56           21
## 94              321          3rd Quarter             3         56           25
## 95              323          3rd Quarter             3         56           19
## 96              325          3rd Quarter             3         56           36
## 97              328          3rd Quarter             3         59            4
## 98              330          3rd Quarter             3         59           40
## 99              332          3rd Quarter             3         61           25
## 100             336          3rd Quarter             3         62           25
## 101             338          3rd Quarter             3         62           23
## 102             340          3rd Quarter             3         62           26
## 103             347          3rd Quarter             3         62           23
## 104             350          3rd Quarter             3         62            9
## 105             352          3rd Quarter             3         62           15
## 106             354          3rd Quarter             3         62           24
## 107             356          3rd Quarter             3         62           24
## 108             358          3rd Quarter             3         62           26
## 109             360          3rd Quarter             3         62           24
## 110             368          3rd Quarter             3         62           35
## 111             376          3rd Quarter             3         64           16
## 112             377          3rd Quarter             3         64           37
## 113             379          3rd Quarter             3         64           18
## 114             384          3rd Quarter             3         64           21
## 115             386          3rd Quarter             3         66           26
## 116             389          3rd Quarter             3         66           26
## 117             393          3rd Quarter             3         66           28
## 118             397          3rd Quarter             3         68           13
## 119             398          3rd Quarter             3         68           35
## 120             403          3rd Quarter             3         68           26
## 121             409          4th Quarter             4         70           27
## 122             410          4th Quarter             4         70           25
## 123             415          4th Quarter             4         70            2
## 124             417          4th Quarter             4         72           18
## 125             424          4th Quarter             4         72           19
## 126             426          4th Quarter             4         72           24
## 127             437          4th Quarter             4         73           28
## 128             444          4th Quarter             4         73           33
## 129             448          4th Quarter             4         75           18
## 130             453          4th Quarter             4         75           35
## 131             456          4th Quarter             4         75           10
## 132             462          4th Quarter             4         75           23
## 133             472          4th Quarter             4         75           25
## 134             474          4th Quarter             4         75           25
## 135             477          4th Quarter             4         75           26
## 136             488          4th Quarter             4         75           28
## 137             489          4th Quarter             4         77           21
## 138             493          4th Quarter             4         78           23
## 139             495          4th Quarter             4         78           25
## 140             498          4th Quarter             4         80           32
## 141             499          4th Quarter             4         80           24
## 142             501          4th Quarter             4         80           24
## 143             502          4th Quarter             4         80           11
## 144             520          4th Quarter             4         81           22
## 145             524          4th Quarter             4         81           26
## 146             526          4th Quarter             4         81           24
## 147             527          4th Quarter             4         81           14
## 148             529          4th Quarter             4         81           19
## 149             538          4th Quarter             4         82           38
## 150             542          4th Quarter             4         82           26
## 151             545          4th Quarter             4         82           25
## 152             546          4th Quarter             4         85           12
## 153             570          4th Quarter             4         90           13
##     coordinate_y scoring_play clock_display_value team_id type_id
## 1              2        FALSE                9:37       5     110
## 2             13        FALSE                9:16       9     131
## 3             20         TRUE                8:47       9      92
## 4              2        FALSE                8:23       5     130
## 5             25        FALSE                8:18       5      92
## 6             22         TRUE                8:05       9      92
## 7              8        FALSE                7:51       5      92
## 8              3         TRUE                7:31       5      95
## 9             13         TRUE                7:12       9      92
## 10            17         TRUE                6:58       5     131
## 11            16        FALSE                6:26       5      92
## 12             4         TRUE                6:22       5     114
## 13            19        FALSE                6:08       9     132
## 14             9         TRUE                6:02       5     131
## 15             2         TRUE                5:42       5     110
## 16            21        FALSE                5:28       9     131
## 17             3         TRUE                5:18       5      95
## 18            16         TRUE                5:04       9      92
## 19             7        FALSE                4:38       5      92
## 20             3         TRUE                4:30       9      95
## 21             3        FALSE                4:12       5     120
## 22            20        FALSE                4:00       9      92
## 23            18        FALSE                3:51       5      92
## 24            23         TRUE                3:41       9      92
## 25            19        FALSE                3:26       5      92
## 26             8        FALSE                3:06       5      92
## 27             3        FALSE                3:04       5      95
## 28            23        FALSE                2:56       5      92
## 29            18         TRUE                2:49       9      92
## 30            22        FALSE                2:33       5      92
## 31             3         TRUE                2:27       5      95
## 32            18        FALSE                2:17       9      92
## 33             3        FALSE                2:03       5     110
## 34            22         TRUE                1:42       5      92
## 35            25         TRUE                1:30       9      92
## 36             3        FALSE                1:14       5     110
## 37             5         TRUE                53.8       5      95
## 38            23        FALSE                39.8       9      92
## 39            19        FALSE                30.4       5      92
## 40            22         TRUE                9:27       5      92
## 41            16        FALSE                8:57       5      92
## 42            23        FALSE                8:38       9      92
## 43             3         TRUE                8:27       5     110
## 44             2        FALSE                3:03       5     125
## 45             4        FALSE                8:02       5      95
## 46             3         TRUE                7:58       5      95
## 47             4        FALSE                7:22       5      93
## 48             4         TRUE                7:07       9     110
## 49            20        FALSE                6:55       5     132
## 50            16        FALSE                6:46       9     131
## 51             3        FALSE                6:39       5     110
## 52            22         TRUE                6:30       9      92
## 53            13         TRUE                6:17       5     131
## 54            25        FALSE                6:06       9      92
## 55            23        FALSE                1:07       9      92
## 56             5        FALSE                5:52       5      92
## 57             9        FALSE                5:33       9     130
## 58             5        FALSE                5:29       9     114
## 59            15         TRUE                5:19       5      92
## 60            10        FALSE                5:03       9     130
## 61             4        FALSE                4:52       5      92
## 62             8         TRUE                4:35       9      92
## 63            13        FALSE                3:59       9     131
## 64            15         TRUE                3:50       5      92
## 65             9        FALSE                3:38       9      92
## 66            18        FALSE                3:31       5     131
## 67             3         TRUE                3:22       9     141
## 68             3         TRUE                3:02       5      95
## 69             4         TRUE                2:45       9     141
## 70             4         TRUE                2:29       5     124
## 71            23        FALSE                2:14       9      92
## 72             8         TRUE                1:50       9      92
## 73            21        FALSE                1:35       5      92
## 74             3         TRUE                1:30       5      95
## 75             8        FALSE                50.1       9      92
## 76            15         TRUE                42.2       9      92
## 77             2         TRUE                31.2       5      95
## 78             5        FALSE                 1.5       5      92
## 79            21        FALSE                9:44       9      92
## 80            22         TRUE                9:37       9     133
## 81            22        FALSE                9:18       5      92
## 82             2         TRUE                9:11       9      95
## 83             7        FALSE                8:55       5     144
## 84             3        FALSE                8:52       5      95
## 85             4         TRUE                8:49       5      95
## 86             5        FALSE                8:41       9      92
## 87             4        FALSE                8:26       9     145
## 88             4        FALSE                8:02       5     114
## 89             5         TRUE                7:52       9     110
## 90             3         TRUE                7:29       5      95
## 91             3         TRUE                7:14       9     141
## 92            25        FALSE                6:58       5     132
## 93             7        FALSE                6:52       5      95
## 94             4         TRUE                6:50       5      95
## 95             7        FALSE                6:39       9     144
## 96            14        FALSE                6:19       5     131
## 97            10         TRUE                6:00       9      92
## 98            13         TRUE                5:42       5      92
## 99             3         TRUE                5:26       9     128
## 100            8         TRUE                5:11       5     145
## 101            2        FALSE                4:48       9     110
## 102            4         TRUE                4:43       5     141
## 103            3        FALSE                4:28       9     110
## 104           19        FALSE                4:06       9      92
## 105           17        FALSE                3:53       5     131
## 106            3         TRUE                3:48       5     110
## 107           10        FALSE                3:34       9      92
## 108            3        FALSE                3:25       5     110
## 109            3        FALSE                3:20       5      95
## 110           22        FALSE                3:03       9      92
## 111            4         TRUE                2:30       9     131
## 112           23        FALSE                2:20       5      92
## 113            7        FALSE                2:14       9      92
## 114            6        FALSE                1:45       5     114
## 115            3         TRUE                1:36       9      95
## 116            3         TRUE                1:17       5     128
## 117           16        FALSE                1:02       5      92
## 118           14         TRUE                44.4       9      92
## 119           11        FALSE                30.0       5      92
## 120           21        FALSE                 2.3       5      92
## 121           15         TRUE                9:15       9      92
## 122            8        FALSE                8:49       5     144
## 123            8        FALSE                8:24       5      92
## 124            4         TRUE                8:14       9     137
## 125            7        FALSE                7:42       9     130
## 126            3         TRUE                7:33       5      95
## 127           18         TRUE                7:03       5     132
## 128           24        FALSE                6:29       9      92
## 129           10         TRUE                6:11       9     131
## 130           23        FALSE                5:48       5     132
## 131           19        FALSE                5:31       9      92
## 132            3        FALSE                5:06       9      95
## 133            3        FALSE                4:50       5      95
## 134            3         TRUE                4:48       5     125
## 135            4         TRUE                4:26       5     110
## 136           16         TRUE                4:10       5     131
## 137            3         TRUE                3:58       9     110
## 138            7        FALSE                3:38       5      95
## 139            3        FALSE                3:36       5      95
## 140           12         TRUE                3:20       9      92
## 141            8        FALSE                3:09       5     130
## 142            4         TRUE                3:05       5      95
## 143           21        FALSE                2:53       9      92
## 144            8         TRUE                2:22       5      95
## 145            3        FALSE                1:58       5     110
## 146            3         TRUE                1:56       5      95
## 147           14        FALSE                1:45       9      92
## 148           20         TRUE                1:32       5      92
## 149           22        FALSE                1:13       5      92
## 150            3        FALSE                58.5       9      95
## 151           21         TRUE                47.0       5      92
## 152           21         TRUE                39.7       9      92
## 153           22         TRUE                 0.4       9      92
##                           type_text away_score
## 1                Driving Layup Shot          0
## 2                  Pullup Jump Shot          0
## 3                         Jump Shot          0
## 4                Floating Jump Shot          0
## 5                         Jump Shot          0
## 6                         Jump Shot          0
## 7                         Jump Shot          0
## 8                        Layup Shot          2
## 9                         Jump Shot          2
## 10                 Pullup Jump Shot          4
## 11                        Jump Shot          4
## 12             Turnaround Jump Shot          6
## 13              Step Back Jump Shot          6
## 14                 Pullup Jump Shot          8
## 15               Driving Layup Shot         10
## 16                 Pullup Jump Shot         10
## 17                       Layup Shot         12
## 18                        Jump Shot         12
## 19                        Jump Shot         12
## 20                       Layup Shot         12
## 21             Turnaround Hook Shot         12
## 22                        Jump Shot         12
## 23                        Jump Shot         12
## 24                        Jump Shot         12
## 25                        Jump Shot         12
## 26                        Jump Shot         12
## 27                       Layup Shot         12
## 28                        Jump Shot         12
## 29                        Jump Shot         12
## 30                        Jump Shot         12
## 31                       Layup Shot         14
## 32                        Jump Shot         14
## 33               Driving Layup Shot         14
## 34                        Jump Shot         19
## 35                        Jump Shot         19
## 36               Driving Layup Shot         19
## 37                       Layup Shot         21
## 38                        Jump Shot         21
## 39                        Jump Shot         21
## 40                        Jump Shot         24
## 41                        Jump Shot         24
## 42                        Jump Shot         24
## 43               Driving Layup Shot         26
## 44               Layup Shot Putback         12
## 45                       Layup Shot         27
## 46                       Layup Shot         29
## 47                        Hook Shot         29
## 48               Driving Layup Shot         29
## 49              Step Back Jump Shot         29
## 50                 Pullup Jump Shot         29
## 51               Driving Layup Shot         29
## 52                        Jump Shot         29
## 53                 Pullup Jump Shot         31
## 54                        Jump Shot         31
## 55                        Jump Shot         19
## 56                        Jump Shot         31
## 57               Floating Jump Shot         31
## 58             Turnaround Jump Shot         31
## 59                        Jump Shot         33
## 60               Floating Jump Shot         33
## 61                        Jump Shot         33
## 62                        Jump Shot         33
## 63                 Pullup Jump Shot         33
## 64                        Jump Shot         36
## 65                        Jump Shot         36
## 66                 Pullup Jump Shot         36
## 67               Cutting Layup Shot         36
## 68                       Layup Shot         38
## 69               Cutting Layup Shot         38
## 70                Finger Roll Layup         40
## 71                        Jump Shot         40
## 72                        Jump Shot         42
## 73                        Jump Shot         42
## 74                       Layup Shot         44
## 75                        Jump Shot         45
## 76                        Jump Shot         45
## 77                       Layup Shot         47
## 78                        Jump Shot         47
## 79                        Jump Shot         47
## 80            Pullup Bank Jump Shot         47
## 81                        Jump Shot         47
## 82                       Layup Shot         47
## 83       Driving Floating Jump Shot         47
## 84                       Layup Shot         47
## 85                       Layup Shot         49
## 86                        Jump Shot         49
## 87  Driving Floating Bank Jump Shot         49
## 88             Turnaround Jump Shot         49
## 89               Driving Layup Shot         49
## 90                       Layup Shot         51
## 91               Cutting Layup Shot         51
## 92              Step Back Jump Shot         51
## 93                       Layup Shot         51
## 94                       Layup Shot         53
## 95       Driving Floating Jump Shot         53
## 96                 Pullup Jump Shot         53
## 97                        Jump Shot         53
## 98                        Jump Shot         55
## 99        Driving Finger Roll Layup         55
## 100 Driving Floating Bank Jump Shot         57
## 101              Driving Layup Shot         57
## 102              Cutting Layup Shot         59
## 103              Driving Layup Shot         60
## 104                       Jump Shot         60
## 105                Pullup Jump Shot         60
## 106              Driving Layup Shot         62
## 107                       Jump Shot         62
## 108              Driving Layup Shot         62
## 109                      Layup Shot         62
## 110                       Jump Shot         62
## 111                Pullup Jump Shot         62
## 112                       Jump Shot         62
## 113                       Jump Shot         62
## 114            Turnaround Jump Shot         62
## 115                      Layup Shot         62
## 116       Driving Finger Roll Layup         64
## 117                       Jump Shot         64
## 118                       Jump Shot         64
## 119                       Jump Shot         64
## 120                       Jump Shot         64
## 121                       Jump Shot         64
## 122      Driving Floating Jump Shot         64
## 123                       Jump Shot         64
## 124  Turnaround Fade Away Jump Shot         64
## 125              Floating Jump Shot         64
## 126                      Layup Shot         66
## 127             Step Back Jump Shot         68
## 128                       Jump Shot         68
## 129                Pullup Jump Shot         68
## 130             Step Back Jump Shot         68
## 131                       Jump Shot         68
## 132                      Layup Shot         68
## 133                      Layup Shot         68
## 134              Layup Shot Putback         70
## 135              Driving Layup Shot         72
## 136                Pullup Jump Shot         75
## 137              Driving Layup Shot         75
## 138                      Layup Shot         75
## 139                      Layup Shot         75
## 140                       Jump Shot         75
## 141              Floating Jump Shot         75
## 142                      Layup Shot         77
## 143                       Jump Shot         77
## 144                      Layup Shot         80
## 145              Driving Layup Shot         80
## 146                      Layup Shot         82
## 147                       Jump Shot         82
## 148                       Jump Shot         84
## 149                       Jump Shot         84
## 150                      Layup Shot         84
## 151                       Jump Shot         86
## 152                       Jump Shot         86
## 153                       Jump Shot         87
##                                                                              text
## 1                                          Danielle Robinson misses driving layup
## 2                                 Sabrina Ionescu misses 18-foot pullup jump shot
## 3     Michaela Onyenwere makes 26-foot three point jumper (Sami Whitcomb assists)
## 4                                   Kelsey Mitchell misses 10-foot two point shot
## 5                              Victoria Vivians misses 25-foot three point jumper
## 6            Sami Whitcomb makes 27-foot three point jumper (Kylee Shook assists)
## 7                               Kelsey Mitchell misses 24-foot three point jumper
## 8                         Kelsey Mitchell makes layup (Danielle Robinson assists)
## 9                      Kylee Shook makes 17-foot jumper (Sabrina Ionescu assists)
## 10                                 Kelsey Mitchell makes 18-foot pullup jump shot
## 11                                          Kelsey Mitchell misses 16-foot jumper
## 12                                            Teaira McCowan makes two point shot
## 13                           Michaela Onyenwere misses 20-foot step back jumpshot
## 14                               Danielle Robinson makes 13-foot pullup jump shot
## 15                                          Danielle Robinson makes driving layup
## 16                    Sabrina Ionescu misses 25-foot three point pullup jump shot
## 17                         Teaira McCowan makes layup (Danielle Robinson assists)
## 18       Sami Whitcomb makes 24-foot three point jumper (Sabrina Ionescu assists)
## 19                                                Danielle Robinson misses jumper
## 20                         Michaela Onyenwere makes layup (Sami Whitcomb assists)
## 21                                    Teaira McCowan misses 3-foot two point shot
## 22                                           Betnijah Laney misses 20-foot jumper
## 23                              Kelsey Mitchell misses 24-foot three point jumper
## 24   Betnijah Laney makes 26-foot three point jumper (Michaela Onyenwere assists)
## 25                                          Jessica Breland misses 20-foot jumper
## 26                             Tiffany Mitchell misses 23-foot three point jumper
## 27                                                    Teaira McCowan misses layup
## 28                              Kelsey Mitchell misses 25-foot three point jumper
## 29      Betnijah Laney makes 24-foot three point jumper (Sabrina Ionescu assists)
## 30                                Lindsay Allen misses 25-foot three point jumper
## 31                           Teaira McCowan makes layup (Kelsey Mitchell assists)
## 32                                           Betnijah Laney misses 21-foot jumper
## 33                                          Tiffany Mitchell misses driving layup
## 34    Jantel Lavender makes 25-foot three point jumper (Tiffany Mitchell assists)
## 35        Betnijah Laney makes 25-foot three point jumper (Joyner Holmes assists)
## 36                                          Tiffany Mitchell misses driving layup
## 37                                                   Kysre Gondrezick makes layup
## 38                           Michaela Onyenwere misses 25-foot three point jumper
## 39                                          Jantel Lavender misses 19-foot jumper
## 40      Kysre Gondrezick makes 24-foot three point jumper (Lindsay Allen assists)
## 41                                          Jantel Lavender misses 19-foot jumper
## 42                                Sami Whitcomb misses 26-foot three point jumper
## 43                                              Lindsay Allen makes driving layup
## 44                   Jazmine Jones blocks Teaira McCowan 's 2-foot two point shot
## 45                                                   Jantel Lavender misses layup
## 46                                                    Jantel Lavender makes layup
## 47                                        Jantel Lavender misses 5-foot hook shot
## 48                   Betnijah Laney makes driving layup (Sabrina Ionescu assists)
## 49                             Tiffany Mitchell misses 24-foot step back jumpshot
## 50                                 Betnijah Laney misses 16-foot pullup jump shot
## 51                                          Tiffany Mitchell misses driving layup
## 52      Sabrina Ionescu makes 25-foot three point jumper (Betnijah Laney assists)
## 53                                Victoria Vivians makes 17-foot pullup jump shot
## 54                              Sabrina Ionescu misses 26-foot three point jumper
## 55                               Betnijah Laney misses 26-foot three point jumper
## 56                                             Chelsey Perry misses 6-foot jumper
## 57                                  Sabrina Ionescu misses 11-foot two point shot
## 58                                Michaela Onyenwere misses 6-foot two point shot
## 59                                          Victoria Vivians makes 18-foot jumper
## 60                                    Sami Whitcomb misses 11-foot two point shot
## 61                             Victoria Vivians misses 23-foot three point jumper
## 62      Betnijah Laney makes 24-foot three point jumper (Sabrina Ionescu assists)
## 63                                Sabrina Ionescu misses 18-foot pullup jump shot
## 64   Kelsey Mitchell makes 24-foot three point jumper (Danielle Robinson assists)
## 65                                              Kylee Shook misses 16-foot jumper
## 66                              Danielle Robinson misses 19-foot pullup jump shot
## 67                        Kylee Shook makes 4-foot layup (Betnijah Laney assists)
## 68                           Teaira McCowan makes layup (Kelsey Mitchell assists)
## 69                    Betnijah Laney makes 4-foot layup (Sabrina Ionescu assists)
## 70                                        Jessica Breland makes finger roll layup
## 71                                Sami Whitcomb misses 25-foot three point jumper
## 72  Michaela Onyenwere makes 24-foot three point jumper (Sabrina Ionescu assists)
## 73                             Victoria Vivians misses 24-foot three point jumper
## 74                           Teaira McCowan makes layup (Jessica Breland assists)
## 75        Jessica Breland blocks Michaela Onyenwere 's 23-foot three point jumper
## 76                                            Betnijah Laney makes 18-foot jumper
## 77                                                    Jessica Breland makes layup
## 78                                                   Teaira McCowan misses jumper
## 79                                           Betnijah Laney misses 22-foot jumper
## 80                                 Sabrina Ionescu makes 24-foot three point shot
## 81                              Kelsey Mitchell misses 25-foot three point jumper
## 82                       Michaela Onyenwere makes layup (Sabrina Ionescu assists)
## 83                             Victoria Vivians misses driving floating jump shot
## 84                                                    Teaira McCowan misses layup
## 85                                                    Jantel Lavender makes layup
## 86                                               Kylee Shook misses 6-foot jumper
## 87                                          Sabrina Ionescu misses two point shot
## 88                                    Teaira McCowan misses 5-foot two point shot
## 89                   Betnijah Laney makes driving layup (Sabrina Ionescu assists)
## 90                         Teaira McCowan makes layup (Danielle Robinson assists)
## 91                       Kylee Shook makes 3-foot layup (Sabrina Ionescu assists)
## 92                              Kelsey Mitchell misses 25-foot step back jumpshot
## 93                                                   Jantel Lavender misses layup
## 94                                                     Teaira McCowan makes layup
## 95                              Sabrina Ionescu misses driving floating jump shot
## 96                               Tiffany Mitchell misses 18-foot pullup jump shot
## 97      Michaela Onyenwere makes 23-foot three point jumper (Kylee Shook assists)
## 98                 Kelsey Mitchell makes 19-foot jumper (Jantel Lavender assists)
## 99                                        Michaela Onyenwere makes two point shot
## 100                                          Kelsey Mitchell makes two point shot
## 101                                           Betnijah Laney misses driving layup
## 102                         Tiffany Mitchell makes layup (Teaira McCowan assists)
## 103                                       Michaela Onyenwere misses driving layup
## 104                                 Kylee Shook misses 25-foot three point jumper
## 105                               Kelsey Mitchell misses 19-foot pullup jump shot
## 106               Danielle Robinson makes driving layup (Jantel Lavender assists)
## 107                                             Kylee Shook misses 10-foot jumper
## 108                                         Tiffany Mitchell misses driving layup
## 109                                                  Jantel Lavender misses layup
## 110                          Michaela Onyenwere misses 25-foot three point jumper
## 111                                Sabrina Ionescu makes 10-foot pullup jump shot
## 112                             Kelsey Mitchell misses 26-foot three point jumper
## 113                                          Betnijah Laney misses 10-foot jumper
## 114                                  Jessica Breland misses 8-foot two point shot
## 115                           Reshanda Gray makes layup (Sabrina Ionescu assists)
## 116                                         Tiffany Mitchell makes two point shot
## 117                                        Kysre Gondrezick misses 16-foot jumper
## 118                                           Betnijah Laney makes 18-foot jumper
## 119                                         Jessica Breland misses 15-foot jumper
## 120                                        Kysre Gondrezick misses 21-foot jumper
## 121                                          Sabrina Ionescu makes 15-foot jumper
## 122                           Danielle Robinson misses driving floating jump shot
## 123                           Danielle Robinson misses 24-foot three point jumper
## 124                                    Betnijah Laney makes 8-foot two point shot
## 125                                  Sabrina Ionescu misses 9-foot two point shot
## 126                        Jessica Breland makes layup (Kysre Gondrezick assists)
## 127                              Kelsey Mitchell makes 18-foot step back jumpshot
## 128                               Jazmine Jones misses 25-foot three point jumper
## 129                                  DiDi Richards makes 12-foot pullup jump shot
## 130                            Kysre Gondrezick misses 25-foot step back jumpshot
## 131                             Sabrina Ionescu misses 24-foot three point jumper
## 132                           Teaira McCowan blocks Reshanda Gray 's 3-foot layup
## 133                                                  Jantel Lavender misses layup
## 134                                           Teaira McCowan makes two point shot
## 135                                           Kelsey Mitchell makes driving layup
## 136                                Kelsey Mitchell makes 16-foot pullup jump shot
## 137                                           Sabrina Ionescu makes driving layup
## 138                                                   Teaira McCowan misses layup
## 139                                                  Jantel Lavender misses layup
## 140                                           Betnijah Laney makes 14-foot jumper
## 141                 Kylee Shook blocks Danielle Robinson 's 8-foot two point shot
## 142                                                    Teaira McCowan makes layup
## 143                             Sabrina Ionescu misses 25-foot three point jumper
## 144                          Teaira McCowan makes layup (Jantel Lavender assists)
## 145                                        Danielle Robinson misses driving layup
## 146                                                   Jantel Lavender makes layup
## 147                                         Sabrina Ionescu misses 18-foot jumper
## 148                                          Kelsey Mitchell makes 20-foot jumper
## 149                            Tiffany Mitchell misses 25-foot three point jumper
## 150                             Teaira McCowan blocks Kylee Shook 's 3-foot layup
## 151                                                  Kelsey Mitchell makes jumper
## 152                              Sabrina Ionescu makes 25-foot three point jumper
## 153        Sabrina Ionescu makes 25-foot three point jumper (Kylee Shook assists)
##     score_value participants_0_athlete_id participants_1_athlete_id   game_id
## 1             0                      1014                      <NA> 401320565
## 2             0                   4066533                      <NA> 401320565
## 3             3                   4282173                       887 401320565
## 4             0                   3142191                      <NA> 401320565
## 5             0                   3142948                      <NA> 401320565
## 6             3                       887                   4065849 401320565
## 7             0                   3142191                      <NA> 401320565
## 8             2                   3142191                      1014 401320565
## 9             2                   4065849                   4066533 401320565
## 10            2                   3142191                      <NA> 401320565
## 11            0                   3142191                      <NA> 401320565
## 12            2                   3913903                      <NA> 401320565
## 13            0                   4282173                      <NA> 401320565
## 14            2                      1014                      <NA> 401320565
## 15            2                      1014                      <NA> 401320565
## 16            0                   4066533                      <NA> 401320565
## 17            2                   3913903                      1014 401320565
## 18            3                       887                   4066533 401320565
## 19            0                      1014                      <NA> 401320565
## 20            2                   4282173                       887 401320565
## 21            0                   3913903                      <NA> 401320565
## 22            0                   2593770                      <NA> 401320565
## 23            0                   3142191                      <NA> 401320565
## 24            3                   2593770                   4282173 401320565
## 25            0                      1002                      <NA> 401320565
## 26            0                   2984741                      <NA> 401320565
## 27            0                   3913903                      <NA> 401320565
## 28            0                   3142191                      <NA> 401320565
## 29            3                   2593770                   4066533 401320565
## 30            0                   3058908                      <NA> 401320565
## 31            2                   3913903                   3142191 401320565
## 32            0                   2593770                      <NA> 401320565
## 33            0                   2984741                      <NA> 401320565
## 34            3                      1013                   2984741 401320565
## 35            3                   2593770                   4068161 401320565
## 36            0                   2984741                      <NA> 401320565
## 37            2                   4065820                      <NA> 401320565
## 38            0                   4282173                      <NA> 401320565
## 39            0                      1013                      <NA> 401320565
## 40            3                   4065820                   3058908 401320565
## 41            0                      1013                      <NA> 401320565
## 42            0                       887                      <NA> 401320565
## 43            2                   3058908                      <NA> 401320565
## 44            0                   3913903                   4065850 401320565
## 45            0                      1013                      <NA> 401320565
## 46            2                      1013                      <NA> 401320565
## 47            0                      1013                      <NA> 401320565
## 48            2                   2593770                   4066533 401320565
## 49            0                   2984741                      <NA> 401320565
## 50            0                   2593770                      <NA> 401320565
## 51            0                   2984741                      <NA> 401320565
## 52            3                   4066533                   2593770 401320565
## 53            2                   3142948                      <NA> 401320565
## 54            0                   4066533                      <NA> 401320565
## 55            0                   2593770                      <NA> 401320565
## 56            0                   4282471                      <NA> 401320565
## 57            0                   4066533                      <NA> 401320565
## 58            0                   4282173                      <NA> 401320565
## 59            2                   3142948                      <NA> 401320565
## 60            0                       887                      <NA> 401320565
## 61            0                   3142948                      <NA> 401320565
## 62            3                   2593770                   4066533 401320565
## 63            0                   4066533                      <NA> 401320565
## 64            3                   3142191                      1014 401320565
## 65            0                   4065849                      <NA> 401320565
## 66            0                      1014                      <NA> 401320565
## 67            2                   4065849                   2593770 401320565
## 68            2                   3913903                   3142191 401320565
## 69            2                   2593770                   4066533 401320565
## 70            2                      1002                      <NA> 401320565
## 71            0                       887                      <NA> 401320565
## 72            3                   4282173                   4066533 401320565
## 73            0                   3142948                      <NA> 401320565
## 74            2                   3913903                      1002 401320565
## 75            0                   4282173                      1002 401320565
## 76            2                   2593770                      <NA> 401320565
## 77            2                      1002                      <NA> 401320565
## 78            0                   3913903                      <NA> 401320565
## 79            0                   2593770                      <NA> 401320565
## 80            3                   4066533                      <NA> 401320565
## 81            0                   3142191                      <NA> 401320565
## 82            2                   4282173                   4066533 401320565
## 83            0                   3142948                      <NA> 401320565
## 84            0                   3913903                      <NA> 401320565
## 85            2                      1013                      <NA> 401320565
## 86            0                   4065849                      <NA> 401320565
## 87            0                   4066533                      <NA> 401320565
## 88            0                   3913903                      <NA> 401320565
## 89            2                   2593770                   4066533 401320565
## 90            2                   3913903                      1014 401320565
## 91            2                   4065849                   4066533 401320565
## 92            0                   3142191                      <NA> 401320565
## 93            0                      1013                      <NA> 401320565
## 94            2                   3913903                      <NA> 401320565
## 95            0                   4066533                      <NA> 401320565
## 96            0                   2984741                      <NA> 401320565
## 97            3                   4282173                   4065849 401320565
## 98            2                   3142191                      1013 401320565
## 99            2                   4282173                      <NA> 401320565
## 100           2                   3142191                      <NA> 401320565
## 101           0                   2593770                      <NA> 401320565
## 102           2                   2984741                   3913903 401320565
## 103           0                   4282173                      <NA> 401320565
## 104           0                   4065849                      <NA> 401320565
## 105           0                   3142191                      <NA> 401320565
## 106           2                      1014                      1013 401320565
## 107           0                   4065849                      <NA> 401320565
## 108           0                   2984741                      <NA> 401320565
## 109           0                      1013                      <NA> 401320565
## 110           0                   4282173                      <NA> 401320565
## 111           2                   4066533                      <NA> 401320565
## 112           0                   3142191                      <NA> 401320565
## 113           0                   2593770                      <NA> 401320565
## 114           0                      1002                      <NA> 401320565
## 115           2                   2566211                   4066533 401320565
## 116           2                   2984741                      <NA> 401320565
## 117           0                   4065820                      <NA> 401320565
## 118           2                   2593770                      <NA> 401320565
## 119           0                      1002                      <NA> 401320565
## 120           0                   4065820                      <NA> 401320565
## 121           2                   4066533                      <NA> 401320565
## 122           0                      1014                      <NA> 401320565
## 123           0                      1014                      <NA> 401320565
## 124           2                   2593770                      <NA> 401320565
## 125           0                   4066533                      <NA> 401320565
## 126           2                      1002                   4065820 401320565
## 127           2                   3142191                      <NA> 401320565
## 128           0                   4065850                      <NA> 401320565
## 129           2                   4281253                      <NA> 401320565
## 130           0                   4065820                      <NA> 401320565
## 131           0                   4066533                      <NA> 401320565
## 132           0                   2566211                   3913903 401320565
## 133           0                      1013                      <NA> 401320565
## 134           2                   3913903                      <NA> 401320565
## 135           2                   3142191                      <NA> 401320565
## 136           2                   3142191                      <NA> 401320565
## 137           2                   4066533                      <NA> 401320565
## 138           0                   3913903                      <NA> 401320565
## 139           0                      1013                      <NA> 401320565
## 140           2                   2593770                      <NA> 401320565
## 141           0                      1014                   4065849 401320565
## 142           2                   3913903                      <NA> 401320565
## 143           0                   4066533                      <NA> 401320565
## 144           2                   3913903                      1013 401320565
## 145           0                      1014                      <NA> 401320565
## 146           2                      1013                      <NA> 401320565
## 147           0                   4066533                      <NA> 401320565
## 148           2                   3142191                      <NA> 401320565
## 149           0                   2984741                      <NA> 401320565
## 150           0                   4065849                   3913903 401320565
## 151           2                   3142191                      <NA> 401320565
## 152           3                   4066533                      <NA> 401320565
## 153           3                   4066533                   4065849 401320565
##     away_team_id away_team_name away_team_mascot away_team_abbrev
## 1              5        Indiana            Fever              IND
## 2              5        Indiana            Fever              IND
## 3              5        Indiana            Fever              IND
## 4              5        Indiana            Fever              IND
## 5              5        Indiana            Fever              IND
## 6              5        Indiana            Fever              IND
## 7              5        Indiana            Fever              IND
## 8              5        Indiana            Fever              IND
## 9              5        Indiana            Fever              IND
## 10             5        Indiana            Fever              IND
## 11             5        Indiana            Fever              IND
## 12             5        Indiana            Fever              IND
## 13             5        Indiana            Fever              IND
## 14             5        Indiana            Fever              IND
## 15             5        Indiana            Fever              IND
## 16             5        Indiana            Fever              IND
## 17             5        Indiana            Fever              IND
## 18             5        Indiana            Fever              IND
## 19             5        Indiana            Fever              IND
## 20             5        Indiana            Fever              IND
## 21             5        Indiana            Fever              IND
## 22             5        Indiana            Fever              IND
## 23             5        Indiana            Fever              IND
## 24             5        Indiana            Fever              IND
## 25             5        Indiana            Fever              IND
## 26             5        Indiana            Fever              IND
## 27             5        Indiana            Fever              IND
## 28             5        Indiana            Fever              IND
## 29             5        Indiana            Fever              IND
## 30             5        Indiana            Fever              IND
## 31             5        Indiana            Fever              IND
## 32             5        Indiana            Fever              IND
## 33             5        Indiana            Fever              IND
## 34             5        Indiana            Fever              IND
## 35             5        Indiana            Fever              IND
## 36             5        Indiana            Fever              IND
## 37             5        Indiana            Fever              IND
## 38             5        Indiana            Fever              IND
## 39             5        Indiana            Fever              IND
## 40             5        Indiana            Fever              IND
## 41             5        Indiana            Fever              IND
## 42             5        Indiana            Fever              IND
## 43             5        Indiana            Fever              IND
## 44             5        Indiana            Fever              IND
## 45             5        Indiana            Fever              IND
## 46             5        Indiana            Fever              IND
## 47             5        Indiana            Fever              IND
## 48             5        Indiana            Fever              IND
## 49             5        Indiana            Fever              IND
## 50             5        Indiana            Fever              IND
## 51             5        Indiana            Fever              IND
## 52             5        Indiana            Fever              IND
## 53             5        Indiana            Fever              IND
## 54             5        Indiana            Fever              IND
## 55             5        Indiana            Fever              IND
## 56             5        Indiana            Fever              IND
## 57             5        Indiana            Fever              IND
## 58             5        Indiana            Fever              IND
## 59             5        Indiana            Fever              IND
## 60             5        Indiana            Fever              IND
## 61             5        Indiana            Fever              IND
## 62             5        Indiana            Fever              IND
## 63             5        Indiana            Fever              IND
## 64             5        Indiana            Fever              IND
## 65             5        Indiana            Fever              IND
## 66             5        Indiana            Fever              IND
## 67             5        Indiana            Fever              IND
## 68             5        Indiana            Fever              IND
## 69             5        Indiana            Fever              IND
## 70             5        Indiana            Fever              IND
## 71             5        Indiana            Fever              IND
## 72             5        Indiana            Fever              IND
## 73             5        Indiana            Fever              IND
## 74             5        Indiana            Fever              IND
## 75             5        Indiana            Fever              IND
## 76             5        Indiana            Fever              IND
## 77             5        Indiana            Fever              IND
## 78             5        Indiana            Fever              IND
## 79             5        Indiana            Fever              IND
## 80             5        Indiana            Fever              IND
## 81             5        Indiana            Fever              IND
## 82             5        Indiana            Fever              IND
## 83             5        Indiana            Fever              IND
## 84             5        Indiana            Fever              IND
## 85             5        Indiana            Fever              IND
## 86             5        Indiana            Fever              IND
## 87             5        Indiana            Fever              IND
## 88             5        Indiana            Fever              IND
## 89             5        Indiana            Fever              IND
## 90             5        Indiana            Fever              IND
## 91             5        Indiana            Fever              IND
## 92             5        Indiana            Fever              IND
## 93             5        Indiana            Fever              IND
## 94             5        Indiana            Fever              IND
## 95             5        Indiana            Fever              IND
## 96             5        Indiana            Fever              IND
## 97             5        Indiana            Fever              IND
## 98             5        Indiana            Fever              IND
## 99             5        Indiana            Fever              IND
## 100            5        Indiana            Fever              IND
## 101            5        Indiana            Fever              IND
## 102            5        Indiana            Fever              IND
## 103            5        Indiana            Fever              IND
## 104            5        Indiana            Fever              IND
## 105            5        Indiana            Fever              IND
## 106            5        Indiana            Fever              IND
## 107            5        Indiana            Fever              IND
## 108            5        Indiana            Fever              IND
## 109            5        Indiana            Fever              IND
## 110            5        Indiana            Fever              IND
## 111            5        Indiana            Fever              IND
## 112            5        Indiana            Fever              IND
## 113            5        Indiana            Fever              IND
## 114            5        Indiana            Fever              IND
## 115            5        Indiana            Fever              IND
## 116            5        Indiana            Fever              IND
## 117            5        Indiana            Fever              IND
## 118            5        Indiana            Fever              IND
## 119            5        Indiana            Fever              IND
## 120            5        Indiana            Fever              IND
## 121            5        Indiana            Fever              IND
## 122            5        Indiana            Fever              IND
## 123            5        Indiana            Fever              IND
## 124            5        Indiana            Fever              IND
## 125            5        Indiana            Fever              IND
## 126            5        Indiana            Fever              IND
## 127            5        Indiana            Fever              IND
## 128            5        Indiana            Fever              IND
## 129            5        Indiana            Fever              IND
## 130            5        Indiana            Fever              IND
## 131            5        Indiana            Fever              IND
## 132            5        Indiana            Fever              IND
## 133            5        Indiana            Fever              IND
## 134            5        Indiana            Fever              IND
## 135            5        Indiana            Fever              IND
## 136            5        Indiana            Fever              IND
## 137            5        Indiana            Fever              IND
## 138            5        Indiana            Fever              IND
## 139            5        Indiana            Fever              IND
## 140            5        Indiana            Fever              IND
## 141            5        Indiana            Fever              IND
## 142            5        Indiana            Fever              IND
## 143            5        Indiana            Fever              IND
## 144            5        Indiana            Fever              IND
## 145            5        Indiana            Fever              IND
## 146            5        Indiana            Fever              IND
## 147            5        Indiana            Fever              IND
## 148            5        Indiana            Fever              IND
## 149            5        Indiana            Fever              IND
## 150            5        Indiana            Fever              IND
## 151            5        Indiana            Fever              IND
## 152            5        Indiana            Fever              IND
## 153            5        Indiana            Fever              IND
##     away_team_name_alt home_team_id home_team_name home_team_mascot
## 1              Indiana            9       New York          Liberty
## 2              Indiana            9       New York          Liberty
## 3              Indiana            9       New York          Liberty
## 4              Indiana            9       New York          Liberty
## 5              Indiana            9       New York          Liberty
## 6              Indiana            9       New York          Liberty
## 7              Indiana            9       New York          Liberty
## 8              Indiana            9       New York          Liberty
## 9              Indiana            9       New York          Liberty
## 10             Indiana            9       New York          Liberty
## 11             Indiana            9       New York          Liberty
## 12             Indiana            9       New York          Liberty
## 13             Indiana            9       New York          Liberty
## 14             Indiana            9       New York          Liberty
## 15             Indiana            9       New York          Liberty
## 16             Indiana            9       New York          Liberty
## 17             Indiana            9       New York          Liberty
## 18             Indiana            9       New York          Liberty
## 19             Indiana            9       New York          Liberty
## 20             Indiana            9       New York          Liberty
## 21             Indiana            9       New York          Liberty
## 22             Indiana            9       New York          Liberty
## 23             Indiana            9       New York          Liberty
## 24             Indiana            9       New York          Liberty
## 25             Indiana            9       New York          Liberty
## 26             Indiana            9       New York          Liberty
## 27             Indiana            9       New York          Liberty
## 28             Indiana            9       New York          Liberty
## 29             Indiana            9       New York          Liberty
## 30             Indiana            9       New York          Liberty
## 31             Indiana            9       New York          Liberty
## 32             Indiana            9       New York          Liberty
## 33             Indiana            9       New York          Liberty
## 34             Indiana            9       New York          Liberty
## 35             Indiana            9       New York          Liberty
## 36             Indiana            9       New York          Liberty
## 37             Indiana            9       New York          Liberty
## 38             Indiana            9       New York          Liberty
## 39             Indiana            9       New York          Liberty
## 40             Indiana            9       New York          Liberty
## 41             Indiana            9       New York          Liberty
## 42             Indiana            9       New York          Liberty
## 43             Indiana            9       New York          Liberty
## 44             Indiana            9       New York          Liberty
## 45             Indiana            9       New York          Liberty
## 46             Indiana            9       New York          Liberty
## 47             Indiana            9       New York          Liberty
## 48             Indiana            9       New York          Liberty
## 49             Indiana            9       New York          Liberty
## 50             Indiana            9       New York          Liberty
## 51             Indiana            9       New York          Liberty
## 52             Indiana            9       New York          Liberty
## 53             Indiana            9       New York          Liberty
## 54             Indiana            9       New York          Liberty
## 55             Indiana            9       New York          Liberty
## 56             Indiana            9       New York          Liberty
## 57             Indiana            9       New York          Liberty
## 58             Indiana            9       New York          Liberty
## 59             Indiana            9       New York          Liberty
## 60             Indiana            9       New York          Liberty
## 61             Indiana            9       New York          Liberty
## 62             Indiana            9       New York          Liberty
## 63             Indiana            9       New York          Liberty
## 64             Indiana            9       New York          Liberty
## 65             Indiana            9       New York          Liberty
## 66             Indiana            9       New York          Liberty
## 67             Indiana            9       New York          Liberty
## 68             Indiana            9       New York          Liberty
## 69             Indiana            9       New York          Liberty
## 70             Indiana            9       New York          Liberty
## 71             Indiana            9       New York          Liberty
## 72             Indiana            9       New York          Liberty
## 73             Indiana            9       New York          Liberty
## 74             Indiana            9       New York          Liberty
## 75             Indiana            9       New York          Liberty
## 76             Indiana            9       New York          Liberty
## 77             Indiana            9       New York          Liberty
## 78             Indiana            9       New York          Liberty
## 79             Indiana            9       New York          Liberty
## 80             Indiana            9       New York          Liberty
## 81             Indiana            9       New York          Liberty
## 82             Indiana            9       New York          Liberty
## 83             Indiana            9       New York          Liberty
## 84             Indiana            9       New York          Liberty
## 85             Indiana            9       New York          Liberty
## 86             Indiana            9       New York          Liberty
## 87             Indiana            9       New York          Liberty
## 88             Indiana            9       New York          Liberty
## 89             Indiana            9       New York          Liberty
## 90             Indiana            9       New York          Liberty
## 91             Indiana            9       New York          Liberty
## 92             Indiana            9       New York          Liberty
## 93             Indiana            9       New York          Liberty
## 94             Indiana            9       New York          Liberty
## 95             Indiana            9       New York          Liberty
## 96             Indiana            9       New York          Liberty
## 97             Indiana            9       New York          Liberty
## 98             Indiana            9       New York          Liberty
## 99             Indiana            9       New York          Liberty
## 100            Indiana            9       New York          Liberty
## 101            Indiana            9       New York          Liberty
## 102            Indiana            9       New York          Liberty
## 103            Indiana            9       New York          Liberty
## 104            Indiana            9       New York          Liberty
## 105            Indiana            9       New York          Liberty
## 106            Indiana            9       New York          Liberty
## 107            Indiana            9       New York          Liberty
## 108            Indiana            9       New York          Liberty
## 109            Indiana            9       New York          Liberty
## 110            Indiana            9       New York          Liberty
## 111            Indiana            9       New York          Liberty
## 112            Indiana            9       New York          Liberty
## 113            Indiana            9       New York          Liberty
## 114            Indiana            9       New York          Liberty
## 115            Indiana            9       New York          Liberty
## 116            Indiana            9       New York          Liberty
## 117            Indiana            9       New York          Liberty
## 118            Indiana            9       New York          Liberty
## 119            Indiana            9       New York          Liberty
## 120            Indiana            9       New York          Liberty
## 121            Indiana            9       New York          Liberty
## 122            Indiana            9       New York          Liberty
## 123            Indiana            9       New York          Liberty
## 124            Indiana            9       New York          Liberty
## 125            Indiana            9       New York          Liberty
## 126            Indiana            9       New York          Liberty
## 127            Indiana            9       New York          Liberty
## 128            Indiana            9       New York          Liberty
## 129            Indiana            9       New York          Liberty
## 130            Indiana            9       New York          Liberty
## 131            Indiana            9       New York          Liberty
## 132            Indiana            9       New York          Liberty
## 133            Indiana            9       New York          Liberty
## 134            Indiana            9       New York          Liberty
## 135            Indiana            9       New York          Liberty
## 136            Indiana            9       New York          Liberty
## 137            Indiana            9       New York          Liberty
## 138            Indiana            9       New York          Liberty
## 139            Indiana            9       New York          Liberty
## 140            Indiana            9       New York          Liberty
## 141            Indiana            9       New York          Liberty
## 142            Indiana            9       New York          Liberty
## 143            Indiana            9       New York          Liberty
## 144            Indiana            9       New York          Liberty
## 145            Indiana            9       New York          Liberty
## 146            Indiana            9       New York          Liberty
## 147            Indiana            9       New York          Liberty
## 148            Indiana            9       New York          Liberty
## 149            Indiana            9       New York          Liberty
## 150            Indiana            9       New York          Liberty
## 151            Indiana            9       New York          Liberty
## 152            Indiana            9       New York          Liberty
## 153            Indiana            9       New York          Liberty
##     home_team_abbrev home_team_name_alt clock_minutes clock_seconds half
## 1                 NY           New York             9            37    1
## 2                 NY           New York             9            16    1
## 3                 NY           New York             8            47    1
## 4                 NY           New York             8            23    1
## 5                 NY           New York             8            18    1
## 6                 NY           New York             8            05    1
## 7                 NY           New York             7            51    1
## 8                 NY           New York             7            31    1
## 9                 NY           New York             7            12    1
## 10                NY           New York             6            58    1
## 11                NY           New York             6            26    1
## 12                NY           New York             6            22    1
## 13                NY           New York             6            08    1
## 14                NY           New York             6            02    1
## 15                NY           New York             5            42    1
## 16                NY           New York             5            28    1
## 17                NY           New York             5            18    1
## 18                NY           New York             5            04    1
## 19                NY           New York             4            38    1
## 20                NY           New York             4            30    1
## 21                NY           New York             4            12    1
## 22                NY           New York             4            00    1
## 23                NY           New York             3            51    1
## 24                NY           New York             3            41    1
## 25                NY           New York             3            26    1
## 26                NY           New York             3            06    1
## 27                NY           New York             3            04    1
## 28                NY           New York             2            56    1
## 29                NY           New York             2            49    1
## 30                NY           New York             2            33    1
## 31                NY           New York             2            27    1
## 32                NY           New York             2            17    1
## 33                NY           New York             2            03    1
## 34                NY           New York             1            42    1
## 35                NY           New York             1            30    1
## 36                NY           New York             1            14    1
## 37                NY           New York             0          53.8    1
## 38                NY           New York             0          39.8    1
## 39                NY           New York             0          30.4    1
## 40                NY           New York             9            27    1
## 41                NY           New York             8            57    1
## 42                NY           New York             8            38    1
## 43                NY           New York             8            27    1
## 44                NY           New York             3            03    1
## 45                NY           New York             8            02    1
## 46                NY           New York             7            58    1
## 47                NY           New York             7            22    1
## 48                NY           New York             7            07    1
## 49                NY           New York             6            55    1
## 50                NY           New York             6            46    1
## 51                NY           New York             6            39    1
## 52                NY           New York             6            30    1
## 53                NY           New York             6            17    1
## 54                NY           New York             6            06    1
## 55                NY           New York             1            07    1
## 56                NY           New York             5            52    1
## 57                NY           New York             5            33    1
## 58                NY           New York             5            29    1
## 59                NY           New York             5            19    1
## 60                NY           New York             5            03    1
## 61                NY           New York             4            52    1
## 62                NY           New York             4            35    1
## 63                NY           New York             3            59    1
## 64                NY           New York             3            50    1
## 65                NY           New York             3            38    1
## 66                NY           New York             3            31    1
## 67                NY           New York             3            22    1
## 68                NY           New York             3            02    1
## 69                NY           New York             2            45    1
## 70                NY           New York             2            29    1
## 71                NY           New York             2            14    1
## 72                NY           New York             1            50    1
## 73                NY           New York             1            35    1
## 74                NY           New York             1            30    1
## 75                NY           New York             0          50.1    1
## 76                NY           New York             0          42.2    1
## 77                NY           New York             0          31.2    1
## 78                NY           New York             0           1.5    1
## 79                NY           New York             9            44    2
## 80                NY           New York             9            37    2
## 81                NY           New York             9            18    2
## 82                NY           New York             9            11    2
## 83                NY           New York             8            55    2
## 84                NY           New York             8            52    2
## 85                NY           New York             8            49    2
## 86                NY           New York             8            41    2
## 87                NY           New York             8            26    2
## 88                NY           New York             8            02    2
## 89                NY           New York             7            52    2
## 90                NY           New York             7            29    2
## 91                NY           New York             7            14    2
## 92                NY           New York             6            58    2
## 93                NY           New York             6            52    2
## 94                NY           New York             6            50    2
## 95                NY           New York             6            39    2
## 96                NY           New York             6            19    2
## 97                NY           New York             6            00    2
## 98                NY           New York             5            42    2
## 99                NY           New York             5            26    2
## 100               NY           New York             5            11    2
## 101               NY           New York             4            48    2
## 102               NY           New York             4            43    2
## 103               NY           New York             4            28    2
## 104               NY           New York             4            06    2
## 105               NY           New York             3            53    2
## 106               NY           New York             3            48    2
## 107               NY           New York             3            34    2
## 108               NY           New York             3            25    2
## 109               NY           New York             3            20    2
## 110               NY           New York             3            03    2
## 111               NY           New York             2            30    2
## 112               NY           New York             2            20    2
## 113               NY           New York             2            14    2
## 114               NY           New York             1            45    2
## 115               NY           New York             1            36    2
## 116               NY           New York             1            17    2
## 117               NY           New York             1            02    2
## 118               NY           New York             0          44.4    2
## 119               NY           New York             0          30.0    2
## 120               NY           New York             0           2.3    2
## 121               NY           New York             9            15    2
## 122               NY           New York             8            49    2
## 123               NY           New York             8            24    2
## 124               NY           New York             8            14    2
## 125               NY           New York             7            42    2
## 126               NY           New York             7            33    2
## 127               NY           New York             7            03    2
## 128               NY           New York             6            29    2
## 129               NY           New York             6            11    2
## 130               NY           New York             5            48    2
## 131               NY           New York             5            31    2
## 132               NY           New York             5            06    2
## 133               NY           New York             4            50    2
## 134               NY           New York             4            48    2
## 135               NY           New York             4            26    2
## 136               NY           New York             4            10    2
## 137               NY           New York             3            58    2
## 138               NY           New York             3            38    2
## 139               NY           New York             3            36    2
## 140               NY           New York             3            20    2
## 141               NY           New York             3            09    2
## 142               NY           New York             3            05    2
## 143               NY           New York             2            53    2
## 144               NY           New York             2            22    2
## 145               NY           New York             1            58    2
## 146               NY           New York             1            56    2
## 147               NY           New York             1            45    2
## 148               NY           New York             1            32    2
## 149               NY           New York             1            13    2
## 150               NY           New York             0          58.5    2
## 151               NY           New York             0          47.0    2
## 152               NY           New York             0          39.7    2
## 153               NY           New York             0           0.4    2
##     lag_half lead_half game_play_number  distance    win_id
## 1          1         1                2  2.828427 lost_team
## 2          1         1                4 17.691806  win_team
## 3          1         1                7 25.612497  win_team
## 4          1         1                8 10.198039 lost_team
## 5          1         1               10 25.079872 lost_team
## 6          1         1               12 26.627054  win_team
## 7          1         1               13 24.351591 lost_team
## 8          1         1               16  3.605551 lost_team
## 9          1         1               17 17.691806  win_team
## 10         1         1               18 17.262677 lost_team
## 11         1         1               22 16.124515 lost_team
## 12         1         1               24  4.000000 lost_team
## 13         1         1               25 19.924859  win_team
## 14         1         1               27 12.727922 lost_team
## 15         1         1               29  2.236068 lost_team
## 16         1         1               30 25.238859  win_team
## 17         1         1               32  3.000000 lost_team
## 18         1         1               33 24.839485  win_team
## 19         1         1               34  7.000000 lost_team
## 20         1         1               36  3.162278  win_team
## 21         1         1               37  3.162278 lost_team
## 22         1         1               39 20.396078  win_team
## 23         1         1               41 24.083189 lost_team
## 24         1         1               50 25.942244  win_team
## 25         1         1               51 20.248457 lost_team
## 26         1         1               56 23.409400 lost_team
## 27         1         1               58  3.000000 lost_team
## 28         1         1               62 25.079872 lost_team
## 29         1         1               64 24.758837  win_team
## 30         1         1               65 25.553865 lost_team
## 31         1         1               68  3.000000 lost_team
## 32         1         1               69 21.095023  win_team
## 33         1         1               71  3.162278 lost_team
## 34         1         1               82 25.059928 lost_team
## 35         1         1               83 25.317978  win_team
## 36         1         1               84  3.605551 lost_team
## 37         1         1               88  8.602325 lost_team
## 38         1         1               89 24.698178  win_team
## 39         1         1               91 19.646883 lost_team
## 40         1         1              101 24.166092 lost_team
## 41         1         1              105 19.416488 lost_team
## 42         1         1              108 25.942244  win_team
## 43         1         1              110  3.605551 lost_team
## 44         1         1               60  2.236068 lost_team
## 45         1         1              118  4.472136 lost_team
## 46         1         1              120  3.000000 lost_team
## 47         1         1              124  4.472136 lost_team
## 48         1         1              126  4.123106  win_team
## 49         1         1              127 23.853721 lost_team
## 50         1         1              129 16.278821  win_team
## 51         1         1              131  3.162278 lost_team
## 52         1         1              138 24.596748  win_team
## 53         1         1              139 17.029386 lost_team
## 54         1         1              140 26.570661  win_team
## 55         1         1               86 25.495098  win_team
## 56         1         1              142  5.385165 lost_team
## 57         1         1              144 10.816654  win_team
## 58         1         1              146  5.099020  win_team
## 59         1         1              148 17.492856 lost_team
## 60         1         1              149 10.198039  win_team
## 61         1         1              151 23.345235 lost_team
## 62         1         1              155 24.351591  win_team
## 63         1         1              160 17.691806  win_team
## 64         1         1              162 24.207437 lost_team
## 65         1         1              163 15.811388  win_team
## 66         1         1              165 19.313208 lost_team
## 67         1         1              167  3.162278  win_team
## 68         1         1              168  3.162278 lost_team
## 69         1         1              169  4.123106  win_team
## 70         1         1              170  6.403124 lost_team
## 71         1         1              171 25.079872  win_team
## 72         1         1              177 23.409400  win_team
## 73         1         1              178 24.186773 lost_team
## 74         1         1              181  3.605551 lost_team
## 75         1         1              187 23.409400  win_team
## 76         1         1              189 18.601075  win_team
## 77         1         1              190  2.236068 lost_team
## 78         1         1              195  5.000000 lost_team
## 79         2         2              200 22.472205  win_team
## 80         2         2              202 24.596748  win_team
## 81         2         2              203 25.059928 lost_team
## 82         2         2              205  2.236068  win_team
## 83         2         2              206  7.280110 lost_team
## 84         2         2              208  3.000000 lost_team
## 85         2         2              210  4.123106 lost_team
## 86         2         2              211  6.403124  win_team
## 87         2         2              214  8.062258  win_team
## 88         2         2              216  5.656854 lost_team
## 89         2         2              218  6.403124  win_team
## 90         2         2              219  3.605551 lost_team
## 91         2         2              221  3.162278  win_team
## 92         2         2              223 25.317978 lost_team
## 93         2         2              225  8.062258 lost_team
## 94         2         2              227  4.000000 lost_team
## 95         2         2              229  9.219544  win_team
## 96         2         2              231 17.804494 lost_team
## 97         2         2              234 23.259407  win_team
## 98         2         2              235 19.849433 lost_team
## 99         2         2              236  3.000000  win_team
## 100        2         2              239  8.000000 lost_team
## 101        2         2              240  2.828427  win_team
## 102        2         2              242  4.123106 lost_team
## 103        2         2              246  3.605551  win_team
## 104        2         2              249 24.839485  win_team
## 105        2         2              251 19.723083 lost_team
## 106        2         2              253  3.162278 lost_team
## 107        2         2              254 10.049876  win_team
## 108        2         2              256  3.162278 lost_team
## 109        2         2              258  3.162278 lost_team
## 110        2         2              263 24.166092  win_team
## 111        2         2              268  9.848858  win_team
## 112        2         2              269 25.942244 lost_team
## 113        2         2              271  9.899495  win_team
## 114        2         2              274  7.211103 lost_team
## 115        2         2              276  3.162278  win_team
## 116        2         2              277  3.162278 lost_team
## 117        2         2              280 16.278821 lost_team
## 118        2         2              283 18.439089  win_team
## 119        2         2              284 14.866069 lost_team
## 120        2         2              288 21.023796 lost_team
## 121        2         2              292 15.132746  win_team
## 122        2         2              293  8.000000 lost_team
## 123        2         2              297 24.351591 lost_team
## 124        2         2              299  8.062258  win_team
## 125        2         2              304  9.219544  win_team
## 126        2         2              306  3.162278 lost_team
## 127        2         2              313 18.248288 lost_team
## 128        2         2              317 25.298221  win_team
## 129        2         2              320 12.206556  win_team
## 130        2         2              323 25.079872 lost_team
## 131        2         2              325 24.207437  win_team
## 132        2         2              330  3.605551  win_team
## 133        2         2              335  3.000000 lost_team
## 134        2         2              337  3.000000 lost_team
## 135        2         2              339  4.123106 lost_team
## 136        2         2              346 16.278821 lost_team
## 137        2         2              347  5.000000  win_team
## 138        2         2              350  7.280110 lost_team
## 139        2         2              352  3.000000 lost_team
## 140        2         2              354 13.892444  win_team
## 141        2         2              355  8.062258 lost_team
## 142        2         2              357  4.123106 lost_team
## 143        2         2              358 25.238859  win_team
## 144        2         2              371  8.544004 lost_team
## 145        2         2              373  3.162278 lost_team
## 146        2         2              375  3.162278 lost_team
## 147        2         2              376 17.804494  win_team
## 148        2         2              378 20.880613 lost_team
## 149        2         2              385 25.553865 lost_team
## 150        2         2              388  3.162278  win_team
## 151        2         2              390 21.000000 lost_team
## 152        2         2              391 24.698178  win_team
## 153        2         2              407 25.059928  win_team